Skip to content

v0.2.0

Compare
Choose a tag to compare
@FYimu FYimu released this 08 Feb 08:20
· 15 commits to master since this release

Preview to Tesseract

"We look beyond the Earth to greater worlds the Tesseract will unveil." - The Other from The Avengers

Tesseract helps to track what you need to do and what you have done. It's

  • Text-based
  • Easy to learn
  • FASTSUPER FAST to use

As a starter, you just need to

  1. Download it from here
  2. Double-click it
  3. Use it
    And it will manage your tasks for you 😜

It is powerful and FREE!

Available commands for now: list, delete, mark, unmark, filter, find, event, todo, deadline, exit

FEATURES

  • Managing tasks
  • Reminders (coming soon)
  • Ordering tasks according to priority (coming soon)

Change memory address

If you are familiar with Java codes, you can change where Tesseract stores your task history in the Tesseract class here by replacing src/main/Data/Schedule.txt with the file path you want 😉

/**
 * Main driving class of Tesseract.
 * @author Fan Jue
 * @version 0.2.0
 * @since 0.1.0
 */
public class Tesseract {
    static final String SCHEDULE_PATH = "src/main/Data/Schedule.txt";
    ...