Files
stash/ui/v2.5/src/components/Changelog/versions/v030.tsx
2020-07-21 13:04:56 +10:00

37 lines
1.3 KiB
TypeScript

import React from "react";
import ReactMarkdown from "react-markdown";
const markup = `
### ✨ New Features
* Support (re-)generation of generated content for specific scenes.
* Add tag thumbnails, tags grid view and tag page.
* Add post-scrape dialog.
* Add various keyboard shortcuts (see manual).
* Support deleting multiple scenes.
* Add in-app help manual.
* Add support for custom served folders.
* Add support for parent/child studios.
### 🎨 Improvements
* Add random sorting for performers.
* Search for files which have low or upper case supported filename extensions.
* Add dialog when pasting movie images.
* 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.
### 🐛 Bug fixes
* Fix formatted dates using incorrect timezone.
`;
export default () => <ReactMarkdown source={markup} />;