diff --git a/source/ts/components/shared-footer.ts b/source/ts/components/shared-footer.ts index eaf8a9c..682ff32 100644 --- a/source/ts/components/shared-footer.ts +++ b/source/ts/components/shared-footer.ts @@ -20,14 +20,14 @@ export default class SharedFooter extends Component { ? undefined : html`Settings${' '}`; - const githubUrl = 'https://github.com/Bauke/href-plus'; + const giteaUrl = 'https://git.bauke.xyz/Bauke/href-plus'; const versionText = `v${hrefPlusVersion}/${hrefPlusCommitHash}`; - const versionUrl = `${githubUrl}/tree/${hrefPlusCommitHash}`; + const versionUrl = `${giteaUrl}/src/commit/${hrefPlusCommitHash}`; return html` diff --git a/source/ts/pages/settings.ts b/source/ts/pages/settings.ts index c869363..20440c5 100644 --- a/source/ts/pages/settings.ts +++ b/source/ts/pages/settings.ts @@ -47,13 +47,6 @@ export default class SettingsPage extends Component { (theme) => html``, ); - const moreThemesLink = html` - <${ExternalAnchor} - text="more themes issue" - url="https://github.com/Bauke/href-plus/issues/17" - /> - `; - return html`
@@ -66,11 +59,6 @@ export default class SettingsPage extends Component { - -

- If your favorite theme isn't in the list here, please make a request - for it in the ${moreThemesLink}! -

diff --git a/vite.config.ts b/vite.config.ts index 5cc2e62..f78d340 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -33,7 +33,7 @@ export default defineConfig({ define: { hrefPlusVersion: JSON.stringify(hrefPlusVersion), hrefPlusCommitHash: gitRevParse(), - hrefPlusUserAgent: `"href-plus/${hrefPlusVersion} (https://github.com/Bauke/href-plus)"`, + hrefPlusUserAgent: `"href-plus/${hrefPlusVersion} (https://git.bauke.xyz/Bauke/href-plus)"`, }, publicDir: path.join(sourceDir, 'assets'), root: sourceDir,