Default package sources (#4364)

* Set default package sources
* Add release notes
* Add documentation
* Index URL -> Source URL
This commit is contained in:
WithoutPants
2023-12-18 09:45:21 +11:00
committed by GitHub
parent 26c3873122
commit c9501ef881
6 changed files with 106 additions and 8 deletions

View File

@@ -1,5 +1,6 @@
import v0170 from "./v0170.md";
import v0200 from "./v0200.md";
import v0240 from "./v0240.md";
export interface IReleaseNotes {
// handle should be in the form of YYYYMMDD
@@ -9,6 +10,11 @@ export interface IReleaseNotes {
}
export const releaseNotes: IReleaseNotes[] = [
{
date: 20231212,
version: "v0.24.0",
content: v0240,
},
{
date: 20230301,
version: "v0.20.0",

View File

@@ -0,0 +1,5 @@
This release introduces scraper and plugin management interfaces. This allows installing, updating and removing scrapers and plugins from the WebUI.
Default package sources have been automatically configured to point at the _stable_ branches of the `CommunityScrapers` and `CommunityScripts` respositories. These branches will correspond to the current stable version of stash.
**Note:** existing scrapers and plugins will _not_ be able to be managed using the management interface. It is recommended that any existing scrapers and plugins that are available from the community repositories are backed up and removed from the applicable `scrapers` or `plugins` directory, and reinstalled using the management UI.