File tree 2 files changed +40
-0
lines changed
2 files changed +40
-0
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
+ # 2.0.1
9
+
10
+ ### Added
11
+ - Add ` USE_DAY_FIRST ` settings to allow users to swtich between day and month
12
+
13
+ ### Fixed
14
+ - ` Ctrl+q ` did not exit the app (closes https://github.com/kraanzu/dooit/issues/140 )
15
+
8
16
9
17
## 2.0.0
10
18
Original file line number Diff line number Diff line change @@ -29,3 +29,35 @@ package() {
29
29
cd " $_pkgname "
30
30
python -m installer --destdir=" $pkgdir " dist/* .whl
31
31
}
32
+
33
+ # Maintainer: Murli Tawari <[email protected] >
34
+
35
+ pkgname=dooit-git
36
+ _pkgname=${pkgname% -git}
37
+ pkgver=2.0.0
38
+ pkgrel=1
39
+ pkgdesc=" A todo manager that you didn't ask for, but needed!"
40
+ url=" https://github.com/kraanzu/dooit"
41
+ arch=(' any' )
42
+ license=(' MIT' )
43
+ depends=(' python' ' python-pyperclip' ' python-pyaml' ' python-poetry' ' python2-dateutil' ' python-textual' ' python-appdirs-git' ' python-six' )
44
+ makedepends=(' python-build' ' python-wheel' ' python-installer' )
45
+ source=(" $_pkgname ::git+$url .git" )
46
+ sha256sums=(' SKIP' )
47
+
48
+ pkgver () {
49
+ cd $_pkgname
50
+ git describe --long --tags --abbrev=7 --match=' v[0-9]*' |
51
+ sed ' s/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
52
+ }
53
+
54
+ build () {
55
+ cd " $_pkgname "
56
+ echo " $pkgdir "
57
+ python -m build --wheel --no-isolation
58
+ }
59
+
60
+ package () {
61
+ cd " $_pkgname "
62
+ python -m installer --destdir=" $pkgdir " dist/* .whl
63
+ }
You can’t perform that action at this time.
0 commit comments