-
-
Notifications
You must be signed in to change notification settings - Fork 257
Refresh pages #674
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
Merged
Merged
Refresh pages #674
Changes from 10 commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
cbba18e
Migrate from SvelteKit to Astro and restructure project
umireon 00a4f28
Create macos.astro
umireon eb54dca
Add Ubuntu page and update OS names in index
umireon 925181a
Create flatpak.astro
umireon 3a69310
Add Arch Linux install guide and update Flatpak page
umireon 7df04ab
Update index.astro
umireon 02be667
Add favicons and latest version endpoint
umireon 1d86a29
Update workflow schedule and simplify release fetching
umireon 0bc4c68
Add GITHUB_TOKEN auth to GitHub API requests
umireon 14e153b
Update pages.yaml
umireon 1712709
Update pages/src/pages/usage.astro
umireon 06bb0b0
Fix project name and update GitHub release URL
umireon 3b92d49
Merge branch 'umireon/refresh-pages' of https://github.com/royshil/ob…
umireon 0332d47
Update macos.astro
umireon d8d4d26
Update windows.astro
umireon a2e862c
Update ubuntu.astro
umireon 1612e44
Apply suggestions from code review
umireon File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,23 +1,24 @@ | ||
| node_modules | ||
| # build output | ||
| dist/ | ||
|
|
||
| # Output | ||
| .output | ||
| .vercel | ||
| .netlify | ||
| .wrangler | ||
| /.svelte-kit | ||
| /build | ||
| # generated types | ||
| .astro/ | ||
|
|
||
| # OS | ||
| .DS_Store | ||
| Thumbs.db | ||
| # dependencies | ||
| node_modules/ | ||
|
|
||
| # logs | ||
| npm-debug.log* | ||
| yarn-debug.log* | ||
| yarn-error.log* | ||
| pnpm-debug.log* | ||
|
|
||
| # Env | ||
| # environment variables | ||
| .env | ||
| .env.* | ||
| !.env.example | ||
| !.env.test | ||
| .env.production | ||
|
|
||
| # macOS-specific files | ||
| .DS_Store | ||
|
|
||
| # Vite | ||
| vite.config.js.timestamp-* | ||
| vite.config.ts.timestamp-* | ||
| # jetbrains setting folder | ||
| .idea/ |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,15 +1,11 @@ | ||
| { | ||
| "useTabs": true, | ||
| "singleQuote": true, | ||
| "trailingComma": "none", | ||
| "printWidth": 100, | ||
| "plugins": ["prettier-plugin-svelte"], | ||
| "overrides": [ | ||
| { | ||
| "files": "*.svelte", | ||
| "options": { | ||
| "parser": "svelte" | ||
| } | ||
| } | ||
| ] | ||
| "plugins": ["prettier-plugin-astro"], | ||
| "overrides": [ | ||
| { | ||
| "files": "*.astro", | ||
| "options": { | ||
| "parser": "astro" | ||
| } | ||
| } | ||
| ] | ||
| } |
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| // @ts-check | ||
| import { defineConfig } from "astro/config"; | ||
|
|
||
| // https://astro.build/config | ||
| export default defineConfig({}); |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.