Skip to content

Commit

Permalink
Add changelog (#3467)
Browse files Browse the repository at this point in the history
  • Loading branch information
WithoutPants authored Feb 22, 2023
1 parent d0f30eb commit 8b6f7db
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
10 changes: 8 additions & 2 deletions ui/v2.5/src/components/Changelog/Changelog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 = () => {
Expand Down Expand Up @@ -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[] = [
{
Expand All @@ -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",
Expand Down
9 changes: 9 additions & 0 deletions ui/v2.5/src/docs/en/Changelog/v0200.md
Original file line number Diff line number Diff line change
@@ -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))

0 comments on commit 8b6f7db

Please sign in to comment.