Changeset 3341671
- Timestamp:
- 08/08/2025 01:31:36 PM (8 months ago)
- Location:
- multisyde
- Files:
-
- 10 edited
- 1 copied
-
tags/1.1.1 (copied) (copied from multisyde/trunk)
-
tags/1.1.1/CONTRIBUTING.md (modified) (1 diff)
-
tags/1.1.1/composer.json (modified) (1 diff)
-
tags/1.1.1/multisyde.php (modified) (2 diffs)
-
tags/1.1.1/readme.txt (modified) (3 diffs)
-
tags/1.1.1/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/CONTRIBUTING.md (modified) (1 diff)
-
trunk/composer.json (modified) (1 diff)
-
trunk/multisyde.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
multisyde/tags/1.1.1/CONTRIBUTING.md
r3316891 r3341671 73 73 4. Run code quality tools before submitting: 74 74 ```bash 75 composer run lint 76 composer run phpstan 75 composer run qa 77 76 ``` 78 77 5. Push your branch and open a pull request against the main branch. -
multisyde/tags/1.1.1/composer.json
r3340116 r3341671 49 49 }, 50 50 "scripts": { 51 "tests:unit": "./vendor/bin/phpunit -c ./phpunit.xml.dist", 52 "tests:integration": "./vendor/bin/phpunit -c ./integration.xml.dist", 53 "tests": [ 54 "@tests:unit", 55 "@tests:integration" 56 ], 57 "coverage": "XDEBUG_MODE=coverage ./vendor/bin/phpunit -c ./phpunit.xml.dist --coverage-html ./tests/coverage", 51 "tests": "./vendor/bin/phpunit -c ./phpunit.xml.dist", 52 "tests:coverage": "XDEBUG_MODE=coverage ./vendor/bin/phpunit -c ./phpunit.xml.dist --coverage-html ./tests/coverage", 58 53 "cs": "./vendor/bin/phpcs .", 59 54 "cs:fix": "./vendor/bin/phpcbf .", -
multisyde/tags/1.1.1/multisyde.php
r3340116 r3341671 4 4 * Plugin URI: https://github.com/inpsyde/multisyde 5 5 * Description: A WordPress plugin that explores potential improvements for WordPress Multisite. 6 * Version: 1.1. 06 * Version: 1.1.1 7 7 * Requires at least: 6.8 8 8 * Requires PHP: 7.4 … … 13 13 * Text Domain: multisyde 14 14 * Domain Path: /languages/ 15 * Network: true 15 16 * 16 17 * @package multisyde -
multisyde/tags/1.1.1/readme.txt
r3340116 r3341671 6 6 Tested up to: 6.8 7 7 Requires PHP: 7.4 8 Stable tag: 1.1. 08 Stable tag: 1.1.1 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 22 22 == Features == 23 23 24 **Site Active Plugins** - See which plugins are active on each site, with bulk deactivation across subsites (addresses Trac [#53255](https://core.trac.wordpress.org/ticket/53255/ "WordPress Trac Ticket #53255"))25 26 24 **Enhanced Site Retrieval** - New `get_site_by()` utility function for easier site lookups by ID, slug, domain, path, or URL (addresses Trac [#40180](https://core.trac.wordpress.org/ticket/40180/ "WordPress Trac Ticket #40180")) 27 25 28 26 **Last User Login Tracking** - Adds "Last Login" column to Network Admin Users screen with automatic timestamp recording (addresses MultiSyde GitHub issue [#11](https://github.com/inpsyde/multisyde/issues/11/ "MultiSyde GitHub Issue #11")) 27 28 **Site Active Plugins** - See which plugins are active on each site, with bulk deactivation across subsites (addresses Trac [#53255](https://core.trac.wordpress.org/ticket/53255/ "WordPress Trac Ticket #53255")) 29 30 **Site Active Theme** - Displays the active theme for each site in the Network Admin dashboard, making it easier to manage themes across the network (addresses Trac [#56458](https://core.trac.wordpress.org/ticket/56458/ "WordPress Trac Ticket #56458")) 29 31 30 32 The feature set continues to expand based on community contributions and real-world needs. … … 135 137 == Changelog == 136 138 139 = 1.1.1 = 140 * MultiSyde is now network-wide activatable only. 141 137 142 = 1.1.0 = 138 143 * Enhancement: Added [Site Active Theme](https://github.com/inpsyde/multisyde/blob/main/modules/SiteActiveTheme/README.md) in site management dashboard. -
multisyde/tags/1.1.1/vendor/composer/installed.php
r3340116 r3341671 2 2 'root' => array( 3 3 'name' => 'syde/multisyde', 4 'pretty_version' => '1.1. 0',5 'version' => '1.1. 0.0',6 'reference' => ' 8caa89b99c15be95ecee7f492f1efe4a44c2d55e',4 'pretty_version' => '1.1.1', 5 'version' => '1.1.1.0', 6 'reference' => '4051ce9c9ad5e1e438c9c4d38ae0a96fb1b4b845', 7 7 'type' => 'project', 8 8 'install_path' => __DIR__ . '/../../', … … 12 12 'versions' => array( 13 13 'syde/multisyde' => array( 14 'pretty_version' => '1.1. 0',15 'version' => '1.1. 0.0',16 'reference' => ' 8caa89b99c15be95ecee7f492f1efe4a44c2d55e',14 'pretty_version' => '1.1.1', 15 'version' => '1.1.1.0', 16 'reference' => '4051ce9c9ad5e1e438c9c4d38ae0a96fb1b4b845', 17 17 'type' => 'project', 18 18 'install_path' => __DIR__ . '/../../', -
multisyde/trunk/CONTRIBUTING.md
r3316891 r3341671 73 73 4. Run code quality tools before submitting: 74 74 ```bash 75 composer run lint 76 composer run phpstan 75 composer run qa 77 76 ``` 78 77 5. Push your branch and open a pull request against the main branch. -
multisyde/trunk/composer.json
r3340116 r3341671 49 49 }, 50 50 "scripts": { 51 "tests:unit": "./vendor/bin/phpunit -c ./phpunit.xml.dist", 52 "tests:integration": "./vendor/bin/phpunit -c ./integration.xml.dist", 53 "tests": [ 54 "@tests:unit", 55 "@tests:integration" 56 ], 57 "coverage": "XDEBUG_MODE=coverage ./vendor/bin/phpunit -c ./phpunit.xml.dist --coverage-html ./tests/coverage", 51 "tests": "./vendor/bin/phpunit -c ./phpunit.xml.dist", 52 "tests:coverage": "XDEBUG_MODE=coverage ./vendor/bin/phpunit -c ./phpunit.xml.dist --coverage-html ./tests/coverage", 58 53 "cs": "./vendor/bin/phpcs .", 59 54 "cs:fix": "./vendor/bin/phpcbf .", -
multisyde/trunk/multisyde.php
r3340116 r3341671 4 4 * Plugin URI: https://github.com/inpsyde/multisyde 5 5 * Description: A WordPress plugin that explores potential improvements for WordPress Multisite. 6 * Version: 1.1. 06 * Version: 1.1.1 7 7 * Requires at least: 6.8 8 8 * Requires PHP: 7.4 … … 13 13 * Text Domain: multisyde 14 14 * Domain Path: /languages/ 15 * Network: true 15 16 * 16 17 * @package multisyde -
multisyde/trunk/readme.txt
r3340116 r3341671 6 6 Tested up to: 6.8 7 7 Requires PHP: 7.4 8 Stable tag: 1.1. 08 Stable tag: 1.1.1 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 22 22 == Features == 23 23 24 **Site Active Plugins** - See which plugins are active on each site, with bulk deactivation across subsites (addresses Trac [#53255](https://core.trac.wordpress.org/ticket/53255/ "WordPress Trac Ticket #53255"))25 26 24 **Enhanced Site Retrieval** - New `get_site_by()` utility function for easier site lookups by ID, slug, domain, path, or URL (addresses Trac [#40180](https://core.trac.wordpress.org/ticket/40180/ "WordPress Trac Ticket #40180")) 27 25 28 26 **Last User Login Tracking** - Adds "Last Login" column to Network Admin Users screen with automatic timestamp recording (addresses MultiSyde GitHub issue [#11](https://github.com/inpsyde/multisyde/issues/11/ "MultiSyde GitHub Issue #11")) 27 28 **Site Active Plugins** - See which plugins are active on each site, with bulk deactivation across subsites (addresses Trac [#53255](https://core.trac.wordpress.org/ticket/53255/ "WordPress Trac Ticket #53255")) 29 30 **Site Active Theme** - Displays the active theme for each site in the Network Admin dashboard, making it easier to manage themes across the network (addresses Trac [#56458](https://core.trac.wordpress.org/ticket/56458/ "WordPress Trac Ticket #56458")) 29 31 30 32 The feature set continues to expand based on community contributions and real-world needs. … … 135 137 == Changelog == 136 138 139 = 1.1.1 = 140 * MultiSyde is now network-wide activatable only. 141 137 142 = 1.1.0 = 138 143 * Enhancement: Added [Site Active Theme](https://github.com/inpsyde/multisyde/blob/main/modules/SiteActiveTheme/README.md) in site management dashboard. -
multisyde/trunk/vendor/composer/installed.php
r3340116 r3341671 2 2 'root' => array( 3 3 'name' => 'syde/multisyde', 4 'pretty_version' => '1.1. 0',5 'version' => '1.1. 0.0',6 'reference' => ' 8caa89b99c15be95ecee7f492f1efe4a44c2d55e',4 'pretty_version' => '1.1.1', 5 'version' => '1.1.1.0', 6 'reference' => '4051ce9c9ad5e1e438c9c4d38ae0a96fb1b4b845', 7 7 'type' => 'project', 8 8 'install_path' => __DIR__ . '/../../', … … 12 12 'versions' => array( 13 13 'syde/multisyde' => array( 14 'pretty_version' => '1.1. 0',15 'version' => '1.1. 0.0',16 'reference' => ' 8caa89b99c15be95ecee7f492f1efe4a44c2d55e',14 'pretty_version' => '1.1.1', 15 'version' => '1.1.1.0', 16 'reference' => '4051ce9c9ad5e1e438c9c4d38ae0a96fb1b4b845', 17 17 'type' => 'project', 18 18 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.