update installation instructions, changelog and upgrade guide

git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@533 b3834d28-1941-0410-a4f8-b48e95affb8f
This commit is contained in:
cweiske 2009-11-10 17:50:25 +00:00
parent 391922f2a7
commit 49ab869616
3 changed files with 29 additions and 5 deletions

View File

@ -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

View File

@ -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.

View File

@ -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
-------------------------