├── .gitignore ├── Icon.sketch ├── Data ├── QuickLook │ ├── Preview.png │ └── Thumbnail.png ├── metadata └── version ├── LICENCE ├── README.md ├── Relative-Dates-1.1.2.alfredworkflow ├── TODO ├── demo.gif ├── icon.png ├── screenshot1.png ├── screenshot2.png └── src ├── README.html ├── common.py ├── docopt.py ├── formats.py ├── icon.png ├── info.plist ├── reldate.py ├── version └── workflow ├── Notify.tgz ├── __init__.py ├── background.py ├── notify.py ├── update.py ├── util.py ├── version ├── web.py ├── workflow.py └── workflow3.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-relative-dates/HEAD/.gitignore -------------------------------------------------------------------------------- /Icon.sketch/Data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-relative-dates/HEAD/Icon.sketch/Data -------------------------------------------------------------------------------- /Icon.sketch/QuickLook/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-relative-dates/HEAD/Icon.sketch/QuickLook/Preview.png -------------------------------------------------------------------------------- /Icon.sketch/QuickLook/Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-relative-dates/HEAD/Icon.sketch/QuickLook/Thumbnail.png -------------------------------------------------------------------------------- /Icon.sketch/metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-relative-dates/HEAD/Icon.sketch/metadata -------------------------------------------------------------------------------- /Icon.sketch/version: -------------------------------------------------------------------------------- 1 | 18 -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-relative-dates/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-relative-dates/HEAD/README.md -------------------------------------------------------------------------------- /Relative-Dates-1.1.2.alfredworkflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-relative-dates/HEAD/Relative-Dates-1.1.2.alfredworkflow -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-relative-dates/HEAD/TODO -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-relative-dates/HEAD/demo.gif -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- 1 | src/icon.png -------------------------------------------------------------------------------- /screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-relative-dates/HEAD/screenshot1.png -------------------------------------------------------------------------------- /screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-relative-dates/HEAD/screenshot2.png -------------------------------------------------------------------------------- /src/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-relative-dates/HEAD/src/README.html -------------------------------------------------------------------------------- /src/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-relative-dates/HEAD/src/common.py -------------------------------------------------------------------------------- /src/docopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-relative-dates/HEAD/src/docopt.py -------------------------------------------------------------------------------- /src/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-relative-dates/HEAD/src/formats.py -------------------------------------------------------------------------------- /src/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-relative-dates/HEAD/src/icon.png -------------------------------------------------------------------------------- /src/info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-relative-dates/HEAD/src/info.plist -------------------------------------------------------------------------------- /src/reldate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-relative-dates/HEAD/src/reldate.py -------------------------------------------------------------------------------- /src/version: -------------------------------------------------------------------------------- 1 | 1.1.2 -------------------------------------------------------------------------------- /src/workflow/Notify.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-relative-dates/HEAD/src/workflow/Notify.tgz -------------------------------------------------------------------------------- /src/workflow/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-relative-dates/HEAD/src/workflow/__init__.py -------------------------------------------------------------------------------- /src/workflow/background.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-relative-dates/HEAD/src/workflow/background.py -------------------------------------------------------------------------------- /src/workflow/notify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-relative-dates/HEAD/src/workflow/notify.py -------------------------------------------------------------------------------- /src/workflow/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-relative-dates/HEAD/src/workflow/update.py -------------------------------------------------------------------------------- /src/workflow/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-relative-dates/HEAD/src/workflow/util.py -------------------------------------------------------------------------------- /src/workflow/version: -------------------------------------------------------------------------------- 1 | 1.32 -------------------------------------------------------------------------------- /src/workflow/web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-relative-dates/HEAD/src/workflow/web.py -------------------------------------------------------------------------------- /src/workflow/workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-relative-dates/HEAD/src/workflow/workflow.py -------------------------------------------------------------------------------- /src/workflow/workflow3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deanishe/alfred-relative-dates/HEAD/src/workflow/workflow3.py --------------------------------------------------------------------------------