{"id":17031632,"url":"https://github.com/tosher/redlime","last_synced_at":"2025-04-12T12:41:04.748Z","repository":{"id":33380170,"uuid":"37025122","full_name":"tosher/Redlime","owner":"tosher","description":"Redlime: Sublime text 3 Redmine manager","archived":false,"fork":false,"pushed_at":"2018-11-10T20:43:10.000Z","size":650,"stargazers_count":10,"open_issues_count":0,"forks_count":3,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-26T07:21:50.165Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tosher.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"license.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-06-07T17:18:20.000Z","updated_at":"2020-11-05T15:02:04.000Z","dependencies_parsed_at":"2022-09-11T23:41:43.297Z","dependency_job_id":null,"html_url":"https://github.com/tosher/Redlime","commit_stats":null,"previous_names":[],"tags_count":13,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tosher%2FRedlime","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tosher%2FRedlime/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tosher%2FRedlime/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tosher%2FRedlime/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tosher","download_url":"https://codeload.github.com/tosher/Redlime/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248568575,"owners_count":21126052,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-14T08:24:54.944Z","updated_at":"2025-04-12T12:41:04.721Z","avatar_url":"https://github.com/tosher.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Redlime: SublimeText 3 Redmine manager\n\nSublimeText 3 plugin to manage Redmine issues. \nConcept idea based on another plugin (fork): [SubRed](https://packagecontrol.io/packages/SubRed), but with many differences and improvements:\n\n * Fully customizable issue fields - default and custom.\n * Create new issues.\n * Edit all issue properties.\n * Show/open issue dependencies, subissues, attachments.\n * Redmine project as main path to issues (queries are supported too).\n * With improved interface and improved highlighting based on own syntax (or possible to use markdown themes).\n\n## Screenshots\n\nProject issues list:\n![Redlime - project issues](https://raw.githubusercontent.com/wiki/tosher/Redlime/redlime_issues.png)\n\nIssue:\n![Redlime - project issue](https://raw.githubusercontent.com/wiki/tosher/Redlime/redlime_issue.png)\n\n## Install\n\n### Package Control\nThe easiest way to install this is with [Package Control](http://wbond.net/sublime\\_packages/package\\_control).\n\n * If you just went and installed Package Control, you probably need to restart Sublime Text before doing this next bit.\n * Bring up the Command Palette (\u003ckbd\u003eCommand+Shift+p\u003c/kbd\u003e on OS X, \u003ckbd\u003eControl+Shift+p\u003c/kbd\u003e on Linux/Windows).\n * Select \"Package Control: Install Package\" (it'll take a few seconds)\n * Select Redlime when the list appears.\n\nPackage Control will automatically keep **Redlime** up to date with the latest version.\n\n### Configure\n\n##### Basic\n * Open plugin settings *Preferences: Package Settings \u003e Redlime \u003e Settings – User*.\n * Set the *redmine_url* and *api_key*.\n * Configure the *issue_list_columns* and *issue_view_columns* for showing issues as you want.\n * Set the *projects_filter* and *assigned_to_group_id_filter* for filtering data for your projects only.\n\nExample:\n\n```json\n{\n    \"redmine_url\" : \"URL to your Redmine\",\n    \"api_key\": \"Set your Redmine API Key\",\n    \"projects_filter\": [\"my_project_short_name\", \"my_another_project_short_name\"],\n    \"assigned_to_group_id_filter\": [17],\n    \"query_page_size\": 40,\n    \"syntax_file\": \"Packages/Redlime/Redlime.tmLanguage\",\n    \"issue_list_columns\": [\n        { \"prop\": \"id\", \"colname\": \"#\", \"custom\": false, \"align\": \"right\" },\n        { \"prop\": \"fixed_version\", \"colname\": \"Version\", \"custom\": false},\n        { \"prop\": \"Build\", \"colname\": \"Build\", \"custom\": true},\n        { \"prop\": \"tracker\", \"colname\": \"Type\", \"custom\": false},\n        { \"prop\": \"priority\", \"colname\": \"Prior.\", \"custom\": false},\n        { \"prop\": \"status\", \"colname\": \"Status\", \"custom\": false},\n        { \"prop\": \"assigned_to\", \"colname\": \"Assigned\", \"custom\": false},\n        { \"prop\": \"subject\", \"colname\": \"Subject\", \"custom\": false, \"maxlen\": 80},\n        { \"prop\": \"done_ratio\", \"colname\": \"% Done\", \"custom\": false, \"type\": \"progressbar\"},\n    ],\n    \"issue_view_columns\": [\n        { \"prop\": \"id\", \"colname\": \"Issue\", \"custom\": false},\n        { \"prop\": \"project\", \"colname\": \"Project\", \"custom\": false},\n        { \"prop\": \"fixed_version\", \"colname\": \"Version\", \"custom\": false},\n        { \"prop\": \"status\", \"colname\": \"Status\", \"custom\": false},\n        { \"prop\": \"priority\", \"colname\": \"Priority\", \"custom\": false},\n        { \"prop\": \"done_ratio\", \"colname\": \"Done ratio\", \"custom\": false, \"type\": \"percentage\"},\n        { \"prop\": \"author\", \"colname\": \"Author\", \"custom\": false},\n        { \"prop\": \"assigned_to\", \"colname\": \"Assigned to\", \"custom\": false},\n        { \"prop\": \"created_on\", \"colname\": \"Creation date\", \"custom\": false, \"type\": \"datetime\"},\n        { \"prop\": \"Build\", \"colname\": \"Build\", \"custom\": true}\n    ]\n}\n```\n\n### Plugin commands:\n\n#### Issues list commands\n* Redlime: Project issues\n* Redlime: List queries\n* \u003ckbd\u003er\u003c/kbd\u003e Redlime: Refresh issues\n* \u003ckbd\u003ea\u003c/kbd\u003e Redlime: Assign filter - for project issues only\n* \u003ckbd\u003e\u0026#8592;\u003c/kbd\u003e Redlime: Previous page\n* \u003ckbd\u003e\u0026#8594;\u003c/kbd\u003e Redlime: Next page\n* \u003ckbd\u003eEnter\u003c/kbd\u003e Redlime: View issue\n\n#### Issue view/edit commands\n* \u003ckbd\u003er\u003c/kbd\u003e Redlime issue: Refresh\n* \u003ckbd\u003ec\u003c/kbd\u003e Redlime issue: Post comment\n* \u003ckbd\u003ev\u003c/kbd\u003e Redlime issue: Change version\n* \u003ckbd\u003es\u003c/kbd\u003e Redlime issue: Set status\n* \u003ckbd\u003em\u003c/kbd\u003e Redlime issue: Change project\n* \u003ckbd\u003eF2\u003c/kbd\u003e Redlime issue: Change subject\n* \u003ckbd\u003ea\u003c/kbd\u003e Redlime issue: Assign to\n* \u003ckbd\u003ep\u003c/kbd\u003e Redlime issue: Change priority\n* \u003ckbd\u003e%\u003c/kbd\u003e Redlime issue: Change done ratio\n* \u003ckbd\u003eg\u003c/kbd\u003e Redlime issue: Open in browser\n* \u003ckbd\u003el\u003c/kbd\u003e Redlime issue: Open selected link\n* \u003ckbd\u003ed\u003c/kbd\u003e Redlime issue: Change description\n* \u003ckbd\u003ei\u003c/kbd\u003e Redlime issue: Open selected issue\n* \u003ckbd\u003eb\u003c/kbd\u003e Redlime issue: Change selected custom field\n* \u003ckbd\u003ew\u003c/kbd\u003e Redlime issue: Open external wiki\n* \u003ckbd\u003eEnter\u003c/kbd\u003e Redlime issue: Magic enter - run issue command by selected line\n* \u003ckbd\u003eu\u003c/kbd\u003e Redlime issue: Toggle select mode - toggle full-line selection mode for possibility to copy any selected text.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftosher%2Fredlime","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftosher%2Fredlime","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftosher%2Fredlime/lists"}