Plugin Directory

Changeset 3214305


Ignore:
Timestamp:
12/29/2024 03:30:44 AM (15 months ago)
Author:
danielpost
Message:

Update to version 0.0.2 from GitHub

Location:
autoblue
Files:
2 added
2 deleted
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • autoblue/tags/0.0.2/autoblue.php

    r3211894 r3214305  
    88 * License: GPLv2 or later
    99 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
    10  * Version: 0.0.1
     10 * Version: 0.0.2
    1111 * Text Domain: autoblue
    1212 * Requires at least: 6.6
     
    2121require_once __DIR__ . '/vendor/autoload.php';
    2222
    23 define( 'AUTOBLUE_VERSION', '0.0.1' );
     23define( 'AUTOBLUE_VERSION', '0.0.2' );
    2424define( 'AUTOBLUE_SLUG', 'autoblue' );
    2525define( 'AUTOBLUE_BASENAME', plugin_basename( __FILE__ ) );
  • autoblue/tags/0.0.2/includes/Admin.php

    r3211894 r3214305  
    110110            ],
    111111        );
     112
     113        register_setting(
     114            'autoblue',
     115            'autoblue_db_version',
     116            [
     117                'type'              => 'string',
     118                'description'       => __( 'The current database version.', 'autoblue' ),
     119                'show_in_rest'      => true,
     120                'default'           => '0',
     121                'sanitize_callback' => 'sanitize_text_field',
     122            ],
     123        );
    112124    }
    113125}
  • autoblue/tags/0.0.2/includes/Logging/Setup.php

    r3211894 r3214305  
    44
    55class Setup {
    6     private const DB_VERSION = '20241202';
     6    private const DB_VERSION = '20241202'; // YYYYMMDD
    77
    88    public function register_hooks(): void {
  • autoblue/tags/0.0.2/readme.txt

    r3211901 r3214305  
    22Contributors: danielpost
    33Tags: social, bluesky, auto, share, post
    4 Stable tag: 0.0.1
     4Stable tag: 0.0.2
    55Requires at least: 6.6
    66Tested up to: 6.7
     
    4646== Changelog ==
    4747
     48= 0.0.2 =
     49* Delete Autoblue data when the plugin is uninstalled.
     50
    4851= 0.0.1 =
    4952* Initial release.
  • autoblue/tags/0.0.2/vendor/composer/installed.php

    r3211894 r3214305  
    22    'root' => array(
    33        'name' => 'posty/autoblue',
    4         'pretty_version' => '0.0.1',
    5         'version' => '0.0.1.0',
    6         'reference' => 'e6f02bb8e5e0902405ebabc5f9b563da411eda35',
     4        'pretty_version' => '0.0.2',
     5        'version' => '0.0.2.0',
     6        'reference' => 'b89e4c997db3d6c945964c64b3a2dca73275c91f',
    77        'type' => 'project',
    88        'install_path' => __DIR__ . '/../../',
     
    2121        ),
    2222        'posty/autoblue' => array(
    23             'pretty_version' => '0.0.1',
    24             'version' => '0.0.1.0',
    25             'reference' => 'e6f02bb8e5e0902405ebabc5f9b563da411eda35',
     23            'pretty_version' => '0.0.2',
     24            'version' => '0.0.2.0',
     25            'reference' => 'b89e4c997db3d6c945964c64b3a2dca73275c91f',
    2626            'type' => 'project',
    2727            'install_path' => __DIR__ . '/../../',
  • autoblue/trunk/autoblue.php

    r3211894 r3214305  
    88 * License: GPLv2 or later
    99 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
    10  * Version: 0.0.1
     10 * Version: 0.0.2
    1111 * Text Domain: autoblue
    1212 * Requires at least: 6.6
     
    2121require_once __DIR__ . '/vendor/autoload.php';
    2222
    23 define( 'AUTOBLUE_VERSION', '0.0.1' );
     23define( 'AUTOBLUE_VERSION', '0.0.2' );
    2424define( 'AUTOBLUE_SLUG', 'autoblue' );
    2525define( 'AUTOBLUE_BASENAME', plugin_basename( __FILE__ ) );
  • autoblue/trunk/includes/Admin.php

    r3211894 r3214305  
    110110            ],
    111111        );
     112
     113        register_setting(
     114            'autoblue',
     115            'autoblue_db_version',
     116            [
     117                'type'              => 'string',
     118                'description'       => __( 'The current database version.', 'autoblue' ),
     119                'show_in_rest'      => true,
     120                'default'           => '0',
     121                'sanitize_callback' => 'sanitize_text_field',
     122            ],
     123        );
    112124    }
    113125}
  • autoblue/trunk/includes/Logging/Setup.php

    r3211894 r3214305  
    44
    55class Setup {
    6     private const DB_VERSION = '20241202';
     6    private const DB_VERSION = '20241202'; // YYYYMMDD
    77
    88    public function register_hooks(): void {
  • autoblue/trunk/readme.txt

    r3211901 r3214305  
    22Contributors: danielpost
    33Tags: social, bluesky, auto, share, post
    4 Stable tag: 0.0.1
     4Stable tag: 0.0.2
    55Requires at least: 6.6
    66Tested up to: 6.7
     
    4646== Changelog ==
    4747
     48= 0.0.2 =
     49* Delete Autoblue data when the plugin is uninstalled.
     50
    4851= 0.0.1 =
    4952* Initial release.
  • autoblue/trunk/vendor/composer/installed.php

    r3211894 r3214305  
    22    'root' => array(
    33        'name' => 'posty/autoblue',
    4         'pretty_version' => '0.0.1',
    5         'version' => '0.0.1.0',
    6         'reference' => 'e6f02bb8e5e0902405ebabc5f9b563da411eda35',
     4        'pretty_version' => '0.0.2',
     5        'version' => '0.0.2.0',
     6        'reference' => 'b89e4c997db3d6c945964c64b3a2dca73275c91f',
    77        'type' => 'project',
    88        'install_path' => __DIR__ . '/../../',
     
    2121        ),
    2222        'posty/autoblue' => array(
    23             'pretty_version' => '0.0.1',
    24             'version' => '0.0.1.0',
    25             'reference' => 'e6f02bb8e5e0902405ebabc5f9b563da411eda35',
     23            'pretty_version' => '0.0.2',
     24            'version' => '0.0.2.0',
     25            'reference' => 'b89e4c997db3d6c945964c64b3a2dca73275c91f',
    2626            'type' => 'project',
    2727            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.