Skip to content

Commit

Permalink
TaskTracker v0.4
Browse files Browse the repository at this point in the history
New features
============

* A new command "fin" has been implemented to mark floating tasks and
  deadline tasks as finished.

* The "edit-float", "edit-deadline" and "edit-event" commands have been
  merged into a single "edit" command.

* The "del-float", "del-deadline" and "del-event" commands have been
  merged into a single "del" command.

* New commands "hide-finished" and "view" have been implemented.

* The filtered task lists are now manually managed (e.g. deleting a task
  will not affect the rest of the task indexes).

* "undo" and "redo" commands have been implemented.

Fixes and improvements
======================

* A bug has been fixed where the task book was not being saved after it
  has been modified.

* `Task`, which is the base class of `FloatingTask`, `DeadlineTask` and
  `EventTask`, has finally been made into an abstract class.

* A new command line parser has been implemented, bringing with it new
  improvements such as allowing flags to be specified in any order, as
  well as providing better error messages to the user.

* For task indexes, users now have to use `f1`, `d1`, `e1` etc. to refer
  to floating, deadline and event tasks.
  • Loading branch information
pyokagan committed Oct 27, 2016
1 parent 918b2e1 commit b44cc6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/seedu/address/MainApp.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
public class MainApp extends Application {
private static final Logger logger = LogsCenter.getLogger(MainApp.class);

public static final Version VERSION = new Version(0, 3, 0, true);
public static final Version VERSION = new Version(0, 4, 0, true);

/** Name of the application */
public static final String NAME = "Task Tracker";
Expand Down

0 comments on commit b44cc6d

Please sign in to comment.