Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Addons: remove "beta" framing around addons #11493

Merged
merged 1 commit into from
Jul 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/user/addons.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ All projects using ``mkdocs`` :ref:`mkdocs <config-file/v2:mkdocs>` or the ``bui
* `Business <https://app.readthedocs.com>`_

#. Click on a project name.
#. Go to :guilabel:`Settings`, then in the left bar, go to :guilabel:`Addons (Beta)`.
#. Go to :guilabel:`Settings`, then in the left bar, go to :guilabel:`Addons`.
#. Check :guilabel:`Enable Addons`, and then configure each Addon individually.

.. note::
Expand All @@ -53,5 +53,5 @@ Individual configuration options for each addon are available in :guilabel:`Sett
* `Business <https://app.readthedocs.com>`_

#. Click on a project name.
#. Go to :guilabel:`Settings`, then in the left bar, go to :guilabel:`Addons (Beta)`.
#. Go to :guilabel:`Settings`, then in the left bar, go to :guilabel:`Addons`.
#. Configure each Addon individually.
2 changes: 1 addition & 1 deletion docs/user/build-customization.rst
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ Override the build process

We are using :ref:`our new addons integration <rtd-blog:addons-flyout-menu-beta>`
on projects using ``build.commands``.
This will become the default soon,
`This will become the default soon <https://about.readthedocs.com/blog/2024/07/addons-by-default/>`_,
but has some slight differences from our previous flyout.

If your project requires full control of the build process,
Expand Down
2 changes: 1 addition & 1 deletion docs/user/config-file/v2.rst
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ The ``$READTHEDOCS_OUTPUT/html`` directory will be uploaded and hosted by Read t

We are using :ref:`our new addons integration <rtd-blog:addons-flyout-menu-beta>`
on projects using ``build.commands``.
This will become the default soon,
`This will become the default soon <https://about.readthedocs.com/blog/2024/07/addons-by-default/>`_,
but has some slight differences from our previous flyout.

.. code-block:: yaml
Expand Down
2 changes: 1 addition & 1 deletion docs/user/flyout-menu.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ offline formats, and a search bar.
Customizing the flyout menu
~~~~~~~~~~~~~~~~~~~~~~~~~~~

In your dashboard, you can configure flyout menu options in :guilabel:`Settings`, under :guilabel:`Addons (Beta)`.
In your dashboard, you can configure flyout menu options in :guilabel:`Settings`, under :guilabel:`Addons`.

Sort your versions :guilabel:`Alphabetically`, by :guilabel:`SemVer`, by :guilabel:`Python Packaging`,
by :guilabel:`CalVer`, or define your own pattern.
Expand Down
2 changes: 1 addition & 1 deletion readthedocs/projects/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,7 @@ def __init__(self, *args, **kwargs):

class AddonsConfigForm(forms.ModelForm):

"""Form to opt-in into new beta addons."""
"""Form to opt-in into new addons."""

project = forms.CharField(widget=forms.HiddenInput(), required=False)

Expand Down
2 changes: 1 addition & 1 deletion readthedocs/projects/urls/private.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@

urlpatterns += domain_urls

# We are allowing users to enable the new beta addons only from the new dashboard
# We are allowing users to enable the new addons only from the new dashboard
if settings.RTD_EXT_THEME_ENABLED:
addons_urls = [
re_path(
Expand Down
Loading