Skip to content

Commit 9c8122f

Browse files
committed
change: all links now managed by Env package
1 parent 73b0259 commit 9c8122f

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed

src/api/Env.ts

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,21 @@ export function PID( ) : string
1717
Web URL string
1818
*/
1919

20-
type HttpsUrl = `https://${string}`
20+
type HttpsUrl = `https://${ string }`
2121

2222
/*
2323
Repository Strings
2424
*/
2525

2626
type Repo =
2727
{
28-
urlWiki?: HttpsUrl
29-
urlIssues?: HttpsUrl
30-
urlReleases?: HttpsUrl
31-
urlPackage?: HttpsUrl
32-
urlDemoVault?: HttpsUrl
28+
urlDocs?: HttpsUrl
29+
urlRepo?: HttpsUrl
30+
urlWiki?: HttpsUrl
31+
urlIssues?: HttpsUrl
32+
urlReleases?: HttpsUrl
33+
urlPackage?: HttpsUrl
34+
urlDemoVault?: HttpsUrl
3335
}
3436

3537
/*
@@ -42,8 +44,10 @@ export abstract class Env
4244
private static _obsidianApiVer: string
4345
private static _manifest: PluginManifest
4446

45-
public static readonly repository: Repo =
47+
public static readonly Links: Repo =
4648
{
49+
urlDocs: 'https://aetherinox.github.io/obsidian-gistr',
50+
urlRepo: 'https://github.com/Aetherinox/obsidian-gistr',
4751
urlWiki: 'https://github.com/Aetherinox/obsidian-gistr/wiki',
4852
urlIssues: 'https://github.com/Aetherinox/obsidian-gistr/issues',
4953
urlReleases: 'https://github.com/Aetherinox/obsidian-gistr/releases',

0 commit comments

Comments
 (0)