Update 0.2.1.md

This commit is contained in:
Stefan Pejcic 2024-06-19 22:07:20 +02:00 committed by GitHub
parent f6838ee947
commit 4d9e2f6341
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -23,7 +23,7 @@ Not yet released.
### 💥 Breaking changes
- All OpenPanel configuration files are now stored in `/etc/openpanel` - this directory is not modified on updates.
- OpenPanel service is now run inside `openpanel` docker container.
- Translations are now stored in `/etc/openpanel/openpanel/translations/` directory.
- [Translations are now stored in `/etc/openpanel/openpanel/translations/` directory](#translations).
### 🐛 Bug fixes
- Excluded `/send_email` route on OpenAdmin from terms check.
@ -152,6 +152,27 @@ Due to the higher number of extensions, we are also changing the install method
OpenPanel users can now access their PHPMyAdmin instances using https://their-domain/com`/phpmyadmin`. Auto-login from OpenPanel is still available, but if accessed via *https://their-domain/com/phpmyadmin/* then they can login as any mysql user and access the databases that user has access. This allows users to securely share limited phpmyadmin access with third parties.
### Translations
Starting version 0.2.1 the path for OpenPanel translations is changed from `/usr/local/panel/translations/` to `/etc/openpanel/openpanel/translations/`. This will ensure that translation files are not modified during OpenPanel updates, ensuring that you never lose your local changes.
We have also created a script to help you easily install any locale(s):
Installing single locale:
```bash
bash <(curl -sSL https://raw.githubusercontent.com/stefanpejcic/openpanel-translations/main/install.sh) sr-sr
```
Installing multiple locales at once:
```bash
bash <(curl -sSL https://raw.githubusercontent.com/stefanpejcic/openpanel-translations/main/install.sh) sr-sr tr-tr
```
List all available locales:
```bash
bash <(curl -sSL https://raw.githubusercontent.com/stefanpejcic/openpanel-translations/main/install.sh)
```
### Firewall Settings