-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #84 from ferreira-tb:docs
docs: update changelog
- Loading branch information
Showing
10 changed files
with
56 additions
and
7 deletions.
There are no files selected for viewing
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
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
7 changes: 7 additions & 0 deletions
7
docs/src/lib/components/container/changelog/change/dependencies.svelte
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 @@ | ||
<script lang="ts"> | ||
import { default as Base, type BaseProps } from './base.svelte'; | ||
const _props: BaseProps = $props(); | ||
</script> | ||
|
||
<Base {..._props} kind="Dependencies" /> |
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
16 changes: 16 additions & 0 deletions
16
docs/src/lib/content/changelog/tauri-plugin-pinia/v0/0.10.3.svelte
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,16 @@ | ||
<script lang="ts"> | ||
import { Link } from '$lib/components/link'; | ||
import { Changelog } from '$lib/components/container'; | ||
const version = '0.10.3'; | ||
const url = 'https://www.npmjs.com/package/@tauri-store/shared'; | ||
</script> | ||
|
||
<Changelog.Version {version} /> | ||
|
||
<Changelog.Dependencies {version}> | ||
<ul> | ||
<li>Update <Link href={url} code>@tauri-store/shared</Link>.</li> | ||
</ul> | ||
</Changelog.Dependencies> |
16 changes: 16 additions & 0 deletions
16
docs/src/lib/content/changelog/tauri-plugin-svelte/v0/0.1.4.svelte
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,16 @@ | ||
<script lang="ts"> | ||
import { Link } from '$lib/components/link'; | ||
import { Changelog } from '$lib/components/container'; | ||
const version = '0.1.4'; | ||
const url = 'https://www.npmjs.com/package/@tauri-store/shared'; | ||
</script> | ||
|
||
<Changelog.Version {version} /> | ||
|
||
<Changelog.Dependencies {version}> | ||
<ul> | ||
<li>Update <Link href={url} code>@tauri-store/shared</Link>.</li> | ||
</ul> | ||
</Changelog.Dependencies> |
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