Commit 6462ab5b authored by Felip Manyer i Ballester's avatar Felip Manyer i Ballester Committed by Jennifer Hodgdon
Browse files

Issue #3170449 by FMB: Update version references to core/modules/themes in User Guide

parent 1758d888
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -71,7 +71,7 @@ link address for the _tar.gz_ file from your browser, and use this command to
download the file (substituting the copied URL):
+
----
wget https://ftp.drupal.org/files/projects/admin_toolbar-8.x-1.26.tar.gz
wget https://ftp.drupal.org/files/projects/admin_toolbar-8.x-2.4.tar.gz
----


@@ -114,7 +114,7 @@ extract the files. If you have terminal access to your hosting server
(running Linux) and you are using a tar.gz file, you can use a command like:
+
----
tar -xzf admin_toolbar-8.x-1.17.tar.gz
tar -xzf admin_toolbar-8.x-2.4.tar.gz
----

. Delete the compressed file from the server, unless your unpacking method
+1 −1
Original line number Diff line number Diff line
@@ -36,7 +36,7 @@ Fill in the fields as shown below.
|Maintenance status |How actively should the module be maintained? | Actively maintained
|Development status |What kind of development should the module undergo?| Any
|Module categories |The module's topic area.|Administration
|Core compatibility |The version of the core software the module is compatible with.|8.x
|Core compatibility |The version of the core software the module is compatible with.|9.x
|Status |Project status: _Sandbox projects_ are experimental projects. _Full projects_ have
 already gone through an approval process, but they can still be in development. |Full projects
|Stability | Whether or not the project maintainer has created a production-ready version.
+1 −1
Original line number Diff line number Diff line
@@ -84,7 +84,7 @@ image:images/extend-module-install-admin-toolbar-do.png["Installing a module fro

. In the field _Install from a URL_, paste the copied download link. This value
could look like this:
_https://ftp.drupal.org/files/projects/admin_toolbar-8.x-1.14.tar.gz_
_https://ftp.drupal.org/files/projects/admin_toolbar-8.x-2.4.tar.gz_

. Click _Install_ to upload and unpack the new module on the server. The files
are being downloaded to the _modules_ directory.
+1 −1
Original line number Diff line number Diff line
@@ -41,7 +41,7 @@ For example, you might use these filters:
 select _Under active development_, you can expect new features to be added, and
 some aspects may still change. If you select _Maintenance fixes only_, it means
 that the theme is considered complete. |Any
|Core compatibility |The Drupal version the theme is compatible with.|8.x
|Core compatibility |The Drupal version the theme is compatible with.|9.x
|Status |_Sandbox projects_ are experimental projects. _Full projects_ have already
 gone through an approval process, but they can still be in development.|Full projects
|Stability | Whether or not the project maintainer has created a production-ready
+5 −5
Original line number Diff line number Diff line
@@ -96,7 +96,7 @@ See below for more on managing site dependencies with Composer.
To convert a site that was created using a version of the core software prior to
8.8.0, or that was installed from a zip or tar.gz file downloaded from
Drupal.org, see the instructions at
https://www.drupal.org/docs/8/install/add-composer-to-an-existing-site[Add Composer to an existing site].
https://www.drupal.org/docs/installing-drupal/add-composer-to-an-existing-site[Add Composer to an existing site].

===== Using Composer to download a module or theme

@@ -137,14 +137,14 @@ composer update drupal/geofield --with-dependencies
----

. If you need a specific version, determine how to enter the version number you
want to update to. For example, for version 8.x-1.7 of a contributed module, you
would enter just the 1.7, and for the core software version 8.3.1, you would
enter 8.3.1. Then enter the following command at the root of your site
want to update to. For example, for version 8.x-1.16 of a contributed module, you
would enter just the 1.16, and for the core software version 9.0.7, you would
enter 9.0.7. Then enter the following command at the root of your site
(substituting the short name of the project for +geofield+ and the correct
version number):
+
----
composer require drupal/geofield:1.7
composer require drupal/geofield:1.16
----

==== Expand your understanding
Loading