Jump to content

Search the Community

Showing results for tags 'trello'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Blogs

There are no results to display.

Categories

There are no results to display.

Calendars

There are no results to display.

Forums

  • Alfred 3
  • Make the Most of Alfred
    • Discussion & Help
    • Bug Reports
    • Alfred Feature Suggestions
    • Themes
  • Alfred Workflows
    • Share your Workflows
    • Workflow Help & Questions
    • Workflow Advanced Tips & Tricks
    • Workflow Automation Tasks
  • Alfred Themes
  • Alfred Remote for iOS
    • Alfred Remote Discussion & Help
    • Remote Connection Troubleshooting

Categories

  • Articles
    • Forum Integration
    • Frontpage
  • Pages
  • Miscellaneous
    • Databases
    • Templates
    • Media

Categories

  • New Features
  • Other

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Twitter


Location


Interests

Found 6 results

  1. After almost four years, I have returned to using Trello daily and decided to recode my old Trello Workflow with many of the requested features. █████╗ ██╗ ███████╗██████╗ ███████╗██╗ ██╗ ██████╗ ██████████╗ ██╔══██╗██║ ██╔════╝██╔══██╗██╔════╝██║ ██║ ██╔═══██╗ ██╔═██╔═██║ ███████║██║ █████╗ ██████╔╝█████╗ ██║ ██║ ██║ ██║ ██║ ██║ ██║ ██╔══██║██║ ██╔══╝ ██╔══██╗██╔══╝ ██║ ██║ ██║ ██║ ██║ ██████║ ██║ ██║███████╗██║ ██║ ██║███████╗███████╗███████╗╚██████╔╝ ██████████║ ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝ ╚═╝╚══════╝╚══════╝╚══════╝ ╚═════╝ ╚═════════╝ What's New Made for Alfred 5.1 Support for all Trello Labels and Custom Labels Assign a card to yourself and or other members Use natural language for due dates. For example, use terms like 'today', 'tomorrow', or 'next week'. Pick your Date format (m/d/Y or d/m/Y) Personalise the Workflow and rearrange all fields based on how you use Trello! Use default overwrites so you don't have to type the same fields repeatedly. All settings are managed within the Workflow configuration Enable the Debug Log to see and record helpful error messages into log.txt and your clipboard Path overwrite (I never had this issue, but some users asked for it) I have tried to document all functionality as clearly as possible here, I have extensively tested the Workflow with a couple of friends, but I'm sure there may still be some bugs. If you have any issues, please open an issue in Github. You can download the Workflow here https://github.com/MikoMagni/Alfrello
  2. Trello Workflow for Alfred App v.1.6.1 Create cards in Trello using Alfred App https://www.alfredapp.com/ Download Trello WorkFlow 1.6.1 Install Double click on the "Trello Workflow for Alfred v.1.6.1" workflow that you have just downloaded. More info: https://www.alfredapp.com/help/workflows/ Note: if you have version 1.5 installed, remove it before installing the new version. Setup Generate your Trello Developer API Key Use the keyword "get trello key" to generate your Trello Developer API Key. More information: https://developers.trello.com/docs/api-introduction. Note: Make sure to be logged in Trello in your default browser before generating your API Key. Copy your API Key Authorize Trello Workflow Use the keyword "get trello token" plus your "API Key" to authorize the Trello Workflow to use your Trello account Example: get trello token 00000000000000000000 More information: https://developers.trello.com/docs/api-introduction Allow Trello Workflow to use your account Copy your Token Your Trello board id Choose the Trello board that you wish to use with Trello Workflow and copy the board id You can get the board id by simply going to your board and add .json at the end of the URL. Example: Go to the Trello developmemt Roadmap Board https://trello.com/b/nC8QJJoZ/trello-development-roadmap. To view the board id add .json at the end of the URL https://trello.com/b/nC8QJJoZ/trello-development-roadmap.json. You should now see the full JSON The board id in the example is: 4d5ea62fd76aa1136000000c Open the Trello Workflow for Alfred in Alfred app. Use the Keyword Alfred to Show Alfred Preferences. Navigate to Workflows and select Trello Workflow for Alfred v1.6 from the side column. Double click on the /bin/bash script and enter your API Key, Your Token and your board id here: Make sure that each preference in the bash file is within single quotes: Click Save Usage General usage trello {field} separate fields using ; You can choose to have spaces or not between fields. For example {field1}; {field2} and {field1};{field2} will work. Available fields: {Card Title}; {Card Description}; {Labels}; {Due Date}; {List Name}; {Card Position} Basic Usage Card Title trello make dinner reservation will create a card on your board on the first list with the title "make dinner reservation" Card Description trello make dinner reservation; table for 10 people at around 7:30pm will create a card on your board on the first list with the title "make dinner reservation" and description "table for 10 people at around 7:30pm" Labels trello make dinner reservation; table for 10 people at around 7:30pm; blue will create a card on your board on the first list with the title "make dinner reservation" and description "table for 10 people at around 7:30pm" with a "blue" label Available Labels all (will add green, yellow, orange, red, purple and blue) green yellow orange red purple blue You can add more than one label by comma separating them. trello make dinner reservation; table for 10 people at around 7:30pm; blue,red,yellow Please note: Make sure not to have spaces between comma separated labels. Custom labels are not supported. If you find a way let me know Due Date trello make dinner reservation; table for 10 people at around 7:30pm; blue; 04/26/2018 will create a card on your board on the first list with the title "make dinner reservation" and description "table for 10 people at around 7:30pm" with a "blue" label. The due date will be set as 04/26/2018 List Name trello make dinner reservation; table for 10 people at around 7:30pm; blue; 04/26/2018; Today will create a card on your board on the list Today with the title "make dinner reservation" and description "table for 10 people at around 7:30pm" with a "blue" label. The due date will be set as 04/26/2018. Please note: List name are case sensitive today will not work if your list is named Today. The example will only work if you have a list named Today, otherwise the card will be created on your first list. Card Position trello make dinner reservation; table for 10 people at around 7:30pm; blue; 04/26/2018; Today; top will create a card on your board on the list Today with the title "make dinner reservation" and description "table for 10 people at around 7:30pm" with a "blue" label. The due date will be set as 04/26/2018. Note: If you don't specify a card position, your new card will automatically be placed at the end of the list. Available options (case sensitive) top bottom bottom top Advanced Usage You can skip any of the available fields by simply adding ; {Card Title}; {Card Description}; {Labels}; {Due Date}; {List Name}; {Card Position} For example if I wanted to post a card with Title, Label and a Due date i would use this syntax {Card Title}; ; {Labels}; {Due Date} trello Clean my car; ; red; 04/29/2018 Or a card with title only but on a different list {Card Title}; ; ; ; {List Name} trello Clean my car; ; ; ; Upcoming Environment Variables by @gamell Given that some might want always to create the cards on the same list, or with the same label, or same due date, or same position by default, I added the ability to set those defaults via the environment variables trello.list_name, trello.label, trello.due and trello.position. One can conveniently add or edit those environment variables without programming knowledge through the Alfred Workflow editor, clicking on the [x] button on the top right (see screenshot below). Note: If you don't set the variable, the workflow will behave as it did before. FAQ Coming soon License MIT © Miko Magni
  3. I just uploaded uploaded clipbox to packal http://www.packal.org/workflow/clipbox It lets you take a screenshot, upload it to trello, and get a link to the file back. Suggestions and changes accepted at https://github.com/bgschiller/alfred-clipbox Keys Action ⌘⇧X Take screenshot ⌘⇧G Begin screen recording ⌘⇧C Upload clipboard text or file
  4. I wanted a quick and native way to retrieve my important tasks from Trello, so I created an Alfred workflow to get direct access to my urgent Trello cards. This workflow allows you to retrieve cards by list name or by due date across all Trello boards. See my blog post to download the workflow and learn how to use it : http://blog.g-design.net/post/122325916780/access-your-important-trello-cards-with-alfred Enjoy! gunther
  5. Here's a workflow to search for Trello tabs already open in Safari then do one of three things: - Creates a new Trello tab in Safari if none are open. - Open existing Trello tab in Safari if one exits. - Presents a dialog of Trello tabs to choose from if more than one tab exits. Get it in Packal: http://www.packal.org/workflow/open-trello-tab-safari-without-duplicates The workflow contains AppleScript that was adapted from what I found here: http://hea-www.harvard.edu/~fine/OSX/safari-tabs.html
  6. Hi all, I've gotten dependent on Alfred to launch apps. I've started using Trello to manage tasks etc. I have an alfred workflow for creating new tasks in trello. But how do I set it up so that I can use Alfred to go Trello page already have open in Safari. If I type simply "Trello" it launches a new tab. I suspect there is an easy way to do it. ? Thanks for help
×
×
  • Create New...