-
Notifications
You must be signed in to change notification settings - Fork 1
Add new base plugins #12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
9919ec8
2d2c13f
3cb84eb
350b492
f24620e
9f52fef
e3b404a
013cd74
7abd2a8
292c750
5fbcf65
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,17 @@ | ||||||
| { | ||||||
| "$schema": "https://github.com/tmtrckr/plugins-registry/schemas/manifest.schema.json", | ||||||
| "id": "billing", | ||||||
| "name": "Billing", | ||||||
| "author": "TimeTracker", | ||||||
| "repository": "https://github.com/tmtrckr/plugin-billing", | ||||||
| "latest_version": "1.0.0", | ||||||
| "description": "Billable time tracking plugin for Time Tracker application.", | ||||||
| "category": "other", | ||||||
| "verified": false, | ||||||
| "downloads": 0, | ||||||
| "tags": [], | ||||||
|
||||||
| "tags": [], | |
| "tags": ["billing", "invoicing", "time-tracking"], |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| { | ||
| "$schema": "https://github.com/tmtrckr/plugins-registry/schemas/manifest.schema.json", | ||
| "id": "goals", | ||
| "name": "Goals", | ||
| "author": "TimeTracker", | ||
| "repository": "https://github.com/tmtrckr/plugin-goals", | ||
| "latest_version": "1.0.0", | ||
| "description": "Goal tracking plugin for Time Tracker application.", | ||
| "category": "productivity", | ||
| "verified": false, | ||
| "downloads": 0, | ||
| "tags": [ | ||
| "productivity" | ||
| ], | ||
| "license": "MIT", | ||
| "min_core_version": "0.3.0", | ||
| "max_core_version": "1.0.0", | ||
| "api_version": "1.0" | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| { | ||
| "$schema": "https://github.com/tmtrckr/plugins-registry/schemas/manifest.schema.json", | ||
| "id": "projects-tasks", | ||
| "name": "Projects & Tasks", | ||
| "author": "TimeTracker", | ||
| "repository": "https://github.com/tmtrckr/plugin-projects-tasks", | ||
| "latest_version": "1.0.0", | ||
| "description": "Project and task management plugin for Time Tracker application.", | ||
| "category": "reporting", | ||
| "verified": false, | ||
| "downloads": 0, | ||
| "tags": [ | ||
| "projects", | ||
| "tasks", | ||
| "reporting" | ||
| ], | ||
| "license": "MIT", | ||
| "min_core_version": "0.3.0", | ||
| "max_core_version": "1.0.0", | ||
| "api_version": "1.0" | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The billing plugin is categorized as "other", which is the most generic category available. Consider whether a more specific category would be appropriate. Based on the description "Billable time tracking plugin", categories like "reporting" (if it generates billing reports) or "export" (if it exports billing data) might be more discoverable. The "other" category should typically be reserved for plugins that truly don't fit into any specific category.