diff --git a/README.md b/README.md
index 216c1923d..2fa703585 100644
--- a/README.md
+++ b/README.md
@@ -22,18 +22,14 @@
- 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!
-- 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.
- Incredibly simple request management UI. Don't dig through the app to simply approve recent requests!
- Granular permission system.
- Support for various notification agents.
- Mobile-friendly design, for when you need to approve requests on the go!
-## Planned Features
-
-- 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.
+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.
## 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
-## 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
diff --git a/public/preview.jpg b/public/preview.jpg
index 8abdaa1ef..946ef07a9 100644
Binary files a/public/preview.jpg and b/public/preview.jpg differ
diff --git a/src/components/Layout/index.tsx b/src/components/Layout/index.tsx
index 330f7b3a6..18519734b 100644
--- a/src/components/Layout/index.tsx
+++ b/src/components/Layout/index.tsx
@@ -8,8 +8,8 @@ import Sidebar from './Sidebar';
import UserDropdown from './UserDropdown';
const messages = defineMessages({
- alphawarning:
- 'This is ALPHA software. Features may be broken and/or unstable. Please report any issues on GitHub!',
+ betawarning:
+ 'This is BETA software. Features may be broken and/or unstable. Please report any issues on GitHub!',
});
const Layout: React.FC = ({ children }) => {
@@ -102,7 +102,7 @@ const Layout: React.FC = ({ children }) => {