Remove `version` part from filename of install scripts
authorTim Düsterhus <duesterhus@woltlab.com>
Tue, 16 Nov 2021 10:01:24 +0000 (11:01 +0100)
committerTim Düsterhus <duesterhus@woltlab.com>
Tue, 16 Nov 2021 10:01:24 +0000 (11:01 +0100)
docs/package/pip/database.md
docs/package/pip/script.md

index f2fa132bba309516cf5359397f3b7b76d170e7fa..57aecdbc9e03d7630b13c69e210199832bc7efc0 100644 (file)
@@ -25,7 +25,7 @@ The `database`-PIP expects a relative path to a `.php` file that returns an arra
 The PHP script is deployed by using the [file package installation plugin](file.md).
 To prevent it from colliding with other install script (remember: You cannot overwrite files created by another plugin), we highly recommend to make use of these naming conventions:
 
-- Installation: `acp/database/install_<package>_<version>.php` (example: `acp/database/install_com.woltlab.wbb_5.4.0.php`)
+- Installation: `acp/database/install_<package>.php` (example: `acp/database/install_com.woltlab.wbb.php`)
 - Update: `acp/database/update_<package>_<targetVersion>.php` (example: `acp/database/update_com.woltlab.wbb_5.4.1.php`)
 
 `<targetVersion>` equals the version number of the current package being installed.
index 464dbd01c8771848d226376889fca1d705a908d5..85ea10fda18c11e60fddf429a8de2d2e3bf939c0 100644 (file)
@@ -23,7 +23,7 @@ The `script`-PIP expects a relative path to a `.php` file.
 The PHP script is deployed by using the [file package installation plugin](file.md).
 To prevent it from colliding with other install script (remember: You cannot overwrite files created by another plugin), we highly recommend to make use of these naming conventions:
 
-- Installation: `install_<package>_<version>.php` (example: `install_com.woltlab.wbb_5.0.0.php`)
+- Installation: `install_<package>.php` (example: `install_com.woltlab.wbb.php`)
 - Update: `update_<package>_<targetVersion>.php` (example: `update_com.woltlab.wbb_5.0.0_pl_1.php`)
 
 `<targetVersion>` equals the version number of the current package being installed.