add the changelog to the app
This commit is contained in:
parent
2ef72888f5
commit
c562dd49db
@ -36,6 +36,7 @@ tasks:
|
|||||||
|
|
||||||
build:
|
build:
|
||||||
cmds:
|
cmds:
|
||||||
|
- changelord print --no-next > src/routes/\(about\)/about/changelog/changelog.svx
|
||||||
- vite build
|
- vite build
|
||||||
|
|
||||||
integrate:
|
integrate:
|
||||||
@ -56,14 +57,10 @@ tasks:
|
|||||||
release:
|
release:
|
||||||
cmds:
|
cmds:
|
||||||
- standard-version -a
|
- standard-version -a
|
||||||
|
|
||||||
changelog:
|
changelog:
|
||||||
sources: [CHANGELOG.md]
|
sources: [CHANGELOG.md]
|
||||||
generates: [src/lib/components/Changelog.svelte]
|
generates: [src/lib/components/Changelog.svelte]
|
||||||
cmds:
|
cmds:
|
||||||
- pnpx showdown makehtml -i CHANGELOG.md -o src/lib/components/Changelog.svelte
|
- pnpx showdown makehtml -i CHANGELOG.md -o src/lib/components/Changelog.svelte
|
||||||
- git add src/lib/components/Changelog.svelte
|
- git add src/lib/components/Changelog.svelte
|
||||||
|
|
||||||
default:
|
|
||||||
cmds:
|
|
||||||
- echo "{{.GREETING}}"
|
|
||||||
silent: true
|
|
||||||
|
@ -50,6 +50,7 @@
|
|||||||
"histoire": "^0.16.1",
|
"histoire": "^0.16.1",
|
||||||
"jsdom": "^21.1.1",
|
"jsdom": "^21.1.1",
|
||||||
"lodash": "^4.17.21",
|
"lodash": "^4.17.21",
|
||||||
|
"mdsvex": "^0.10.6",
|
||||||
"memoize-one": "^6.0.0",
|
"memoize-one": "^6.0.0",
|
||||||
"redux": "^4.2.1",
|
"redux": "^4.2.1",
|
||||||
"remeda": "^1.14.0",
|
"remeda": "^1.14.0",
|
||||||
|
@ -3,6 +3,10 @@
|
|||||||
<i>Question_Mark</i>
|
<i>Question_Mark</i>
|
||||||
<span>About</span>
|
<span>About</span>
|
||||||
</a>
|
</a>
|
||||||
|
<a href="/about/changelog">
|
||||||
|
<i>Format_List_Bulleted</i>
|
||||||
|
<span>Changelog</span>
|
||||||
|
</a>
|
||||||
<a href="/about/see-also">
|
<a href="/about/see-also">
|
||||||
<i>Read_more</i>
|
<i>Read_more</i>
|
||||||
<span>Other resources</span>
|
<span>Other resources</span>
|
||||||
|
25
src/routes/(about)/about/changelog/+page.svelte
Normal file
25
src/routes/(about)/about/changelog/+page.svelte
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
<div class="changelog">
|
||||||
|
<Changelog />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import Changelog from "./changelog.svx";
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.changelog {
|
||||||
|
font-size: var(--font-scale-11);
|
||||||
|
}
|
||||||
|
.changelog :global(ul) {
|
||||||
|
margin-left: 2em;
|
||||||
|
}
|
||||||
|
.changelog :global(a) {
|
||||||
|
margin-left: 0.2em;
|
||||||
|
}
|
||||||
|
.changelog :global(h2) {
|
||||||
|
font-size: var(--font-scale-13);
|
||||||
|
}
|
||||||
|
.changelog :global(h2) {
|
||||||
|
font-size: var(--font-scale-12);
|
||||||
|
}
|
||||||
|
</style>
|
44
src/routes/(about)/about/changelog/changelog.svx
Normal file
44
src/routes/(about)/about/changelog/changelog.svx
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
# Changelog for [AotDS: The Docks][homepage]
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## 3.0.0 2023-05-09
|
||||||
|
|
||||||
|
* major rewrite.
|
||||||
|
|
||||||
|
|
||||||
|
## 2.3.0 2022-04-17
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* add 'reset ship' button
|
||||||
|
* add changelog to app
|
||||||
|
* add version to About component
|
||||||
|
|
||||||
|
|
||||||
|
## 2.2.0 2022-04-11
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* allow to edit the print layout
|
||||||
|
|
||||||
|
|
||||||
|
## 2.1.0 (2022-04-07)
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* add localStorage memory
|
||||||
|
* can move main system comps in the print output
|
||||||
|
|
||||||
|
|
||||||
|
* add standard-version
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[homepage]: https://git.babyl.ca/yanick/aotds-docks
|
@ -1,9 +1,11 @@
|
|||||||
import preprocess from "svelte-preprocess";
|
import preprocess from "svelte-preprocess";
|
||||||
import adapter from "@sveltejs/adapter-static";
|
import adapter from "@sveltejs/adapter-static";
|
||||||
|
import { mdsvex } from "mdsvex";
|
||||||
|
|
||||||
/** @type {import('@sveltejs/kit').Config} */
|
/** @type {import('@sveltejs/kit').Config} */
|
||||||
const config = {
|
const config = {
|
||||||
preprocess: preprocess(),
|
extensions: [".svelte", ".svx"],
|
||||||
|
preprocess: [mdsvex(), preprocess()],
|
||||||
kit: {
|
kit: {
|
||||||
adapter: adapter({
|
adapter: adapter({
|
||||||
fallback: "index.html",
|
fallback: "index.html",
|
||||||
|
Loading…
Reference in New Issue
Block a user