diff options
-rw-r--r-- | doc/ChangeLog | 12 | ||||
-rw-r--r-- | doc/INSTALL.txt | 3 | ||||
-rw-r--r-- | doc/UPGRADE.txt | 19 |
3 files changed, 29 insertions, 5 deletions
diff --git a/doc/ChangeLog b/doc/ChangeLog index e6d8946..2686ca6 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,16 +1,24 @@ ChangeLog for SemantiScuttle ============================ -0.95 - FIXME: IN THE FUTURE +0.95 - 2009-11-10 ----------------- -- Implement request #2878169: Voting system +- Implement request #2878169: Voting system with two layouts - Fix bug #2881886: PHP notice when viewing tags - Configuration option to disable registration - Implement request #2874049: "Feeling lucky" button just add "?lucky=1" as parameter to search page - Hide bookmarks with vote < $threshold from users (not admins) +- Fix many more unfreed mysql results, but there are still many left +- Improve documentation of many service methods +- All unit tests run now - Update German translation to 100% +- Helper scripts for translators and translation documentation +- Beginning of developer documentation +- Fix gettext/translation on 64bit systems - Fix OpenSearch file +- Re-add de_AT which is a rather ugly "official-style" german + translation. Choose the translation you like most. 0.94 - 2009-10-02 diff --git a/doc/INSTALL.txt b/doc/INSTALL.txt index 21dbf51..e382d03 100644 --- a/doc/INSTALL.txt +++ b/doc/INSTALL.txt @@ -16,9 +16,10 @@ Installation instructions run > mysql -umyusername semanticscuttle < tables.sql on the shell ("semanticscuttle" being the database name) -3. Copy config.inc.php.dist to config.inc.php and modify it as +3. Copy data/config.php.dist to data/config.php and modify it as necessary. 4. Make the cache directory writable by your web server. For example, run > chmod 0777 cache on the shell. +5. Set the www/ directory as document root in your web server. diff --git a/doc/UPGRADE.txt b/doc/UPGRADE.txt index 7352b12..4891ba1 100644 --- a/doc/UPGRADE.txt +++ b/doc/UPGRADE.txt @@ -1,11 +1,26 @@ Upgrading SemanticScuttle from a previous version ================================================= -From versin 0.94 to 0.10.0 +From versin 0.94 to 0.95.0 -------------------------- -- ALTER TABLE `sc_bookmarks` ADD `bVoting` INT NOT NULL ; +The file structure completely changed in 0.95.0 compared +to previous versions. We recommend that you start with a +fresh installation, just copying over your config.php file. +Set your web server document root directory to www/. + +Update your database: +- ALTER TABLE `sc_bookmarks` ADD `bVoting` INT NOT NULL; +- ALTER TABLE `sc_bookmarks` ADD `bVotes` INT NOT NULL; - Add the new votes database table. See data/tables.sql. +Currently, only MySQL can be used as database backend. +All other DBMS (database management systems) have not been +tested except for PostgreSQL, and SemanticScuttle fails there. + +The de_AT translation has been re-added. This is because +de_AT provides a rather ugly "official German" style, +while the normal de_DE is friendlier. Choose what you like. + From version 0.93 to 0.94 ------------------------- |