Plugin Directory

Changeset 3446790


Ignore:
Timestamp:
01/26/2026 02:47:57 AM (2 months ago)
Author:
kishanjasani
Message:

Update to version 1.0.0 from GitHub

Location:
coreline
Files:
2 added
2 deleted
7 edited
1 copied

Legend:

Unmodified
Added
Removed
  • coreline/assets/blueprints/blueprint.json

    r3445772 r3446790  
    11{
    2     "landingPage": "/secure-login",
     2    "landingPage": "/wp-admin/admin.php?page=coreline-settings",
    33    "features": {
    44        "networking": true
  • coreline/tags/1.0.0/coreline.php

    r3445772 r3446790  
    44 * Plugin URI: https://github.com/kishanjasani/coreline
    55 * Description: Essential hardening and cleanup for every WordPress site.
    6  * Version: 0.1.3
     6 * Version: 1.0.0
    77 * Requires at least: 5.0
    88 * Requires PHP: 7.4
     
    2727
    2828// Define plugin constants.
    29 define( 'CORELINE_VERSION', '0.1.3' );
     29define( 'CORELINE_VERSION', '1.0.0' );
    3030define( 'CORELINE_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
    3131define( 'CORELINE_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
  • coreline/tags/1.0.0/readme.txt

    r3445772 r3446790  
    11=== Coreline ===
    22Contributors: kishanjasani
    3 Tags: security, hardening, performance, login, optimization
     3Tags: security, performance, login, optimization
    44Requires at least: 5.0
    55Tested up to: 6.9
    66Requires PHP: 7.4
    7 Stable tag: 0.1.3
     7Stable tag: 1.0.0
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    7171== Screenshots ==
    7272
     731. Main settings page
     742. Custom login page with updated slug and logo
     75
    7376
    7477== Changelog ==
     78
     79= 1.0.0 =
     80* Fix: Update landing page url in blueprint.json
     81* Fix: Improve build process to exclude .wordpress-org folder from distribution
     82* Fix: Update translations
     83
     84= 0.1.3 =
     85* New: Add WordPress Playground blueprint support
     86* New: Add WordPress.org assets (banners and icons)
     87* Fix: Improve build process to exclude .wordpress-org folder from distribution
    7588
    7689= 0.1.2 =
     
    91104== Support ==
    92105
    93 For bug reports and feature requests, please visit:
    94 https://github.com/kishanjasani/coreline/issues
     106For bug reports and feature requests, please visit [GitHub Issues](https://github.com/kishanjasani/coreline/issues)
    95107
    96108== License ==
    97109
    98 This plugin is licensed under the GPLv2 or later.
    99 https://www.gnu.org/licenses/gpl-2.0.html
     110This plugin is licensed under the [GPLv2 or later](https://www.gnu.org/licenses/gpl-2.0.html).
  • coreline/tags/1.0.0/vendor/composer/installed.php

    r3445772 r3446790  
    22    'root' => array(
    33        'name' => 'kishanjasani/coreline',
    4         'pretty_version' => 'v0.1.3',
    5         'version' => '0.1.3.0',
    6         'reference' => 'd1648c0355f35992e477c1525b99abfe8ed98e9c',
     4        'pretty_version' => 'v1.0.0',
     5        'version' => '1.0.0.0',
     6        'reference' => '1e07161c283f2f731dcc730c081aa93153f0900c',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        'kishanjasani/coreline' => array(
    14             'pretty_version' => 'v0.1.3',
    15             'version' => '0.1.3.0',
    16             'reference' => 'd1648c0355f35992e477c1525b99abfe8ed98e9c',
     14            'pretty_version' => 'v1.0.0',
     15            'version' => '1.0.0.0',
     16            'reference' => '1e07161c283f2f731dcc730c081aa93153f0900c',
    1717            'type' => 'wordpress-plugin',
    1818            'install_path' => __DIR__ . '/../../',
  • coreline/trunk/coreline.php

    r3445772 r3446790  
    44 * Plugin URI: https://github.com/kishanjasani/coreline
    55 * Description: Essential hardening and cleanup for every WordPress site.
    6  * Version: 0.1.3
     6 * Version: 1.0.0
    77 * Requires at least: 5.0
    88 * Requires PHP: 7.4
     
    2727
    2828// Define plugin constants.
    29 define( 'CORELINE_VERSION', '0.1.3' );
     29define( 'CORELINE_VERSION', '1.0.0' );
    3030define( 'CORELINE_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
    3131define( 'CORELINE_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
  • coreline/trunk/readme.txt

    r3445772 r3446790  
    11=== Coreline ===
    22Contributors: kishanjasani
    3 Tags: security, hardening, performance, login, optimization
     3Tags: security, performance, login, optimization
    44Requires at least: 5.0
    55Tested up to: 6.9
    66Requires PHP: 7.4
    7 Stable tag: 0.1.3
     7Stable tag: 1.0.0
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    7171== Screenshots ==
    7272
     731. Main settings page
     742. Custom login page with updated slug and logo
     75
    7376
    7477== Changelog ==
     78
     79= 1.0.0 =
     80* Fix: Update landing page url in blueprint.json
     81* Fix: Improve build process to exclude .wordpress-org folder from distribution
     82* Fix: Update translations
     83
     84= 0.1.3 =
     85* New: Add WordPress Playground blueprint support
     86* New: Add WordPress.org assets (banners and icons)
     87* Fix: Improve build process to exclude .wordpress-org folder from distribution
    7588
    7689= 0.1.2 =
     
    91104== Support ==
    92105
    93 For bug reports and feature requests, please visit:
    94 https://github.com/kishanjasani/coreline/issues
     106For bug reports and feature requests, please visit [GitHub Issues](https://github.com/kishanjasani/coreline/issues)
    95107
    96108== License ==
    97109
    98 This plugin is licensed under the GPLv2 or later.
    99 https://www.gnu.org/licenses/gpl-2.0.html
     110This plugin is licensed under the [GPLv2 or later](https://www.gnu.org/licenses/gpl-2.0.html).
  • coreline/trunk/vendor/composer/installed.php

    r3445772 r3446790  
    22    'root' => array(
    33        'name' => 'kishanjasani/coreline',
    4         'pretty_version' => 'v0.1.3',
    5         'version' => '0.1.3.0',
    6         'reference' => 'd1648c0355f35992e477c1525b99abfe8ed98e9c',
     4        'pretty_version' => 'v1.0.0',
     5        'version' => '1.0.0.0',
     6        'reference' => '1e07161c283f2f731dcc730c081aa93153f0900c',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        'kishanjasani/coreline' => array(
    14             'pretty_version' => 'v0.1.3',
    15             'version' => '0.1.3.0',
    16             'reference' => 'd1648c0355f35992e477c1525b99abfe8ed98e9c',
     14            'pretty_version' => 'v1.0.0',
     15            'version' => '1.0.0.0',
     16            'reference' => '1e07161c283f2f731dcc730c081aa93153f0900c',
    1717            'type' => 'wordpress-plugin',
    1818            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.