diff --git a/README.md b/README.md index e7f675ef..442fc01b 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ RaSCSI Reloaded is using the . (for the first release of the month). Hot fixes, if necessary, will be released as ... For example, the first release in January 2021 will be release "21.01". If a hot-fix is needed for this release, the first hotfix will be "21.01.1". +- A tag will be created for each "release". The releases will be named .. where the release number is incremented for each subsequent release tagged in the same calendar month. The first release of the month of January 2021 is called "21.01.01", the second one in the same month "21.01.02 and so on. Typically, releases will only be planned every few months. diff --git a/easyinstall.sh b/easyinstall.sh index 350ef59c..da4bab1b 100755 --- a/easyinstall.sh +++ b/easyinstall.sh @@ -1065,6 +1065,7 @@ function runChoice() { echo "- Modify user groups and permissions" echo "- Install binaries to /usr/local/bin" echo "- Install manpages to /usr/local/man" + echo "- Create a self-signed certificate in /etc/ssl" sudoCheck configureTokenAuth stopOldWebInterface @@ -1213,6 +1214,7 @@ function runChoice() { echo "- Modify and enable Apache2 and Nginx web service" echo "- Create directories and change permissions" echo "- Modify user groups and permissions" + echo "- Create a self-signed certificate in /etc/ssl" sudoCheck updateRaScsiGit createCfgDir diff --git a/python/web/README.md b/python/web/README.md index 5be61e1e..641bc2f6 100644 --- a/python/web/README.md +++ b/python/web/README.md @@ -55,7 +55,7 @@ To create a new localization, it needs to be added to the LANGAUGES constant in web/settings.py. To localize messages coming from the RaSCSI backend, update also code in raspberrypi/localizer.cpp in the RaSCSI C++ code. -Once this is done, it is time to localize the Python code. The below steps are derived from the [Flask-Babel documentation](https://flask-babel.tkte.ch/#translating-applications). +Once this is done, it is time to localize the Python code. The below steps are derived from the [Flask-Babel documentation](https://python-babel.github.io/flask-babel/index.html#translating-applications). First, generate the raw messages.pot file containing extracted strings. @@ -68,7 +68,7 @@ $ pybabel extract -F babel.cfg -o messages.pot . When adding a localization for a new language, initialize the directory structure. Replace 'xx' with the two character code for the language. ``` -$ pybabel init -i messages.pot -d translations -l xx +$ pybabel init -i messages.pot -d src/translations -l xx ``` ### Update an existing loclization