]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
1.0.1rc1
authorEvan Prodromou <evan@status.net>
Mon, 3 Oct 2011 15:03:55 +0000 (11:03 -0400)
committerEvan Prodromou <evan@status.net>
Mon, 3 Oct 2011 15:03:55 +0000 (11:03 -0400)
INSTALL
README
UPGRADE
lib/framework.php

diff --git a/INSTALL b/INSTALL
index f40594d260570fe9987cfbd4a3405f9279a3f458..3fad87d098ea8f22942d8c36a5a951d7f3abd653 100644 (file)
--- a/INSTALL
+++ b/INSTALL
@@ -106,9 +106,9 @@ especially if you've previously installed PHP/MySQL packages.
 1. Unpack the tarball you downloaded on your Web server. Usually a
    command like this will work:
 
-       tar zxf statusnet-1.0.0rc1.tar.gz
+       tar zxf statusnet-1.0.1rc1.tar.gz
 
-   ...which will make a statusnet-1.0.0rc1 subdirectory in your current
+   ...which will make a statusnet-1.0.1rc1 subdirectory in your current
    directory. (If you don't have shell access on your Web server, you
    may have to unpack the tarball on your local computer and FTP the
    files to the server.)
@@ -116,7 +116,7 @@ especially if you've previously installed PHP/MySQL packages.
 2. Move the tarball to a directory of your choosing in your Web root
    directory. Usually something like this will work:
 
-       mv statusnet-1.0.0rc1 /var/www/statusnet
+       mv statusnet-1.0.1rc1 /var/www/statusnet
 
    This will make your StatusNet instance available in the statusnet path of
    your server, like "http://example.net/statusnet". "microblog" or
diff --git a/README b/README
index aacc9670e6f20f1f9ca9920b5ddb0f52bfd7dce4..4b84d8f1784755ca3826af804a4cff590a676194 100644 (file)
--- a/README
+++ b/README
@@ -2,8 +2,8 @@
 README
 ------
 
-StatusNet 1.0.0
-30 September 2011
+StatusNet 1.0.1rc1
+3 October 2011
 
 This is the README file for StatusNet, the Open Source social
 networking platform. It includes general information about the
@@ -107,11 +107,13 @@ for additional terms.
 New this version
 ================
 
-This is a major feature release since 0.9.9, released 2 August
-2011. It is the first release of the new branch of StatusNet, and the
-first release in the 1.x timeline.
+This is a minor bug fix release since 1.0.0, released 30 September
+2011. It fixes the following bugs:
 
-Notable changes this version:
+- Change default OEmbed provider from oohembed to noembed.
+- Fix problem with path matching on new installs.
+
+Notable additions in the 1.0.x series:
 
 - Support for private updates, including private-to-groups, private
   within a site, and private to followers only.
@@ -144,7 +146,7 @@ Notable changes this version:
 - Deeper integration with Activity Streams (http://activitystrea.ms) format.
 - Automated upgrade script.
 
-A full changelog is available at http://status.net/wiki/StatusNet_1.0.0.
+A full changelog is available at http://status.net/wiki/StatusNet_1.0.1.
 
 Troubleshooting
 ===============
diff --git a/UPGRADE b/UPGRADE
index cf2375dffe1f71f83a39e6111f4f1374df38d445..59cde1d7a4a3e12019cd7a1b63ad408df771110c 100644 (file)
--- a/UPGRADE
+++ b/UPGRADE
@@ -24,7 +24,7 @@ instructions; read to the end first before trying them.
 5. Once all writing processes to your site are turned off, make a
    final backup of the Web directory and database.
 6. Move your StatusNet directory to a backup spot, like "statusnet.bak".
-7. Unpack your StatusNet 1.0.0 tarball and move it to "statusnet" or
+7. Unpack your StatusNet 1.0.1rc1 tarball and move it to "statusnet" or
    wherever your code used to be.
 8. Copy the config.php file and the contents of the avatar/, background/,
    file/, and local/ subdirectories from your old directory to your new
@@ -37,7 +37,7 @@ instructions; read to the end first before trying them.
     reversed. YOU CAN EASILY DESTROY YOUR SITE WITH THIS STEP. Don't
     do it without a known-good backup!
 
-    In your new StatusNet 1.0.0 directory and AFTER YOU MAKE A
+    In your new StatusNet 1.0.1rc1 directory and AFTER YOU MAKE A
     BACKUP run the upgrade.php script like this:
 
         php ./scripts/upgrade.php
index d68693868de28bd2e5ad84fc91826e510b77b09e..f4308ac6bd3f6178415a9de19d8699cd65142f49 100644 (file)
 
 if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
 
-define('STATUSNET_BASE_VERSION', '1.0.0');
-define('STATUSNET_LIFECYCLE', ''); // 'dev', 'alpha[0-9]+', 'beta[0-9]+', 'rc[0-9]+', 'release'
+define('STATUSNET_BASE_VERSION', '1.0.1');
+define('STATUSNET_LIFECYCLE', 'rc1'); // 'dev', 'alpha[0-9]+', 'beta[0-9]+', 'rc[0-9]+', 'release'
 define('STATUSNET_VERSION', STATUSNET_BASE_VERSION . STATUSNET_LIFECYCLE);
 
 define('LACONICA_VERSION', STATUSNET_VERSION); // compatibility
 
-define('STATUSNET_CODENAME', 'It\'s the End of the World as We Know It');
+define('STATUSNET_CODENAME', 'Get It Together');
 
 define('AVATAR_PROFILE_SIZE', 96);
 define('AVATAR_STREAM_SIZE', 48);