TaskPaper 3.5 is out! Next?

The release version of TaskPaper 3.5 is out at www.taskpaper.com and on the Mac App Store. Thanks to all of you who tested it out and helped to make it better!

My next plans to go back to working on Reminders.app integration.

I haven’t started any code yet, so now is the best time for thoughts and ideas for how it should work.

One thing I’m interested in is links to nice UI’s for viewing/editing EventKit database reminders. Of course I know about the default Reminders.app. Are there other nice apps that display/edit reminders that I can learn from?

I updated, About now says “Task Paper Preview (275)”. Does a Preview not update to the release (I’ve never run a preview before this one), or is the description incorrect, or am I missing something else entirely?

The preview release will never update to become a “non” preview release. At a time like this when the version number is the same between the two, then the code between them is exactly the same. But the version is different (one has preview as part of the version name) … and that makes some runtime behavior different, such as where it checks for updates.

More info on preview versions here:

If you’d like to switch to the non preview version just download directly from www.taskpaper.com. Then you’ll only be notified about non-preview versions. If you stick with the preview version you’ll have the same version of the app as todays release version, but you’ll also get future preview updates.

No problem. I was hoping to avoid re-installing, but que sera.

Long term maybe TP could do like a few other apps and have two tracks, release and “beta” (preview). We could subscribe to either track, and switch between the two. But in my (admittedly limited, three of four apps) experience, when I subscribe to beta, I still get the “real” release version through auto-update when it’s released.

I don’t know if you have seen how nvremind deals with this. These are the pros and cons of this.

Pros:

  1. It is file and format agnostic. It leaves you with usable and readable plain text files.
  2. It gives you a lot of flexibility on deciding what tags to use and how to set up things.

Cons:

  1. You need to know a little bit of programming to change some of the desired outcomes.
  2. It is a script that requires you to mess with more settings that most people feel comfortable with or want to mess with.
  3. It has not UI and therefore it not very user friendly.
  4. Not very Sync friendly.

Taking that in consideration, I personally think that your solution should keep the agnostic implementation of nvremind. It doesn’t have to be done the same way; but I remember that messing with how readable the file is, was one of the problem with the failed search option that was embedded in the file. (Not easy to sync, not easy to read and modify with any editor, not scriptable, etc.)

The challenges of doing it this way would be:
1.- Same file read in multiple computers.
Nvremind’s implementation has this strong weakness. Since everything is done in text using tags, nvremind changes the tags themselves when it creates a reminder or an event. I doesn’t check if the event or reminder exists in the current computer. It just cares what the tag says, and then if successful, changes that tag. When you have multiple computers syncing a file, that would mean that this process would only happen in one of the computers. It is also kind of messy since you have to have a tag for before the creation of the event, and one for after.
In a good implementation, you just have one tag for both, and the program somehow checks if the reminder or event exists and acts accordingly. For example, - Clean bathroom @remind(2016-10-13 10:00)

2.- Error checking
Having this flexibility also means that it would be easy to introduce several errors and TaskPaper would have to learn to deal with those and communicate this in a clear manner to the user. I think that a lot of these errors could be prevented by having a UI that helps you create the tags themselves. In this way, if you want to create a reminder or event, a menu option can be available that would help you select the calendar (or list if you are creating reminders), click on a date and hour, maybe some extra options, and TaskPaper would create the right tag with the right format.
In my mind, this could even be use to help the user with any tags that deal with dates. Honestly, using the ISO 8601 is not something that every user is familiar with. But that would be the cherry on top :slight_smile:

I hope that this helps.