mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 12:24:38 +03:00
27 lines
878 B
TypeScript
27 lines
878 B
TypeScript
import React from "react";
|
|
import ReactMarkdown from "react-markdown";
|
|
|
|
const markup = `
|
|
### ✨ New Features
|
|
* Support deleting multiple scenes.
|
|
* Add in-app help manual.
|
|
* Add support for custom served folders.
|
|
* Add support for parent/child studios.
|
|
|
|
### 🎨 Improvements
|
|
* Allow click and click-drag selection after selecting scene.
|
|
* Added multi-scene edit dialog.
|
|
* Moved images to separate tables, increasing performance.
|
|
* Add gallery grid view.
|
|
* Add is-missing scene filter for gallery query.
|
|
* Don't import galleries with no images, and delete galleries with no images during clean.
|
|
* Show pagination at top as well as bottom of the page.
|
|
* Add split xpath post-processing action.
|
|
* Improved the layout of the scene page.
|
|
* Show rating as stars in scene page.
|
|
* Add reload scrapers button.
|
|
|
|
`;
|
|
|
|
export default () => <ReactMarkdown source={markup} />;
|