Release notes
April 06, 2017
Version 0.11.1
-
Fixed issue where links containing anchors were being rendered as tags
-
Fixed issue swapping from task count to hour count with no time estimates
Previously if the task count was pressed to switch to hours, if there were no time estimates, the box would disappear completely, and there would be no way to get it back.
-
Fixed issue where HTML entities in codeblocks were being rendered as tags
-
Updated code blocks to scroll horizontally when the viewport is large enough to preserve formatting
April 02, 2017
Version 0.11.0
-
Allowed tasks to be unscheduled
Previously if you had scheduled a task then changed the status to
N/A
it would still how up under scheduled filters. Now it will remove the scheduled state completely. -
Added filter links to task info box
Clicking on the priority or task type will filter to show all tasks that match that priority or type.
Icons for scheduled and started statuses were also added here to quickly link to all scheduled/started tasks
March 27, 2017
Version 0.10.0
-
Added ability to toggle progress bar to change between percentage of tasks completed and percentage of hours completed
Click on the block next to the progress bar
0 / 4 tasks
to toggle
Version 0.9.0
-
Added support for date and numerical filters
For example, to see all tasks created in the last week:
created:>now-7d
To see all tasks that are estimated to take 2 hours or less:
estimate:<=2
-
Added documentation about filtering to the help page.
March 26, 2017
Version 0.8.0
-
Added help page to see available keyboard shortcuts
-
Added keyboard shortcut to edit tag colors
-
Updated UI to be a bit more responsive with large lists
Previously it was freezing up in some cases
-
Fixed issue where editing tag colors could overwrite changes to a list in some cases
-
Fixed minor display issue with remaining time on iOS 9
March 25, 2017
Version 0.7.1
-
Fixed issue where sometimes tags were displayed using the wrong color
Version 0.7.0
-
Added ability to edit tag colors
Click on the
Edit
button for a list and then a link will show up:Edit tag colors
. Clicking that will bring up a page where you can change the colors. Click on any of the white squares to select a new color. -
Added page titles
Previously every page had the title “CrashTask”
-
Updated styles for metadata to make them more readable
-
Tweaked some styles on mobile
-
Fixed issue where sometimes drag and drop reordering could stop working when editing a list
March 24, 2017
Version 0.6.0
-
Added a clear button to the search box to easily remove active filters
-
Updated filters so that they are sticky per list
The latest filter is stored in local storage so anytime you come back to the list page it will apply the last filter you had used.
-
Added extra metadata to the list view
Time estimates and tags added will now show up next to the list items. Clicking on a tag will show all items matching that tag.
-
Added keyboard shortcuts for clearing active filters and toggling display of metadata.
-
Fixed issue where sometimes new tasks added did not get placed at the end of the list
-
Fixed issue where pressing the
u
key on an archived list would bring you to the main list page instead of the archive page -
Removed ability to edit a list when a filter is applied
This could lead to strange issues where you filter a list, sort the items in that filtered list, clear the filter, and then the items in the main list are sorted in the wrong order.
March 22, 2017
Version 0.5.0
-
Fixed issue where time remaining was not showing up on list pages
-
Added first round of keyboard shortcuts.
See help page for more info.
Version 0.4.1
-
Added release notes page
Version 0.4.0
This version of crashtask adds a ton of new features! It is the biggest release since the initial launch. Here are a few of them:
-
Added the ability to delete individual tasks from a list
To do this click the
Edit
button and then click the red circle with a minus sign then pressDone
. -
Added the ability to share lists with other crashtask members
Simply click the orange
Invite
button on top of the list and it will generate a one-time-use link that you can send to someone else. They will then have the option to join. After that any changes to the list will be viewable to any member. Shared lists will have an icon showing two people in front of the name. Best of all the data is still 100% encrypted. -
Added the ablity to set task statuses
Previously a task was only ever open or closed. Now you can change the status to
Scheduled
,Started
, orCanceled
as well. If the task status is set toScheduled
orStarted
you will see an icon on the list page representing that status. If you change the task status toStarted
and then close the task, the total time it took will be displayed on the task details page. -
Added the ability to set time estimates for tasks
This is entirely optional but if you set time estimates on tasks then they will show up when you hover over the task names in the list and also the total number of remaining hours will show up on the top of the list next to the progress bar.
-
Added ability to jump to a task using autocomplete
Previously you could jump to a list quickly by typing in the name from the homepage and the fuzzy search/autocomplete would take you right there. Now you can do the same thing on the list page to jump quickly to a specific task
-
Added the ability to filter tasks from the search box
You can add filters to any list by using expressions like
is:open
oris:closed
. You can use any combination of expressions. Like:is:scheduled is:open is:bug,enhancement
That would match any task that is scheduled and open and is a bug or an enhancement. The filter
is:active
is a shortcut foris:scheduled,started
(anything scheduled or in progress).The autocomplete search can be used on top of filters if you put a space after your filter name:
is:open groceries
.After you put in a filter it will snap in the URL so you can bookmark it in your browser
More filters will be available in the future for filtering on date ranges
-
Added support for tags
If you edit a task description and add a hashtag such as
#music
then it will tag that task as “music” and render a link when the description is rendered.Clicking that link will apply a filter for
tag:music
and you will see all your tasks in that list matching that tag. This is useful if you want to see all tasks related to a specific part of your project.You can add as many tags as you would like to task.
-
Added support for linking to other tasks from the description
If you put in a task number (from the URL) into the description of another task it will insert a link to that task. For example you could put
Depends on #5
and then it will replace “#5” with a link to that task and the title of that task. -
Fixed performance issue with fuzzy search implementation
Performance was not great testing fuzzy search on long strings and it led to the browser to lock up after you got to a certain number of characters. It still will get a bit slower when you try to match a lot of text, but it should be much snappier now and hopefully won’t crash the browser.
-
Fixed issue where tasks with question marks in their name could not be edited