├── .github └── FUNDING.yml ├── MakerlogFlow.alfredworkflow ├── gfx ├── done.png ├── done.svg ├── inprogress.png ├── inprogress.svg ├── todo.png └── todo.svg ├── license.md ├── metadata.json ├── readme.md └── screenshots ├── done.png ├── inprogress.png ├── todo.png └── workflow.png /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | patreon: mSingh 4 | ko_fi: mSingh 5 | custom: ["https://www.buymeacoffee.com/mSingh"] 6 | -------------------------------------------------------------------------------- /MakerlogFlow.alfredworkflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meSingh/alfred-makerlog/7f95254443dc99fb1dc13e106d23be33feaa772f/MakerlogFlow.alfredworkflow -------------------------------------------------------------------------------- /gfx/done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meSingh/alfred-makerlog/7f95254443dc99fb1dc13e106d23be33feaa772f/gfx/done.png -------------------------------------------------------------------------------- /gfx/done.svg: -------------------------------------------------------------------------------- 1 | 97 -------------------------------------------------------------------------------- /gfx/inprogress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meSingh/alfred-makerlog/7f95254443dc99fb1dc13e106d23be33feaa772f/gfx/inprogress.png -------------------------------------------------------------------------------- /gfx/inprogress.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gfx/todo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meSingh/alfred-makerlog/7f95254443dc99fb1dc13e106d23be33feaa772f/gfx/todo.png -------------------------------------------------------------------------------- /gfx/todo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) Mandeep Singh (https://www.msingh.com) 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 6 | 7 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 8 | 9 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 10 | -------------------------------------------------------------------------------- /metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "alfredworkflow" : { 3 | "category" : "Productivity", 4 | "readme" : "MakerlogFlow lets you to add new todo, inprogress & done tasks to Makerlog directly using makerlog-cli.", 5 | "createdby" : "Mandeep Singh", 6 | "downloadurl" : "", 7 | "version" : "1.0", 8 | "bundleid" : "desi.khurafat.makerlog", 9 | "description" : "Mange your product todo list on getmakerlog.com", 10 | "name" : "MakerlogFlow", 11 | "webaddress" : "https:\/\/www.msingh.com" 12 | } 13 | } -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # MakerlogFlow 2 | 3 | MakerlogFlow is Alfred Workflow that lets you to add new todo, inprogress & done tasks to 4 | [Makerlog](https://getmakerlog.com) directly using 5 | [makerlog-cli](https://github.com/MihaiVoinea/makerlog-cli). 6 | 7 | ## Install 8 | 9 | To install MakerlogFlow, install latest version of Makerlog CLI by running this 10 | command: 11 | 12 | ```bash 13 | $ npm install -g makerlog-cli 14 | ``` 15 | 16 | Authenticate yourself with your Makerlog account using this command: 17 | 18 | ```bash 19 | $ makerlog login --username "your_username" --password "your_password" 20 | ``` 21 | > makerlog-cli does not store your username or password, it only uses them to 22 | > get a token from Makerlog. 23 | 24 | Then download the [latest version here](https://github.com/meSingh/alfred-makerlog/releases/latest) 25 | & open it in Alfred to install this workflow. 26 | 27 | Set the value of the `FILE_PATH` workflow environment variable to the absolute 28 | path of your configuration script (e.g `/Users/natterstefan/.zshrc`). 29 | 30 | ## Usage 31 | 32 | ### TODO 33 | In Alfred, type `todo`, Enter, and some text, to create a todo task 34 | in makerlog. 35 | 36 | ![todo](/screenshots/todo.png) 37 | 38 | ### IN PROGRESS 39 | In Alfred, type `inprogress`, Enter, and some text, to create a 40 | inprogress task in makerlog. 41 | 42 | ![inprogress](/screenshots/inprogress.png) 43 | 44 | ### DONE 45 | In Alfred, type `done`, Enter, and some text, to create a done task 46 | in makerlog. 47 | 48 | ![done](/screenshots/done.png) 49 | 50 | ## Feedback 51 | 52 | Please submit your feedback here: 53 | [https://airtable.com/shrtNX2D8TImBXlGE](https://airtable.com/shrtNX2D8TImBXlGE) 54 | 55 | 56 | ## License 57 | 58 | [MIT](license.md) © [Mandeep Singh](https://www.msingh.com) 59 | -------------------------------------------------------------------------------- /screenshots/done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meSingh/alfred-makerlog/7f95254443dc99fb1dc13e106d23be33feaa772f/screenshots/done.png -------------------------------------------------------------------------------- /screenshots/inprogress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meSingh/alfred-makerlog/7f95254443dc99fb1dc13e106d23be33feaa772f/screenshots/inprogress.png -------------------------------------------------------------------------------- /screenshots/todo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meSingh/alfred-makerlog/7f95254443dc99fb1dc13e106d23be33feaa772f/screenshots/todo.png -------------------------------------------------------------------------------- /screenshots/workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meSingh/alfred-makerlog/7f95254443dc99fb1dc13e106d23be33feaa772f/screenshots/workflow.png --------------------------------------------------------------------------------