Plugin Directory

Changeset 3430198


Ignore:
Timestamp:
12/31/2025 04:25:56 PM (3 months ago)
Author:
summix
Message:

Update to version 0.3.2 from GitHub

Location:
summix-getmd
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • summix-getmd/tags/0.3.2/README.txt

    r3430142 r3430198  
    55Tested up to: 6.9
    66Requires PHP: 8.0
    7 Stable tag: 0.3.1
     7Stable tag: 0.3.2
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    8585
    8686== Changelog ==
     87
     88= 0.3.2 =
     89* Fixed deprecated `load_plugin_textdomain()` call
     90* Added PHPCS linting to CI workflow
    8791
    8892= 0.3.1 =
  • summix-getmd/tags/0.3.2/admin/AdminPage.php

    r3430139 r3430198  
    413413            'settings'                   => esc_html__( 'Settings', 'summix-getmd' ),
    414414            'saveChanges'                => esc_html__( 'Save', 'summix-getmd' ),
    415             'actions'                    => esc_html__( '', 'summix-getmd' ),
     415            'actions'                    => esc_html__( 'Actions', 'summix-getmd' ),
    416416            'processing'                 => esc_html__( 'Exporting...', 'summix-getmd' ),
    417417            'completed'                  => esc_html__( 'Done', 'summix-getmd' ),
  • summix-getmd/tags/0.3.2/summix-getmd.php

    r3430142 r3430198  
    44 * Plugin URI:        https://summix.io/plugins/getmd/
    55 * Description:       Export WordPress content to clean, standardized Markdown files with advanced filtering
    6  * Version:           0.3.1
     6 * Version:           0.3.2
    77 * Requires at least: 6.8
    88 * Requires PHP:      8.0
     
    2929 * Use semantic versioning: https://semver.org/
    3030 */
    31 define( 'SUMMIX_GETMD_VERSION', '0.3.1' );
     31define( 'SUMMIX_GETMD_VERSION', '0.3.2' );
    3232
    3333/**
     
    143143 */
    144144function run_summix_getmd() {
    145     // Load plugin text domain for translations.
    146     load_plugin_textdomain(
    147         'summix-getmd',
    148         false,
    149         dirname( plugin_basename( SUMMIX_GETMD_FILE ) ) . '/languages'
    150     );
    151 
    152145    $plugin = Plugin::get_instance( SUMMIX_GETMD_VERSION, SUMMIX_GETMD_FILE );
    153146
  • summix-getmd/tags/0.3.2/vendor/composer/installed.php

    r3430142 r3430198  
    22    'root' => array(
    33        'name' => 'summix/summix-getmd',
    4         'pretty_version' => 'v0.3.1',
    5         'version' => '0.3.1.0',
    6         'reference' => '61fc50b3b33d96e2c48ca90b97ee9cfda6aef5b3',
     4        'pretty_version' => 'v0.3.2',
     5        'version' => '0.3.2.0',
     6        'reference' => 'e8d82f7b231392a3d0e7cfc3ff4e0fed7e7abb92',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    2121        ),
    2222        'summix/summix-getmd' => array(
    23             'pretty_version' => 'v0.3.1',
    24             'version' => '0.3.1.0',
    25             'reference' => '61fc50b3b33d96e2c48ca90b97ee9cfda6aef5b3',
     23            'pretty_version' => 'v0.3.2',
     24            'version' => '0.3.2.0',
     25            'reference' => 'e8d82f7b231392a3d0e7cfc3ff4e0fed7e7abb92',
    2626            'type' => 'wordpress-plugin',
    2727            'install_path' => __DIR__ . '/../../',
  • summix-getmd/trunk/README.txt

    r3430142 r3430198  
    55Tested up to: 6.9
    66Requires PHP: 8.0
    7 Stable tag: 0.3.1
     7Stable tag: 0.3.2
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    8585
    8686== Changelog ==
     87
     88= 0.3.2 =
     89* Fixed deprecated `load_plugin_textdomain()` call
     90* Added PHPCS linting to CI workflow
    8791
    8892= 0.3.1 =
  • summix-getmd/trunk/admin/AdminPage.php

    r3430139 r3430198  
    413413            'settings'                   => esc_html__( 'Settings', 'summix-getmd' ),
    414414            'saveChanges'                => esc_html__( 'Save', 'summix-getmd' ),
    415             'actions'                    => esc_html__( '', 'summix-getmd' ),
     415            'actions'                    => esc_html__( 'Actions', 'summix-getmd' ),
    416416            'processing'                 => esc_html__( 'Exporting...', 'summix-getmd' ),
    417417            'completed'                  => esc_html__( 'Done', 'summix-getmd' ),
  • summix-getmd/trunk/summix-getmd.php

    r3430142 r3430198  
    44 * Plugin URI:        https://summix.io/plugins/getmd/
    55 * Description:       Export WordPress content to clean, standardized Markdown files with advanced filtering
    6  * Version:           0.3.1
     6 * Version:           0.3.2
    77 * Requires at least: 6.8
    88 * Requires PHP:      8.0
     
    2929 * Use semantic versioning: https://semver.org/
    3030 */
    31 define( 'SUMMIX_GETMD_VERSION', '0.3.1' );
     31define( 'SUMMIX_GETMD_VERSION', '0.3.2' );
    3232
    3333/**
     
    143143 */
    144144function run_summix_getmd() {
    145     // Load plugin text domain for translations.
    146     load_plugin_textdomain(
    147         'summix-getmd',
    148         false,
    149         dirname( plugin_basename( SUMMIX_GETMD_FILE ) ) . '/languages'
    150     );
    151 
    152145    $plugin = Plugin::get_instance( SUMMIX_GETMD_VERSION, SUMMIX_GETMD_FILE );
    153146
  • summix-getmd/trunk/vendor/composer/installed.php

    r3430142 r3430198  
    22    'root' => array(
    33        'name' => 'summix/summix-getmd',
    4         'pretty_version' => 'v0.3.1',
    5         'version' => '0.3.1.0',
    6         'reference' => '61fc50b3b33d96e2c48ca90b97ee9cfda6aef5b3',
     4        'pretty_version' => 'v0.3.2',
     5        'version' => '0.3.2.0',
     6        'reference' => 'e8d82f7b231392a3d0e7cfc3ff4e0fed7e7abb92',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    2121        ),
    2222        'summix/summix-getmd' => array(
    23             'pretty_version' => 'v0.3.1',
    24             'version' => '0.3.1.0',
    25             'reference' => '61fc50b3b33d96e2c48ca90b97ee9cfda6aef5b3',
     23            'pretty_version' => 'v0.3.2',
     24            'version' => '0.3.2.0',
     25            'reference' => 'e8d82f7b231392a3d0e7cfc3ff4e0fed7e7abb92',
    2626            'type' => 'wordpress-plugin',
    2727            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.