diff --git a/pkg/.SRCINFO b/pkg/.SRCINFO deleted file mode 100644 index a58165b..0000000 --- a/pkg/.SRCINFO +++ /dev/null @@ -1,20 +0,0 @@ -pkgbase = noaftodo-git - pkgdesc = An ncurses TODO manager that No-One-Asked-For. - pkgver = 1.4.3r276.ff71532 - pkgrel = 1 - url = https://github.com/gregthemadmonk/noaftodo.git - changelog = CHANGELOG - arch = x86_64 - arch = i686 - license = GPL3 - makedepends = git - makedepends = make - makedepends = sed - depends = ncurses - optdepends = libnotify: provides notify-send commandused in default config - optdepends = dunst: possible notification daemon for notify-send to work - source = git+https://github.com/gregthemadmonk/noaftodo.git#branch=pkg - md5sums = SKIP - -pkgname = noaftodo-git - diff --git a/pkg/CHANGELOG b/pkg/CHANGELOG index c1e0162..89d7b2c 100644 --- a/pkg/CHANGELOG +++ b/pkg/CHANGELOG @@ -1,3 +1,29 @@ +2020-08-15 GregTheMadMonk + * 1.4.4 + - Add custom status fields: + + Custom status field is set via "fields.status.X" where X - is a field letter (uppercase or lowercase) + + ":set fields.status.X value" - value is a string, that, after being "formatted" (cvars replaced with values), is displayed in status + + %fields.status.X% returns field as it would be displayed in UI + + See scripts/prettier_status.conf for an example of "prettyifying" the status + - Allow to access meta properties directly through %meta.prop_name% cvars (read/write) + - Allow to access alias code through %alias.alias_name% (read-only) + - Add more keys that ":bind" recognizes: + + "home" + + "end" + + "backspace" + + "delete" + + "codeNUMBER" for key with code NUMBER + + PageUp as "pgup" + + PageDown as "pgdn" + - Make ":bind" recognize multi-key input: + + "c^key" for ctrl+key + + "a^key" for alt+key + + can be combined like "a^c^key" or "c^a^key" + - Changing only background or foreground color with terminal sequence does not reset the + other color from now + - Move [prefix]_[name] to namespaces [prefix] in code + - Move cvar initialization to noaftodo_def.cpp + 2020-08-07 GregTheMadMonk * 1.4.3r276.ff71532 - Fix a stupiddd typo in default config diff --git a/pkg/PKGBUILD b/pkg/PKGBUILD index 17e593f..c929047 100644 --- a/pkg/PKGBUILD +++ b/pkg/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: Gregory Dushkin (GregTheMadMonk) pkgname=noaftodo-git -pkgver=1.4.3r276.ff71532 +pkgver=1.4.4 pkgrel=1 pkgdesc="An ncurses TODO manager that No-One-Asked-For." arch=(x86_64 i686) @@ -16,7 +16,7 @@ md5sums=('SKIP') pkgver() { cd noaftodo - printf "1.4.3r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" + printf "1.4.4r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" } build() {