-
Notifications
You must be signed in to change notification settings - Fork 639
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/next' into translation-pr-test
- Loading branch information
Showing
21 changed files
with
161 additions
and
146 deletions.
There are no files selected for viewing
This file contains 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,4 @@ | ||
# See https://github.com/actions/labeler | ||
|
||
i18n: | ||
- docs/src/content/docs/fr/**/* |
This file contains 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,14 @@ | ||
name: 'Pull Request Labeler' | ||
on: | ||
- pull_request_target | ||
|
||
jobs: | ||
triage: | ||
permissions: | ||
contents: read | ||
pull-requests: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/labeler@v4 | ||
with: | ||
repo-token: '${{ secrets.GITHUB_TOKEN }}' |
This file contains 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 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 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 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
Submodule plugins-workspace
updated
164 files
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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,51 @@ | ||
--- | ||
import { LinkCard, CardGrid } from '@astrojs/starlight/components'; | ||
import { type CollectionEntry, getEntry } from 'astro:content'; | ||
const base = '2/reference/js'; | ||
const entries = [ | ||
'core', | ||
'app', | ||
'authenticator', | ||
'autostart', | ||
'cli', | ||
'clipboard-manager', | ||
'dialog', | ||
'fs', | ||
'global-shortcut', | ||
'http', | ||
'log', | ||
'notification', | ||
'os', | ||
'positioner', | ||
'process', | ||
'shell', | ||
'sql', | ||
'store', | ||
'stronghold', | ||
'updater', | ||
'upload', | ||
'websocket', | ||
'window', | ||
'window-state', | ||
]; | ||
const list = (await Promise.all( | ||
entries.flatMap((entry) => getEntry('docs', `${base}/${entry}`)) | ||
)) as CollectionEntry<'docs'>[]; | ||
--- | ||
|
||
<CardGrid> | ||
{ | ||
list | ||
.sort((a, b) => a.data.title.localeCompare(b.data.title)) | ||
.map((item) => ( | ||
<LinkCard | ||
title={item.data.title} | ||
href={`/${item.slug}`} | ||
description={item.data.description} | ||
/> | ||
)) | ||
} | ||
</CardGrid> |
2 changes: 1 addition & 1 deletion
2
...t/docs/2/guide/build-distribute/index.mdx → src/content/docs/2/guide/build.mdx
This file contains 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,5 +1,5 @@ | ||
--- | ||
title: Building & Distribution | ||
title: Building | ||
--- | ||
|
||
import Stub from '@components/Stub.astro'; | ||
|
This file contains 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,7 @@ | ||
--- | ||
title: Existing Project | ||
--- | ||
|
||
import Stub from '@components/Stub.astro'; | ||
|
||
<Stub /> |
This file contains 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 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,17 @@ | ||
--- | ||
title: Distributing | ||
--- | ||
|
||
import Stub from '@components/Stub.astro'; | ||
|
||
<Stub> | ||
|
||
- Distribution and Code Signing for... | ||
- Linux | ||
- macOS | ||
- Windows | ||
- Android `pnpm tauri [ios|android] build` | ||
- iOS | ||
- Updater (link to recipe) | ||
|
||
</Stub> |
This file contains 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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains 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,3 +1,3 @@ | ||
core/ | ||
plugin/**/ | ||
config.md | ||
config.md | ||
js/* | ||
!js/index.mdx |
Oops, something went wrong.