bump version numbers

This commit is contained in:
Reinier Balt 2011-02-26 14:51:35 +01:00
parent 36f007a087
commit be71b4f58a
5 changed files with 30 additions and 20 deletions

15
README
View file

@ -9,19 +9,16 @@
* Mailing list: http://lists.rousette.org.uk/mailman/listinfo/tracks-discuss
* Original developer: bsag (http://www.rousette.org.uk/)
* Contributors: http://getontracks.org/wiki/Contributors
* Version: 2.0RC1
* Version: 2.0RC2
* Copyright: (cc) 2004-2010 rousette.org.uk.
* License: GNU GPL
All the documentation for Tracks can be found within the /doc directory. It contains a manual in HTML (manual.html) or PDF format (manual.pdf), and this includes full instructions for both new installations and upgrades from older installations of Tracks. The instructions might appear long and intimidatingly complex, but that is mostly because of the number of different platforms supported, and the different configurations which can be used (e.g. running Tracks on your local computer or on a remote server). If you choose the appropriate section for your situation (installation vs. upgrade), and use the easiest (recommended) method, you should find the instructions easy to follow. If you encounter problems, try searching the wiki, forum or mailing list (URLs above), and ask a question if you cannot find a solution to your problem.
All the documentation for Tracks can be found within the /doc directory and at http://bsag.github.com/tracks/
The latter includes full instructions for both new installations and upgrades from older installations of Tracks.
The instructions might appear long and intimidatingly complex, but that is mostly because of the number of different platforms supported, and the different configurations which can be used (e.g. running Tracks on your local computer or on a remote server). If you choose the appropriate section for your situation (installation vs. upgrade), and use the easiest (recommended) method, you should find the instructions easy to follow. If you encounter problems, try searching the wiki, forum or mailing list (URLs above), and ask a question if you cannot find a solution to your problem.
If you checked out Tracks from the GitHub repository, the manual is not provided by default and is in its own git submodule. To checkout the manual's source files, type "git submodule init doc/manual & git submodule update doc/manual". From then on, you should be able to issue the command "git pull" in the doc/manual directory to update the manual with the latest changes.
The latest version of the manual can be found at http://bsag.github.com/tracks/
For those upgrading, change notes are available in /doc/CHANGELOG. If you are thinking about contributing towards the development of Tracks, please read /doc/README_DEVELOPERS for general information, or /doc/tracks_api_wrapper.rb for information on Tracks' API.
If you are thinking about contributing towards the development of Tracks, please read /doc/README_DEVELOPERS for general information, or /doc/tracks_api_wrapper.rb for information on Tracks' API.
While fully usable for everyday use, Tracks is still a work in progress. Make sure that you take sensible precautions and back up all your data frequently, taking particular care when you are upgrading.
Enjoy being productive!
Enjoy being productive!

View file

@ -121,10 +121,10 @@ if ( SITE_CONFIG['authentication_schemes'].include? 'cas')
end
end
tracks_version='1.8devel'
tracks_version='2.0RC2'
# comment out next two lines if you do not want (or can not) the date of the
# last git commit in the footer
info=`git log --pretty=format:"%ai" -1`
tracks_version=tracks_version + ' ('+info+')'
#info=`git log --pretty=format:"%ai" -1`
#tracks_version=tracks_version + ' ('+info+')'
TRACKS_VERSION=tracks_version

View file

@ -9,16 +9,22 @@
* Mailing list: http://lists.rousette.org.uk/mailman/listinfo/tracks-discuss
* Original developer: bsag (http://www.rousette.org.uk/)
* Contributors: http://getontracks.org/wiki/Contributors
* Version: 2.0RC1
* Copyright: (cc) 2004-2010 rousette.org.uk.
* Version: 2.0RC2
* Copyright: (cc) 2004-2011 rousette.org.uk.
* License: GNU GPL
== Version 2.0 (RC)
(RC1 was never release, but was mentioned in the DOCS for while. People are
referencing RC1 with bug report. So for the release we've bumped the version
to RC2)
New features:
1. Redesign of menus and introduction of a context menu per todo
2. You can now set the default tags for a project which are added automatically to a new todo in that project if no tags are supplied
3. Tracks now includes support of dependencies. Making an action dependent on another action will hide it until the dependency is completed
2. You can now set the default tags for a project which are added automatically
to a new todo in that project if no tags are supplied
3. Tracks now includes support of dependencies. Making an action dependent on
another action will hide it until the dependency is completed
4. you can now drag an action from one context to another
5. Support for entering multiple actions in one form
6. You can now promote an action to a project
@ -26,16 +32,21 @@ New features:
8. The project description supports markup
9. support for Mail.app (message://) and OneNote (onenote://) links in notes
10.The email receiver is now able to receive email from several email adresses.
In site.yml this could be set to the previous behavior (receive from one address per user)
In site.yml this could be set to the previous behavior (receive from one
address per user)
11.You can enable open signup (like in tracks.tra.in)
12.Cleanup of context page
13.Support for CAS for login
14.Support for adding Tracks as a GMail Widget with instructions on the Integrations page
14.Support for adding Tracks as a GMail Widget with instructions on the
Integrations page
15.Tracks now support internationalization. First translations are German and
Dutch. See http://www.getontracks.org/wiki/Translating-Tracks it you like to
help translating Tracks to other languages
Under the hood
1. All js is migrated to jQuery and most ui-widgets are migrated to jQuery-UI
2. Cucumber is added for integration testing. The RSpec stories are migrated to cucumber
3. Upgraded to rails 2.3.5 (newer versions unfortunately conflict with cucumber)
3. Upgraded to rails 2.3.11 and upgraded most gems/plugins
3. Bugfixes (lots of them)
== Version 1.7

View file

@ -36,7 +36,7 @@ If you want to run tests using another database, that's fine, too. Just change y
This testing style is deprecated and are being moved over to Selenium via Cucumber.
See the wiki for more information to run the tests that are not yet migrated
See the wiki for more information to run the tests that are not yet migrated: http://www.getontracks.org/wiki/Testing
6. RSPEC tests

View file

@ -1,5 +1,7 @@
require 'activeresource'
# WARNING: this is not really maintained or tested...
# Install the ActiveResource gem if you don't already have it:
#
# sudo gem install activeresource --source http://gems.rubyonrails.org --include-dependencies