Changeset 3214305
- Timestamp:
- 12/29/2024 03:30:44 AM (15 months ago)
- Location:
- autoblue
- Files:
-
- 2 added
- 2 deleted
- 10 edited
- 1 copied
-
tags/0.0.2 (copied) (copied from autoblue/trunk)
-
tags/0.0.2/autoblue.php (modified) (2 diffs)
-
tags/0.0.2/bin (deleted)
-
tags/0.0.2/includes/Admin.php (modified) (1 diff)
-
tags/0.0.2/includes/Logging/Setup.php (modified) (1 diff)
-
tags/0.0.2/readme.txt (modified) (2 diffs)
-
tags/0.0.2/uninstall.php (added)
-
tags/0.0.2/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/autoblue.php (modified) (2 diffs)
-
trunk/bin (deleted)
-
trunk/includes/Admin.php (modified) (1 diff)
-
trunk/includes/Logging/Setup.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/uninstall.php (added)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
autoblue/tags/0.0.2/autoblue.php
r3211894 r3214305 8 8 * License: GPLv2 or later 9 9 * License URI: https://www.gnu.org/licenses/gpl-2.0.html 10 * Version: 0.0. 110 * Version: 0.0.2 11 11 * Text Domain: autoblue 12 12 * Requires at least: 6.6 … … 21 21 require_once __DIR__ . '/vendor/autoload.php'; 22 22 23 define( 'AUTOBLUE_VERSION', '0.0. 1' );23 define( 'AUTOBLUE_VERSION', '0.0.2' ); 24 24 define( 'AUTOBLUE_SLUG', 'autoblue' ); 25 25 define( 'AUTOBLUE_BASENAME', plugin_basename( __FILE__ ) ); -
autoblue/tags/0.0.2/includes/Admin.php
r3211894 r3214305 110 110 ], 111 111 ); 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 ); 112 124 } 113 125 } -
autoblue/tags/0.0.2/includes/Logging/Setup.php
r3211894 r3214305 4 4 5 5 class Setup { 6 private const DB_VERSION = '20241202'; 6 private const DB_VERSION = '20241202'; // YYYYMMDD 7 7 8 8 public function register_hooks(): void { -
autoblue/tags/0.0.2/readme.txt
r3211901 r3214305 2 2 Contributors: danielpost 3 3 Tags: social, bluesky, auto, share, post 4 Stable tag: 0.0. 14 Stable tag: 0.0.2 5 5 Requires at least: 6.6 6 6 Tested up to: 6.7 … … 46 46 == Changelog == 47 47 48 = 0.0.2 = 49 * Delete Autoblue data when the plugin is uninstalled. 50 48 51 = 0.0.1 = 49 52 * Initial release. -
autoblue/tags/0.0.2/vendor/composer/installed.php
r3211894 r3214305 2 2 'root' => array( 3 3 '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', 7 7 'type' => 'project', 8 8 'install_path' => __DIR__ . '/../../', … … 21 21 ), 22 22 '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', 26 26 'type' => 'project', 27 27 'install_path' => __DIR__ . '/../../', -
autoblue/trunk/autoblue.php
r3211894 r3214305 8 8 * License: GPLv2 or later 9 9 * License URI: https://www.gnu.org/licenses/gpl-2.0.html 10 * Version: 0.0. 110 * Version: 0.0.2 11 11 * Text Domain: autoblue 12 12 * Requires at least: 6.6 … … 21 21 require_once __DIR__ . '/vendor/autoload.php'; 22 22 23 define( 'AUTOBLUE_VERSION', '0.0. 1' );23 define( 'AUTOBLUE_VERSION', '0.0.2' ); 24 24 define( 'AUTOBLUE_SLUG', 'autoblue' ); 25 25 define( 'AUTOBLUE_BASENAME', plugin_basename( __FILE__ ) ); -
autoblue/trunk/includes/Admin.php
r3211894 r3214305 110 110 ], 111 111 ); 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 ); 112 124 } 113 125 } -
autoblue/trunk/includes/Logging/Setup.php
r3211894 r3214305 4 4 5 5 class Setup { 6 private const DB_VERSION = '20241202'; 6 private const DB_VERSION = '20241202'; // YYYYMMDD 7 7 8 8 public function register_hooks(): void { -
autoblue/trunk/readme.txt
r3211901 r3214305 2 2 Contributors: danielpost 3 3 Tags: social, bluesky, auto, share, post 4 Stable tag: 0.0. 14 Stable tag: 0.0.2 5 5 Requires at least: 6.6 6 6 Tested up to: 6.7 … … 46 46 == Changelog == 47 47 48 = 0.0.2 = 49 * Delete Autoblue data when the plugin is uninstalled. 50 48 51 = 0.0.1 = 49 52 * Initial release. -
autoblue/trunk/vendor/composer/installed.php
r3211894 r3214305 2 2 'root' => array( 3 3 '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', 7 7 'type' => 'project', 8 8 'install_path' => __DIR__ . '/../../', … … 21 21 ), 22 22 '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', 26 26 'type' => 'project', 27 27 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.