ttrak 0.2.0 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ttrak",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "A terminal task tracker",
5
5
  "module": "src/index.ts",
6
6
  "type": "module",
@@ -95,7 +95,8 @@ export class IntegrationSetup {
95
95
 
96
96
  this.githubTokenLabel = new TextRenderable(renderer, {
97
97
  id: "github-token-label",
98
- content: "GitHub Token (github.com/settings/tokens):",
98
+ content:
99
+ "GitHub Token (https://github.com/settings/personal-access-tokens):",
99
100
  fg: theme.fg,
100
101
  height: 1,
101
102
  });
@@ -153,7 +154,7 @@ export class IntegrationSetup {
153
154
 
154
155
  this.linearTokenLabel = new TextRenderable(renderer, {
155
156
  id: "linear-token-label",
156
- content: "Linear API Key (linear.app/settings/api):",
157
+ content: "Linear API Key (https://linear.app/settings/account/security):",
157
158
  fg: theme.fg,
158
159
  height: 1,
159
160
  });