Skip to content

Commit f41ffa2

Browse files
committed
Clean up remaining repo links
1 parent 6bc7bbf commit f41ffa2

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

.github/CONTRIBUTING.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Contributing
22

3-
Thanks for contributing to themer! All contributions are welcome, and are expected to adhere to [the code of conduct](https://github.com/themerdev/themer/blob/main/CODE_OF_CONDUCT.md). Below are some guidelines for the most effective ways you can help build themer.
3+
Thanks for contributing to themer! All contributions are welcome, and are expected to adhere to [the code of conduct](https://github.com/mjswensen/themer/blob/main/CODE_OF_CONDUCT.md). Below are some guidelines for the most effective ways you can help build themer.
44

55
- [Log a bug](#log-a-bug)
66
- [Request a theme template](#request-a-theme-template)
@@ -31,7 +31,7 @@ If you use a tool that themer doesn't support yet, feel free to request it by cr
3131
2. `cd cli`
3232
3. `npm install` to install dependencies
3333
4. Create a new file in the `src/template/` directory.
34-
5. Implement the template interface, following the documentation in the ["Create custom `Template`s" section of the README](https://github.com/themerdev/themer#create-custom-templates).
34+
5. Implement the template interface, following the documentation in the ["Create custom `Template`s" section of the README](https://github.com/mjswensen/themer#create-custom-templates).
3535
6. Submit a pull request.
3636

3737
## Provide a color set
@@ -48,7 +48,7 @@ You can also download your theme and a `colors.js` file that is compatible with
4848

4949
#### Option 1.2: using the CLI or API
5050

51-
Define your colors following the instructions under the ["Create custom `ColorSet`s" section of the README](https://github.com/themerdev/themer#create-custom-colorsets). To test your color configuration file, you can use the following command:
51+
Define your colors following the instructions under the ["Create custom `ColorSet`s" section of the README](https://github.com/mjswensen/themer#create-custom-colorsets). To test your color configuration file, you can use the following command:
5252

5353
```sh
5454
npx themer -c <path to your colors file> -t vs-code -o <path to your desired output directory>
@@ -64,5 +64,5 @@ If a color set should be distributed with `themer` in the official web UI at [th
6464
2. `cd cli`
6565
3. `npm install` to install dependencies
6666
4. Create a new file in the `src/color-set/` directory.
67-
5. Implement your color set interface, following the documentation in the ["Create custom `ColorSet`s" section of the README](https://github.com/themerdev/themer#create-custom-colorsets).
67+
5. Implement your color set interface, following the documentation in the ["Create custom `ColorSet`s" section of the README](https://github.com/mjswensen/themer#create-custom-colorsets).
6868
6. Submit a pull request.

.github/ISSUE_TEMPLATE/feature_request.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ assignees: ""
88

99
# New theme template request
1010

11-
If you are requesting theme support for a new tool or program, use this section. Otherwise, delete it and continue with "Other feature request" below. See also [CONTRIBUTING.md](https://github.com/themerdev/themer/blob/main/.github/CONTRIBUTING.md) for more information.
11+
If you are requesting theme support for a new tool or program, use this section. Otherwise, delete it and continue with "Other feature request" below. See also [CONTRIBUTING.md](https://github.com/mjswensen/themer/blob/main/.github/CONTRIBUTING.md) for more information.
1212

1313
## Website
1414

cli/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"url": "https://mjswensen.com"
1313
},
1414
"repository": {
15-
"url": "https://github.com/themerdev/themer.git",
15+
"url": "https://github.com/mjswensen/themer.git",
1616
"type": "git",
1717
"directory": "cli"
1818
},
@@ -23,8 +23,8 @@
2323
"build": "tsc",
2424
"test": "ava"
2525
},
26-
"bugs": "https://github.com/themerdev/themer/issues",
27-
"homepage": "https://github.com/themerdev/themer#readme",
26+
"bugs": "https://github.com/mjswensen/themer/issues",
27+
"homepage": "https://github.com/mjswensen/themer#readme",
2828
"keywords": [
2929
"themer",
3030
"theme",

cli/src/template/vs-code.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ const template: Template = {
5252
5353
Your personal ${
5454
variants.length === 1 ? 'theme' : 'themes'
55-
}, generated by [themer](https://github.com/themerdev/themer).
55+
}, generated by [themer](https://github.com/mjswensen/themer).
5656
`,
5757
};
5858

web/src/routes/Footer.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<div class="wrapper shade4">
66
themer is open source software by
77
<a href="https://techhub.social/@mjswensen" rel="me">@mjswensen</a> with
8-
<a href="https://github.com/themerdev/themer/graphs/contributors">contributors</a>
8+
<a href="https://github.com/mjswensen/themer/graphs/contributors">contributors</a>
99
&bull; web UI version <code>{version}</code>
1010
</div>
1111

web/src/routes/Header.svelte

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
onMount(async () => {
77
const response: { stargazers_count: number } = await fetch(
8-
'https://api.github.com/repos/themerdev/themer'
8+
'https://api.github.com/repos/mjswensen/themer'
99
).then((res) => res.json());
1010
starCount = (response.stargazers_count / 1000).toFixed(1) + 'k';
1111
});
@@ -16,7 +16,7 @@
1616
<span class="subtitle">
1717
<span class="themed shade5">// free and open-source development environment theme creator</span>
1818
</span>
19-
<a href="https://github.com/themerdev/themer" target="_blank">
19+
<a href="https://github.com/mjswensen/themer" target="_blank">
2020
Star on GitHub ({starCount})
2121
</a>
2222
</div>

web/src/routes/download/+page.svelte

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,14 +70,14 @@
7070
{#if succeeded}
7171
<p>
7272
<span>Enjoying themer?</span>
73-
<a href="https://github.com/themerdev/themer">Star the GitHub repo</a>
73+
<a href="https://github.com/mjswensen/themer">Star the GitHub repo</a>
7474
</p>
7575
<p><a href="/">← Back to themer</a></p>
7676
{/if}
7777
{#if failed}
7878
<p>
7979
<a href="/">Go back and try again</a>; if it doesn't work, file an issue on
80-
<a href="https://github.com/themerdev/themer/issues">the GitHub repo</a>
80+
<a href="https://github.com/mjswensen/themer/issues">the GitHub repo</a>
8181
for help.
8282
</p>
8383
{/if}

0 commit comments

Comments
 (0)