diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ddf356..cc2a510 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ Every user-facing change should have an entry in this changelog. Please respect ## Unreleased +- 💥[Improvement] The Richie plugin was transferred to the Openfun organization; thus, it is no longer officially supported and it is removed from the default set of plugins that ships with `pip install tutor[full]` or the Tutor pre-compiled binary. Users are encouraged to uninstall the `tutor-richie` Python package and install the `tutor-contrib-richie` package instead. - [Feature] Upgrade edx-platform i18n strings to nutmeg.2 (by @regisb). ## v14.0.5 (2022-08-29) diff --git a/Makefile b/Makefile index 63016ee..b0d5953 100644 --- a/Makefile +++ b/Makefile @@ -117,7 +117,7 @@ ci-test-bundle: ## Run basic tests on bundle yes "" | ./dist/tutor config save --interactive ./dist/tutor config save ./dist/tutor plugins list - ./dist/tutor plugins enable android discovery ecommerce forum license mfe minio notes richie webui xqueue + ./dist/tutor plugins enable android discovery ecommerce forum license mfe minio notes webui xqueue ./dist/tutor plugins list ./dist/tutor license --help diff --git a/docs/local.rst b/docs/local.rst index 36e7d4f..590692f 100644 --- a/docs/local.rst +++ b/docs/local.rst @@ -43,7 +43,7 @@ Configuration tutor config save --interactive -This is the only non-automatic step in the installation process. You will be asked various questions about your Open edX platform and appropriate configuration files will be generated. If you would like to automate this step then you should run ``tutor config save --interactive`` once. After that, there will be a ``config.yml`` file at the root of the project folder: this file contains all the configuration values for your platform, such as randomly generated passwords, domain names, etc. +This is the only non-automatic step in the installation process. You will be asked various questions about your Open edX platform and appropriate configuration files will be generated. If you would like to automate this step then you should run ``tutor config save --interactive`` once. This will generate a ``config.yml`` file in the **project root**. This file contains all the configuration values for your platform, such as randomly generated passwords, domain names, etc. The location of the **project root** can be found by running ``tutor config printroot``. See :ref:`section above `. If you want to run a fully automated installation, upload the ``config.yml`` file to wherever you want to run Open edX. You can then entirely skip the configuration step. diff --git a/docs/tutorials/arm64.rst b/docs/tutorials/arm64.rst index b5b3099..aa172c6 100644 --- a/docs/tutorials/arm64.rst +++ b/docs/tutorials/arm64.rst @@ -54,8 +54,3 @@ Or for a development environment:: tutor dev start -d tutor dev init - -Using with tutor-mfe --------------------- - -You may wish to use `tutor-mfe `_ to run the Open edX microfrontends. If so, be aware that there is a known issue with ``tutor-mfe`` on ARM systems. See `this GitHub issue `_ for details and known workarounds. diff --git a/requirements/plugins.txt b/requirements/plugins.txt index 5209ac3..2f6f675 100644 --- a/requirements/plugins.txt +++ b/requirements/plugins.txt @@ -8,7 +8,6 @@ tutor-license tutor-mfe @ git+https://github.com/overhangio/tutor-mfe@nightly tutor-minio @ git+https://github.com/overhangio/tutor-minio@nightly tutor-notes @ git+https://github.com/overhangio/tutor-notes@nightly -tutor-richie @ git+https://github.com/overhangio/tutor-richie@nightly tutor-webui @ git+https://github.com/overhangio/tutor-webui@nightly tutor-xqueue @ git+https://github.com/overhangio/tutor-xqueue@nightly diff --git a/tutor/plugins/v0.py b/tutor/plugins/v0.py index cc323de..fe9fc74 100644 --- a/tutor/plugins/v0.py +++ b/tutor/plugins/v0.py @@ -281,7 +281,6 @@ class OfficialPlugin(BasePlugin): "mfe", "minio", "notes", - "richie", "webui", "xqueue", ]