Plugin Directory

Changeset 3341671


Ignore:
Timestamp:
08/08/2025 01:31:36 PM (8 months ago)
Author:
realloc
Message:

Update to version 1.1.1 from GitHub

Location:
multisyde
Files:
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • multisyde/tags/1.1.1/CONTRIBUTING.md

    r3316891 r3341671  
    73734. Run code quality tools before submitting:
    7474    ```bash
    75     composer run lint
    76     composer run phpstan
     75    composer run qa
    7776   ```
    78775. Push your branch and open a pull request against the main branch.
  • multisyde/tags/1.1.1/composer.json

    r3340116 r3341671  
    4949    },
    5050    "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",
    5853        "cs": "./vendor/bin/phpcs .",
    5954        "cs:fix": "./vendor/bin/phpcbf .",
  • multisyde/tags/1.1.1/multisyde.php

    r3340116 r3341671  
    44 * Plugin URI:        https://github.com/inpsyde/multisyde
    55 * Description:       A WordPress plugin that explores potential improvements for WordPress Multisite.
    6  * Version:           1.1.0
     6 * Version:           1.1.1
    77 * Requires at least: 6.8
    88 * Requires PHP:      7.4
     
    1313 * Text Domain:       multisyde
    1414 * Domain Path:       /languages/
     15 * Network:           true
    1516 *
    1617 * @package multisyde
  • multisyde/tags/1.1.1/readme.txt

    r3340116 r3341671  
    66Tested up to: 6.8
    77Requires PHP: 7.4
    8 Stable tag: 1.1.0
     8Stable tag: 1.1.1
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2222== Features ==
    2323
    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 
    2624**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"))
    2725
    2826**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"))
    2931
    3032The feature set continues to expand based on community contributions and real-world needs.
     
    135137== Changelog ==
    136138
     139= 1.1.1 =
     140* MultiSyde is now network-wide activatable only.
     141
    137142= 1.1.0 =
    138143* 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  
    22    'root' => array(
    33        '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',
    77        'type' => 'project',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        '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',
    1717            'type' => 'project',
    1818            'install_path' => __DIR__ . '/../../',
  • multisyde/trunk/CONTRIBUTING.md

    r3316891 r3341671  
    73734. Run code quality tools before submitting:
    7474    ```bash
    75     composer run lint
    76     composer run phpstan
     75    composer run qa
    7776   ```
    78775. Push your branch and open a pull request against the main branch.
  • multisyde/trunk/composer.json

    r3340116 r3341671  
    4949    },
    5050    "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",
    5853        "cs": "./vendor/bin/phpcs .",
    5954        "cs:fix": "./vendor/bin/phpcbf .",
  • multisyde/trunk/multisyde.php

    r3340116 r3341671  
    44 * Plugin URI:        https://github.com/inpsyde/multisyde
    55 * Description:       A WordPress plugin that explores potential improvements for WordPress Multisite.
    6  * Version:           1.1.0
     6 * Version:           1.1.1
    77 * Requires at least: 6.8
    88 * Requires PHP:      7.4
     
    1313 * Text Domain:       multisyde
    1414 * Domain Path:       /languages/
     15 * Network:           true
    1516 *
    1617 * @package multisyde
  • multisyde/trunk/readme.txt

    r3340116 r3341671  
    66Tested up to: 6.8
    77Requires PHP: 7.4
    8 Stable tag: 1.1.0
     8Stable tag: 1.1.1
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2222== Features ==
    2323
    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 
    2624**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"))
    2725
    2826**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"))
    2931
    3032The feature set continues to expand based on community contributions and real-world needs.
     
    135137== Changelog ==
    136138
     139= 1.1.1 =
     140* MultiSyde is now network-wide activatable only.
     141
    137142= 1.1.0 =
    138143* 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  
    22    'root' => array(
    33        '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',
    77        'type' => 'project',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        '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',
    1717            'type' => 'project',
    1818            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.