Wednesday, November 2, 2011

Optional, third priority updates

Finally, after implementing this and this, I am planning on tackling some of the bigger issues like:

  • possible to sort items in user order, e.g., based on location in store? (like ability to drag and drop the categories)
  • anyway to not have to have a category? (for example a list for car might have wash, gas, service, and pickup parts, so doesn't need categories) I may make this a config option to have a default category always created for you,
  • Support optional information elements per item instead of just a name, including "Done" string and a note/description field - Right now I don't see a need for it. The intent was for Reverse Checklist to be simple, and I don't want to make it more complicated than it needs to be.
  • Maybe support states besides just done/undone, like "skipped" and "problem" - Same as above
  • Show all of the items much like you do on the "ToDo Report", but allow me to edit  or delete any item. This would make much easier to select an item regardless of the category.
  • Have a search feature to be able to find an item.

Second priority updates

When I am done implementing features from this list, I will move on to the following requests:

  • possible option to make font larger for category names at top of list and across bottom - This will require some UI redesign
  • Consider making the mode toggle an onscreen button instead of a Menu item
  • Make TODO mode a bit more informative about the state of the list
  • A possibility to consider is to make EDIT and DO actions separate. - separate menu items available in Edit and TODO modes.

Tuesday, November 1, 2011

First priority updates

I ordered all feature requests by difficulty and "bang for the buck" factor. These are features that won and will be implemented first, in no particular order

  • possibility to sort a to do report for selected list in category order as set by user? (to match location in store or shopping mall).  Currently it is sorted by category name. 
  • add a little more visual feedback to the entry UI, something to make it more obvious that the "checked" items are undone and the "unchecked" items are done. This will most likely end up being a help item, or some other form of a visual indicator. 



  • Make it configurable whether you end up in "edit" or "TODO" mode when you first enter a list
  • When in my Shopping List, for example, I would like to be able to "check all" or "uncheck all."
  • Make categories into checklist items themselves, so you can check/clear a whole category, which is the same as checking/clearing all of its entries - This also solves the problem of making it easy both to check and to clear an entire category at once
  • Make it possible to check/clear an entire list from the main screen

Upcoming changes to Reverse Checklist

I decided to move my *** already and do something about all those awesome requests that came from actual users of my App. Every email from a user gives me a jolt of motivation - because then for just an instance, the whole thing becomes real! It is not a number anymore. There is a real person actually using my app and, sometimes, liking it.

And they cared enough to sit down and write an email with suggestions on how to make Reverse Checklist better. I owe them.

It is sometimes hard to balance professional and personal life. And it is even harder to explain to my wife and daughter why the professional life has to enter the private via the means of some lame android application. But I am a programmer, and I am loving it.

She hates it:



The next three posts explain what and when new features and updates will be implemented.

Reverse Checklist feedback

Over the last couple of weeks I have received a lot of feedback from the users of Reverse Checklist.
I was happy to find out that my app really did provide something that other apps did not, even though it cannot be compared with bigger and more advanced applications.
It was meant to be as simple and lightweight as possible and I intend to keep it this way.

Thank you for your feedback KLC, Fanderay, Jeff, Barry, Martin, Koos, Jerald and Jebi.

Reverse Checklist is a one-man-project. So it sometimes takes a lot of time for new features to be added to the application.
  • My first priority are always crashes, defects and fixes for features that obviously don't work. (E.g. sorting issues)
  • Second priority - simple enhancements for existing features (Like the addition of selection information to exports/imports)
  • Third priority is reserved for simple features - like new configuration options, things that don't require a significant redesign of the application.
  • And finally, bigger jobs are lowest priority, simply because of time constraints.

In the next post I will try and lay out a plan of upcoming features and releases. I will try and adhere to the plan as much as possible, but unfortunately I cannot commit to any specific schedule.

Some of the features that were suggested/requested are not going to get implemented (just a few of them, though). This is because they do not fit into my idea of Reverse Checklist.
Some of the best comments I received goes along the lines of:
"I like your app, I tried many other apps, and your app does things slightly differently, and that's why I like it.". I wanted to keep it this way, and continue doing things my way - with your help.

So, to sum up - I have not forgotten about your suggestions.. I apologize for making you wait for so long for the updates. The upcoming post will give you a better idea what to expect soon.

And as always: Thanks for using Reverse Checklist!

Wednesday, July 20, 2011

Import / Export to csv added to ReverseChecklist

When I started developing Reverse Checklist, I created a list of ideas I wanted to implement. But at the same time, I wanted to release the application as soon as it became somewhat useful and bug-free. And that's what I did. Now that it is already released, I can add new features to it. And the priority is always user-driven.

A few weeks ago someone asked me to add the ability to seed the database with a csv file. That was something I already had planned, I just did not know if anyone would find it useful. Now that I know that there is at least one person who would like that feature, I am adding it.

Thursday, May 5, 2011

Referencing an Android Library project from android application

After releasing my application, I received a few emails from people who downloaded it. It feels good to know that someone finds my application useful. I am not the only one, apparently. What is funny, is that I received a few suggestions on how to improve Reverse CheckList, and the things suggested were actually already on my list of things I wanted the app to do.

1: Add an activity for managing item categories. I should have done that a long time ago, but I wanted to release first, and then add features.

2. Make the category list user-orderable. User defined sort order for categories was actually one of the things that my users requested.

So this is the next thing I am going to be working on.

Of course, commonsguy is helpful as usual. It turns out he actually wrote a list that is user orderable. You can drag and drop items and reorder them however you like.

So tonight I am integrating commonsguy's list into my application.

And here is how to do that: http://developer.android.com/guide/developing/projects/projects-eclipse.html