feat: change alpha warning to beta warning

This commit is contained in:
sct
2021-04-16 09:58:58 +09:00
parent e8bbd4497a
commit 03fd21bebc
4 changed files with 6 additions and 31 deletions

View File

@@ -22,18 +22,14 @@
- Full Plex integration. Authenticate and manage user access with Plex! - Full Plex integration. Authenticate and manage user access with Plex!
- Easy integration with your existing services. Currently, Overseerr supports Sonarr and Radarr. More to come! - Easy integration with your existing services. Currently, Overseerr supports Sonarr and Radarr. More to come!
- Plex library sync, to keep track of the titles which are already available. - Plex library scan, to keep track of the titles which are already available.
- Customizable request system, which allows users to request individual seasons or movies in a friendly, easy-to-use interface. - Customizable request system, which allows users to request individual seasons or movies in a friendly, easy-to-use interface.
- Incredibly simple request management UI. Don't dig through the app to simply approve recent requests! - Incredibly simple request management UI. Don't dig through the app to simply approve recent requests!
- Granular permission system. - Granular permission system.
- Support for various notification agents. - Support for various notification agents.
- Mobile-friendly design, for when you need to approve requests on the go! - Mobile-friendly design, for when you need to approve requests on the go!
## Planned Features With more features on the way! Check out our [issue tracker](https://github.com/sct/overseerr/issues) to see the features which have already been requested.
- Additional notification types.
- Issues system. This will allow users to report issues with content on your media server.
- And a ton more! Check out our [issue tracker](https://github.com/sct/overseerr/issues) to see the features which have already been requested.
## Getting Started ## Getting Started
@@ -41,27 +37,6 @@ Check out our documentation for instructions on how to install and run Overseerr
https://docs.overseerr.dev/getting-started/installation https://docs.overseerr.dev/getting-started/installation
## Running Overseerr
Currently, Overseerr is primarily distributed as Docker images. If you have Docker installed, you can simply run Overseerr with:
```
docker run -d \
--name overseerr \
-e LOG_LEVEL=info \
-e TZ=Asia/Tokyo \
-p 5055:5055 \
-v /path/to/appdata/config:/app/config \
--restart unless-stopped \
sctx/overseerr
```
After running Overseerr for the first time, configure it by visiting the web UI at http://[address]:5055 and completing the setup steps
For more information and alternative installation methods, please see the [Overseerr documentation](https://docs.overseerr.dev/getting-started/installation).
⚠️ Overseerr is currently under very heavy, rapid development and things are likely to break often. We need all the help we can get to find bugs and get them fixed to hit a more stable release. If you would like to help test the bleeding edge, please use the `sctx/overseerr:develop` image instead! ⚠️
## Preview ## Preview
<img src="./public/preview.jpg"> <img src="./public/preview.jpg">

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 MiB

After

Width:  |  Height:  |  Size: 678 KiB

View File

@@ -8,8 +8,8 @@ import Sidebar from './Sidebar';
import UserDropdown from './UserDropdown'; import UserDropdown from './UserDropdown';
const messages = defineMessages({ const messages = defineMessages({
alphawarning: betawarning:
'This is ALPHA software. Features may be broken and/or unstable. Please report any issues on GitHub!', 'This is BETA software. Features may be broken and/or unstable. Please report any issues on GitHub!',
}); });
const Layout: React.FC = ({ children }) => { const Layout: React.FC = ({ children }) => {
@@ -102,7 +102,7 @@ const Layout: React.FC = ({ children }) => {
</div> </div>
<div className="flex-1 ml-3 md:flex md:justify-between"> <div className="flex-1 ml-3 md:flex md:justify-between">
<p className="text-sm leading-5 text-white"> <p className="text-sm leading-5 text-white">
{intl.formatMessage(messages.alphawarning)} {intl.formatMessage(messages.betawarning)}
</p> </p>
<p className="mt-3 text-sm leading-5 md:mt-0 md:ml-6"> <p className="mt-3 text-sm leading-5 md:mt-0 md:ml-6">
<a <a

View File

@@ -46,7 +46,7 @@
"components.Layout.VersionStatus.outofdate": "Out of Date", "components.Layout.VersionStatus.outofdate": "Out of Date",
"components.Layout.VersionStatus.streamdevelop": "Overseerr Develop", "components.Layout.VersionStatus.streamdevelop": "Overseerr Develop",
"components.Layout.VersionStatus.streamstable": "Overseerr Stable", "components.Layout.VersionStatus.streamstable": "Overseerr Stable",
"components.Layout.alphawarning": "This is ALPHA software. Features may be broken and/or unstable. Please report any issues on GitHub!", "components.Layout.betawarning": "This is BETA software. Features may be broken and/or unstable. Please report any issues on GitHub!",
"components.Login.email": "Email Address", "components.Login.email": "Email Address",
"components.Login.forgotpassword": "Forgot Password?", "components.Login.forgotpassword": "Forgot Password?",
"components.Login.loginerror": "Something went wrong while trying to sign in.", "components.Login.loginerror": "Something went wrong while trying to sign in.",