Skip to content

Commit

Permalink
Get things ready for release
Browse files Browse the repository at this point in the history
git-svn-id: http://toodledo.rubyforge.org/svn/trunk@60 7a1d1287-79c4-4140-ad4e-221ab6fece8c
  • Loading branch information
wsargent committed Feb 24, 2008
1 parent 43ad2e1 commit e28c7bd
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 15 deletions.
19 changes: 12 additions & 7 deletions History.txt
@@ -1,13 +1,18 @@
== 1.1.0 / 2008-02-24


== 1.1.0

* Change to non-interactive default to read from pipe or redirected files
* Added formatters for the client so it's easier to tweak line output.
* Add unit tests for client.
* Change symbol for goals from $ to ^ (was confusing client when entering 'I owe $5')
* Add functionality to add, delete goals, contexts, and folders from client.
* Add functionality to archive folders.
* Add stdin command to read from pipe or redirected files
* Add formatters for the client so it's easier to tweak line output.
* Add proper priority support to the client (in the format !top, !high, etc.)
* Make filter able to take symbols.
* Change symbol for goals from $ to ^ (was confusing when entering 'I owe $5')
* Add unit tests for client.
* Better error messages and explanation of toodledo setup.
* Fix the debug command so it doesn't crash the interactive client.
* Fixed some bugs in date processing.
* Fixed bugs in priority handling.
* Fixed session invalid bug on reconnect.

== 1.0.2 / 2008-02-14

Expand Down
15 changes: 12 additions & 3 deletions Manifest.txt
@@ -1,4 +1,3 @@
CHANGELOG
History.txt
Manifest.txt
README.txt
Expand All @@ -9,22 +8,32 @@ lib/toodledo/command_line/add_command.rb
lib/toodledo/command_line/base_command.rb
lib/toodledo/command_line/client.rb
lib/toodledo/command_line/complete_command.rb
lib/toodledo/command_line/context_formatter.rb
lib/toodledo/command_line/delete_command.rb
lib/toodledo/command_line/edit_command.rb
lib/toodledo/command_line/folder_formatter.rb
lib/toodledo/command_line/goal_formatter.rb
lib/toodledo/command_line/hotlist_command.rb
lib/toodledo/command_line/list_command.rb
lib/toodledo/command_line/main_command.rb
lib/toodledo/command_line/interactive_command.rb
lib/toodledo/command_line/list_tasks_command.rb
lib/toodledo/command_line/list_folders_command.rb
lib/toodledo/command_line/list_goals_command.rb
lib/toodledo/command_line/list_tasks_command.rb
lib/toodledo/command_line/parser_helper.rb
lib/toodledo/command_line/setup_command.rb
lib/toodledo/command_line/sTdin_command.rb
lib/toodledo/command_line/task_formatter.rb
lib/toodledo/context.rb
lib/toodledo/folder.rb
lib/toodledo/goal.rb
lib/toodledo/invalid_configuration_error.rb
lib/toodledo/item_not_found_error.rb
lib/toodledo/priority.rb
lib/toodledo/repeat.rb
lib/toodledo/server_error.rb
lib/toodledo/session.rb
lib/toodledo/task.rb
test/client_test.rb
test/parser_helper_test.rb
test/session_test.rb
test/toodledo_functional_test.rb
9 changes: 5 additions & 4 deletions README.txt
Expand Up @@ -29,7 +29,7 @@ tasks with a BetaBrite? It can all happen.

=== SETUP:

The first thing you should do is open up your browser and go to
The first thing you should do is open up your browser and go to:

http://www.toodledo.com/info/api_doc.php

Expand Down Expand Up @@ -69,7 +69,7 @@ Let's use the command line client to list only the tasks you have in the office:

Now let's add a task with several symbols:

toodledo add '*Action @Programming ^[Write Toodledo Ruby API] Write documentation'
toodledo add '*Action @Programming ^[Write Toodledo Ruby API] Write docs'

You can also edit tasks, using the task id. This sets the folder to Someday:

Expand All @@ -82,7 +82,8 @@ And finally you can complete or delete tasks, again using the task id.

=== INTERACTIVE MODE:

Toodledo also comes with an interactive mode:
Toodledo also comes with an interactive mode that is used if no arguments are
found:

toodledo
> add This is a test
Expand Down Expand Up @@ -130,7 +131,7 @@ this instead:

* sudo gem install toodledo
* toodledo setup (sets up the YAML file with your credentials)
* toodledo interactive
* toodledo

== LICENSE:
GNU LESSER GENERAL PUBLIC LICENSE
Expand Down
2 changes: 1 addition & 1 deletion lib/toodledo.rb
Expand Up @@ -5,7 +5,7 @@
module Toodledo

# Required for gem
VERSION = '1.0.1'
VERSION = '1.1.0'

# Returns the configuration object.
def self.get_config()
Expand Down

0 comments on commit e28c7bd

Please sign in to comment.