-
Notifications
You must be signed in to change notification settings - Fork 375
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sort to-do lists (with dialog asking for order) #211
Comments
Open for pull requests |
I barely speak Java and I've no idea how to build this app, let alone understand its structure. A HACKING.md or similar would help. I tried installing gradle, cloning this repository and running "./gradlew help" from it but it just started downloading something else so I don't think that's right. |
download android studio and see the setup guide on that page, that is 99% of what you need. Dont go command line when starting android dev, its more complicated. Plus maybe take a read on my latest android debug post on https://gsantner.net/ , it should have some info about that above |
Blimey. 1Gb of studio and tools to add what seems like a minor new feature on a 3Mb app. :( It may be a while before I download that, sorry. Is there any lighter way to get started contributing? |
Coding at blind isn't a way todo it, unless you know every call and parameters or the most important ones. Impossible todo this all if one doesnt have prior knowledge about all aspects. Bandwith and storage isnt a problem nowadays usually. |
@gsantner Also the plan for this is to automatically prioritize or rearrange after every entry or is the plan to have a button to rearrange. |
I don't use or have ssen such feature in any of my clients, don't know the exact the flow. I will not implement this, but open for PRs. I have only one important point: Make it to support Ascending and descending, everyone has different approaches for ordering. automatic: no. please only implement it non-continued. Maybe at begin/finish of editing, but never while editing, as in only manually via action.
|
has somebody started on this? happ about PRs! 😄 |
Hi @gsantner , Not yet will get to this sometime by the end of the week. |
@gsantner , anyway you are OK to use Rxjava |
don't really want to stuff the app with libraries^^ this one need overridden compare/equals methods usually, no libraries |
@gsantner I looked at it, In Document.java , the list of ToDo items are stored as one string in _content, its going to be difficult to order it, please let me know if Iam looking at the right one. |
For todo list you have to look into SttTask/SttTaskParserExtensioned, SttCommander. there you have basically need to put in file and run collection.sort(comparator) - and implement some comperators. |
has somebody started working on this? |
while this is not the whole "search" feature, the upcoming v1.2 Markor update will have context-aware-search for The list of tags/projects (dialog) is sorted alphabetically too now. |
@gsantner, thank you again for a great app. This feature would be really awesome. I'd be interested working on it, though I am busy for the next 6 weeks. If someone else hasn't started working on it in late December, I can start working on it. Just to clarify the desired user interface when the sorting shortcut is clicked, a box appears where the user selects:
and then the sorting happens. Also, what is the desired sorting for items with multiple contexts or projects? Should item be placed in the first alphabetical context/project which matches any of the item's context/projects? Should the item be duplicated in all contexts/projects (I think this is a bad idea)? Something else? |
@goldmanm multiple: first match on line is fine |
I was going to put in a feature request for this, but I saw this and thought I would tag @goldmanm to see if Sort by "Creation Date" and "Completion Date" could be added, hopefully without too much difficulty? If Gregor would be open to the addition. If I have a workout log in todo format, I can sort by the |
Should be very easy to implement :) |
General information
Description
The ability to sort to-do lists so that tasks get reordered by leading priorities would be a great enhancement, reducing the need to cut and paste so much.
The text was updated successfully, but these errors were encountered: