diff options
-rw-r--r-- | README.md | 15 | ||||
-rwxr-xr-x | bin/install-as-user | 2 | ||||
-rw-r--r-- | bin/site-specific-install.sh | 6 |
3 files changed, 19 insertions, 4 deletions
@@ -13,12 +13,21 @@ already been reported and leave updates. Users can also subscribe to email or RSS alerts of problems in their area. It was created in 2007 by [mySociety](http://www.mysociety.org/) for reporting -problems to UK councils and has been copied around the world. The FixMyStreet -Platform is now at version 1.0. +problems to UK councils and has been copied around the world. The FixMyStreet +Platform is now at version 1.1. ## Releases -* v1.0 (24th October 2012) - Official launch of the FixMyStreet platform +* v1.1 (22nd February 2013) + - Addition of bodies so that the organisations that reports are sent to can + cover multiple MapIt administrative areas, or multiple bodies can cover + one area, and other related scenarios + - Admin display improvements + - Internationalisation improvements, especially with text in JavaScript + - Various minor updates and fixes (e.g. a --debug option on send-reports, + and coping if MapIt has its debug switched on) +* v1.0 (24th October 2012) + - Official launch of the FixMyStreet platform ## Installation diff --git a/bin/install-as-user b/bin/install-as-user index 2e0816966..b9dfa3973 100755 --- a/bin/install-as-user +++ b/bin/install-as-user @@ -101,7 +101,7 @@ fi # Install the required Perl modules - this may take a very long time: -cd "$FMS_REPOSITORY" +cd "$REPOSITORY" bin/install_perl_modules # Generate po and mo files (these invocations taken from Kagee's script): diff --git a/bin/site-specific-install.sh b/bin/site-specific-install.sh index 6ebac7970..9d3976733 100644 --- a/bin/site-specific-install.sh +++ b/bin/site-specific-install.sh @@ -1,5 +1,8 @@ #!/bin/sh +# Set this to the version we want to check out +VERSION=v1.1 + PARENT_SCRIPT_URL=https://github.com/mysociety/commonlib/blob/master/bin/install-site.sh misuse() { @@ -25,6 +28,9 @@ misuse() { install_nginx +# Check out the current released version +(cd "$REPOSITORY" && su -l -c "git checkout '$VERSION'" "$UNIX_USER") + install_website_packages su -l -c "touch '$DIRECTORY/admin-htpasswd'" "$UNIX_USER" |