mirror of
https://github.com/stashapp/stash.git
synced 2026-04-25 16:35:21 +02:00
Add changelog (#3467)
This commit is contained in:
parent
d0f30ebf39
commit
8b6f7db4ef
2 changed files with 17 additions and 2 deletions
|
|
@ -24,6 +24,7 @@ import V0161 from "src/docs/en/Changelog/v0161.md";
|
|||
import V0170 from "src/docs/en/Changelog/v0170.md";
|
||||
import V0180 from "src/docs/en/Changelog/v0180.md";
|
||||
import V0190 from "src/docs/en/Changelog/v0190.md";
|
||||
import V0200 from "src/docs/en/Changelog/v0200.md";
|
||||
import { MarkdownPage } from "../Shared/MarkdownPage";
|
||||
|
||||
const Changelog: React.FC = () => {
|
||||
|
|
@ -59,9 +60,9 @@ const Changelog: React.FC = () => {
|
|||
// after new release:
|
||||
// add entry to releases, using the current* fields
|
||||
// then update the current fields.
|
||||
const currentVersion = stashVersion || "v0.19.0";
|
||||
const currentVersion = stashVersion || "v0.20.0";
|
||||
const currentDate = buildDate;
|
||||
const currentPage = V0190;
|
||||
const currentPage = V0200;
|
||||
|
||||
const releases: IStashRelease[] = [
|
||||
{
|
||||
|
|
@ -70,6 +71,11 @@ const Changelog: React.FC = () => {
|
|||
page: currentPage,
|
||||
defaultOpen: true,
|
||||
},
|
||||
{
|
||||
version: "v0.19.1",
|
||||
date: "2023-02-21",
|
||||
page: V0190,
|
||||
},
|
||||
{
|
||||
version: "v0.18.0",
|
||||
date: "2022-11-30",
|
||||
|
|
|
|||
9
ui/v2.5/src/docs/en/Changelog/v0200.md
Normal file
9
ui/v2.5/src/docs/en/Changelog/v0200.md
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
### ✨ New Features
|
||||
* Added tenth-place rating precision option. ([#3343](https://github.com/stashapp/stash/pull/3343))
|
||||
* Added toggleable favorite button to Performer cards. ([#3369](https://github.com/stashapp/stash/pull/3369))
|
||||
|
||||
### 🐛 Bug fixes
|
||||
* Fixed URL not being during stash-box scrape if the Studio URL is not set. ([#3439](https://github.com/stashapp/stash/pull/3439))
|
||||
* Fixed generating previews for variable frame rate videos. ([#3376](https://github.com/stashapp/stash/pull/3376))
|
||||
* Fixed errors reading zip files with non-UTF8 encoding. ([#3389](https://github.com/stashapp/stash/pull/3389))
|
||||
* Fixed plugins not able to access API during zip scan operations on systems with authentication enabled. ([#3433](https://github.com/stashapp/stash/pull/3433))
|
||||
Loading…
Reference in a new issue