Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
T
topydo
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
topydo
Commits
96a5db4d
Commit
96a5db4d
authored
May 04, 2015
by
Bram Schoenmakers
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Version bump and update changelog.
parent
4a245b12
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
5 deletions
+22
-5
CHANGES.md
CHANGES.md
+20
-3
setup.py
setup.py
+1
-1
topydo/lib/Version.py
topydo/lib/Version.py
+1
-1
No files found.
CHANGES.md
View file @
96a5db4d
0.3
---
*
'edit' subcommand accepts a list of numbers or an expression to select which
items to edit. (Jacek Sowiński).
*
The commands 'del', 'do', 'pri' and 'postpone' can operate on multiple todo
items at once. (Jacek Sowiński)
*
A new 'ical' subcommand that outputs in the iCalendar format.
*
New configuration option:
`hide_tags`
to hide certain tags from the
`ls`
output. Multiple tags can be specified separated by commas. By default,
`p`
,
`id`
and
`ical`
are hidden.
*
Properly complete todo items with invalid recurrence patterns (
`rec`
tag).
*
Fix assignment of dependency IDs: in some cases two distinct todos get the
same dependency ID.
Big thanks to Jacek for his contributions in this release.
0.
2
---
*
A new
'edit'
subcommand to launch an editor with the configured todo.txt file.
*
A new
`edit`
subcommand to launch an editor with the configured todo.txt file.
*
Introduced textual identifiers in addition to line numbers.
Line numbers are still the default, textual identifiers can be enabled with
the option
'identifiers = text'
in the configuration file (see topydo.conf).
the option
`identifiers = text`
in the configuration file (see topydo.conf).
The advantage of these identifiers is that they are less prone to changes when
something changes in the todo.txt file. For example, identifiers are much more
likely to remain the same when completing a todo item (and archiving it). With
...
...
@@ -15,7 +32,7 @@
Sowiński).
*
Multiple items can be marked as complete or deleted at once.
*
Added option to automatically add the projects of the parent todo item when
adding a child todo item. Enable
append_parent_projects
in topydo.conf.
adding a child todo item. Enable
`append_parent_projects`
in topydo.conf.
*
`
topydo help` shows a list of available subcommands. Moreover, you can run
`topydo help <subcommand>` as well.
*
Let setuptools provide a `topydo` executable.
...
...
setup.py
View file @
96a5db4d
...
...
@@ -3,7 +3,7 @@ from setuptools import setup
setup
(
name
=
"topydo"
,
packages
=
[
"topydo"
,
"topydo.lib"
,
"topydo.cli"
],
version
=
"0.
2
"
,
version
=
"0.
3
"
,
description
=
"A command-line todo list application using the todo.txt format."
,
author
=
"Bram Schoenmakers"
,
author_email
=
"me@bramschoenmakers.nl"
,
...
...
topydo/lib/Version.py
View file @
96a5db4d
""" Version of Topydo. """
VERSION
=
'0.
2
'
VERSION
=
'0.
3
'
LICENSE
=
"""Copyright (C) 2014 Bram Schoenmakers
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment