mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 12:54:38 +03:00
Add hotfix version entry
This commit is contained in:
@@ -16,6 +16,7 @@ import V0100 from "./versions/v0100.md";
|
|||||||
import V0110 from "./versions/v0110.md";
|
import V0110 from "./versions/v0110.md";
|
||||||
import V0120 from "./versions/v0120.md";
|
import V0120 from "./versions/v0120.md";
|
||||||
import V0130 from "./versions/v0130.md";
|
import V0130 from "./versions/v0130.md";
|
||||||
|
import V0131 from "./versions/v0131.md";
|
||||||
import { MarkdownPage } from "../Shared/MarkdownPage";
|
import { MarkdownPage } from "../Shared/MarkdownPage";
|
||||||
|
|
||||||
// to avoid use of explicit any
|
// to avoid use of explicit any
|
||||||
@@ -54,9 +55,9 @@ const Changelog: React.FC = () => {
|
|||||||
// after new release:
|
// after new release:
|
||||||
// add entry to releases, using the current* fields
|
// add entry to releases, using the current* fields
|
||||||
// then update the current fields.
|
// then update the current fields.
|
||||||
const currentVersion = stashVersion || "v0.13.0";
|
const currentVersion = stashVersion || "v0.13.1";
|
||||||
const currentDate = buildDate;
|
const currentDate = buildDate;
|
||||||
const currentPage = V0130;
|
const currentPage = V0131;
|
||||||
|
|
||||||
const releases: IStashRelease[] = [
|
const releases: IStashRelease[] = [
|
||||||
{
|
{
|
||||||
@@ -65,6 +66,12 @@ const Changelog: React.FC = () => {
|
|||||||
page: currentPage,
|
page: currentPage,
|
||||||
defaultOpen: true,
|
defaultOpen: true,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
version: "v0.13.0",
|
||||||
|
date: "2022-03-08",
|
||||||
|
page: V0130,
|
||||||
|
defaultOpen: true,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
version: "v0.12.0",
|
version: "v0.12.0",
|
||||||
date: "2021-12-29",
|
date: "2021-12-29",
|
||||||
|
|||||||
2
ui/v2.5/src/components/Changelog/versions/v0131.md
Normal file
2
ui/v2.5/src/components/Changelog/versions/v0131.md
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
### 🐛 Bug fixes
|
||||||
|
* Fix auto-tag not using case-insensitive matching. ([#2378](https://github.com/stashapp/stash/pull/2378))
|
||||||
Reference in New Issue
Block a user