Changeset 3223262
- Timestamp:
- 01/16/2025 12:07:30 AM (14 months ago)
- Location:
- autoblue
- Files:
-
- 12 edited
- 1 copied
-
tags/0.0.4 (copied) (copied from autoblue/trunk)
-
tags/0.0.4/autoblue.php (modified) (2 diffs)
-
tags/0.0.4/includes/Assets.php (modified) (1 diff)
-
tags/0.0.4/includes/Logging/Setup.php (modified) (1 diff)
-
tags/0.0.4/includes/Meta.php (modified) (1 diff)
-
tags/0.0.4/readme.txt (modified) (2 diffs)
-
tags/0.0.4/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/autoblue.php (modified) (2 diffs)
-
trunk/includes/Assets.php (modified) (1 diff)
-
trunk/includes/Logging/Setup.php (modified) (1 diff)
-
trunk/includes/Meta.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
autoblue/tags/0.0.4/autoblue.php
r3214602 r3223262 2 2 /** 3 3 * Plugin Name: Autoblue 4 * Plugin URI: https://autoblue.c c4 * Plugin URI: https://autoblue.co 5 5 * Description: Automatically share new posts to Bluesky. 6 6 * Author: Daniel Post 7 * Author URI: https:// danielpost.com7 * Author URI: https://autoblue.co 8 8 * License: GPLv2 or later 9 9 * License URI: https://www.gnu.org/licenses/gpl-2.0.html 10 * Version: 0.0. 310 * Version: 0.0.4 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. 3' );23 define( 'AUTOBLUE_VERSION', '0.0.4' ); 24 24 define( 'AUTOBLUE_SLUG', 'autoblue' ); 25 25 define( 'AUTOBLUE_BASENAME', plugin_basename( __FILE__ ) ); -
autoblue/tags/0.0.4/includes/Assets.php
r3211894 r3223262 52 52 true 53 53 ); 54 55 wp_set_script_translations( "autoblue-{$name}-plugin-script", 'autoblue' ); 54 56 55 57 if ( ! empty( $params ) && ! $autoblue_defined ) { -
autoblue/tags/0.0.4/includes/Logging/Setup.php
r3214305 r3223262 27 27 level varchar(20) NOT NULL, 28 28 message text NOT NULL, 29 context JSON,30 extra JSON,29 context LONGTEXT, 30 extra LONGTEXT, 31 31 PRIMARY KEY (id), 32 32 KEY created_at (created_at), -
autoblue/tags/0.0.4/includes/Meta.php
r3211894 r3223262 57 57 ], 58 58 'uri' => [ 59 'type' => 'uri', 59 'type' => 'string', 60 'format' => 'uri', 60 61 'required' => true, 61 62 ], 62 63 'at_uri' => [ 63 'type' => 'uri', 64 'type' => 'string', 65 'format' => 'uri', 64 66 ], 65 67 'response' => [ -
autoblue/tags/0.0.4/readme.txt
r3218023 r3223262 2 2 Contributors: danielpost 3 3 Tags: social, bluesky, auto, share, post 4 Stable tag: 0.0. 34 Stable tag: 0.0.4 5 5 Requires at least: 6.6 6 6 Tested up to: 6.7 … … 46 46 == Changelog == 47 47 48 = 0.0.4 = 49 * Fix: Script translations are now loaded properly (props [@imath](https://github.com/imath)) 50 * Fix: Shared posts no longer trigger warning in editor about invalid type (props [@imath](https://github.com/imath)) 51 * Fix: Custom table for logs now works with older versions of MySQL and MariaDB (props [@imath](https://github.com/imath)) 52 48 53 = 0.0.3 = 49 54 * Fix: Autoblue now supports PHP 7.4 again. -
autoblue/tags/0.0.4/vendor/composer/installed.php
r3214602 r3223262 2 2 'root' => array( 3 3 'name' => 'posty/autoblue', 4 'pretty_version' => 'v0.0. 3',5 'version' => '0.0. 3.0',6 'reference' => ' 61a02d72d963b31f1b48e3ac282b35089c0b0785',4 'pretty_version' => 'v0.0.4', 5 'version' => '0.0.4.0', 6 'reference' => '0725945813790284b417f9553bbd96ac7f4c89f2', 7 7 'type' => 'project', 8 8 'install_path' => __DIR__ . '/../../', … … 21 21 ), 22 22 'posty/autoblue' => array( 23 'pretty_version' => 'v0.0. 3',24 'version' => '0.0. 3.0',25 'reference' => ' 61a02d72d963b31f1b48e3ac282b35089c0b0785',23 'pretty_version' => 'v0.0.4', 24 'version' => '0.0.4.0', 25 'reference' => '0725945813790284b417f9553bbd96ac7f4c89f2', 26 26 'type' => 'project', 27 27 'install_path' => __DIR__ . '/../../', -
autoblue/trunk/autoblue.php
r3214602 r3223262 2 2 /** 3 3 * Plugin Name: Autoblue 4 * Plugin URI: https://autoblue.c c4 * Plugin URI: https://autoblue.co 5 5 * Description: Automatically share new posts to Bluesky. 6 6 * Author: Daniel Post 7 * Author URI: https:// danielpost.com7 * Author URI: https://autoblue.co 8 8 * License: GPLv2 or later 9 9 * License URI: https://www.gnu.org/licenses/gpl-2.0.html 10 * Version: 0.0. 310 * Version: 0.0.4 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. 3' );23 define( 'AUTOBLUE_VERSION', '0.0.4' ); 24 24 define( 'AUTOBLUE_SLUG', 'autoblue' ); 25 25 define( 'AUTOBLUE_BASENAME', plugin_basename( __FILE__ ) ); -
autoblue/trunk/includes/Assets.php
r3211894 r3223262 52 52 true 53 53 ); 54 55 wp_set_script_translations( "autoblue-{$name}-plugin-script", 'autoblue' ); 54 56 55 57 if ( ! empty( $params ) && ! $autoblue_defined ) { -
autoblue/trunk/includes/Logging/Setup.php
r3214305 r3223262 27 27 level varchar(20) NOT NULL, 28 28 message text NOT NULL, 29 context JSON,30 extra JSON,29 context LONGTEXT, 30 extra LONGTEXT, 31 31 PRIMARY KEY (id), 32 32 KEY created_at (created_at), -
autoblue/trunk/includes/Meta.php
r3211894 r3223262 57 57 ], 58 58 'uri' => [ 59 'type' => 'uri', 59 'type' => 'string', 60 'format' => 'uri', 60 61 'required' => true, 61 62 ], 62 63 'at_uri' => [ 63 'type' => 'uri', 64 'type' => 'string', 65 'format' => 'uri', 64 66 ], 65 67 'response' => [ -
autoblue/trunk/readme.txt
r3218023 r3223262 2 2 Contributors: danielpost 3 3 Tags: social, bluesky, auto, share, post 4 Stable tag: 0.0. 34 Stable tag: 0.0.4 5 5 Requires at least: 6.6 6 6 Tested up to: 6.7 … … 46 46 == Changelog == 47 47 48 = 0.0.4 = 49 * Fix: Script translations are now loaded properly (props [@imath](https://github.com/imath)) 50 * Fix: Shared posts no longer trigger warning in editor about invalid type (props [@imath](https://github.com/imath)) 51 * Fix: Custom table for logs now works with older versions of MySQL and MariaDB (props [@imath](https://github.com/imath)) 52 48 53 = 0.0.3 = 49 54 * Fix: Autoblue now supports PHP 7.4 again. -
autoblue/trunk/vendor/composer/installed.php
r3214602 r3223262 2 2 'root' => array( 3 3 'name' => 'posty/autoblue', 4 'pretty_version' => 'v0.0. 3',5 'version' => '0.0. 3.0',6 'reference' => ' 61a02d72d963b31f1b48e3ac282b35089c0b0785',4 'pretty_version' => 'v0.0.4', 5 'version' => '0.0.4.0', 6 'reference' => '0725945813790284b417f9553bbd96ac7f4c89f2', 7 7 'type' => 'project', 8 8 'install_path' => __DIR__ . '/../../', … … 21 21 ), 22 22 'posty/autoblue' => array( 23 'pretty_version' => 'v0.0. 3',24 'version' => '0.0. 3.0',25 'reference' => ' 61a02d72d963b31f1b48e3ac282b35089c0b0785',23 'pretty_version' => 'v0.0.4', 24 'version' => '0.0.4.0', 25 'reference' => '0725945813790284b417f9553bbd96ac7f4c89f2', 26 26 'type' => 'project', 27 27 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.