Plugin Directory

Changeset 3223262


Ignore:
Timestamp:
01/16/2025 12:07:30 AM (14 months ago)
Author:
danielpost
Message:

Update to version 0.0.4 from GitHub

Location:
autoblue
Files:
12 edited
1 copied

Legend:

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

    r3214602 r3223262  
    22/**
    33 * Plugin Name: Autoblue
    4  * Plugin URI: https://autoblue.cc
     4 * Plugin URI: https://autoblue.co
    55 * Description: Automatically share new posts to Bluesky.
    66 * Author: Daniel Post
    7  * Author URI: https://danielpost.com
     7 * Author URI: https://autoblue.co
    88 * License: GPLv2 or later
    99 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
    10  * Version: 0.0.3
     10 * Version: 0.0.4
    1111 * Text Domain: autoblue
    1212 * Requires at least: 6.6
     
    2121require_once __DIR__ . '/vendor/autoload.php';
    2222
    23 define( 'AUTOBLUE_VERSION', '0.0.3' );
     23define( 'AUTOBLUE_VERSION', '0.0.4' );
    2424define( 'AUTOBLUE_SLUG', 'autoblue' );
    2525define( 'AUTOBLUE_BASENAME', plugin_basename( __FILE__ ) );
  • autoblue/tags/0.0.4/includes/Assets.php

    r3211894 r3223262  
    5252            true
    5353        );
     54
     55        wp_set_script_translations( "autoblue-{$name}-plugin-script", 'autoblue' );
    5456
    5557        if ( ! empty( $params ) && ! $autoblue_defined ) {
  • autoblue/tags/0.0.4/includes/Logging/Setup.php

    r3214305 r3223262  
    2727            level varchar(20) NOT NULL,
    2828            message text NOT NULL,
    29             context JSON,
    30             extra JSON,
     29            context LONGTEXT,
     30            extra LONGTEXT,
    3131            PRIMARY KEY  (id),
    3232            KEY created_at (created_at),
  • autoblue/tags/0.0.4/includes/Meta.php

    r3211894 r3223262  
    5757                                ],
    5858                                'uri'      => [
    59                                     'type'     => 'uri',
     59                                    'type'     => 'string',
     60                                    'format'   => 'uri',
    6061                                    'required' => true,
    6162                                ],
    6263                                'at_uri'   => [
    63                                     'type' => 'uri',
     64                                    'type'   => 'string',
     65                                    'format' => 'uri',
    6466                                ],
    6567                                'response' => [
  • autoblue/tags/0.0.4/readme.txt

    r3218023 r3223262  
    22Contributors: danielpost
    33Tags: social, bluesky, auto, share, post
    4 Stable tag: 0.0.3
     4Stable tag: 0.0.4
    55Requires at least: 6.6
    66Tested up to: 6.7
     
    4646== Changelog ==
    4747
     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
    4853= 0.0.3 =
    4954* Fix: Autoblue now supports PHP 7.4 again.
  • autoblue/tags/0.0.4/vendor/composer/installed.php

    r3214602 r3223262  
    22    'root' => array(
    33        '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',
    77        'type' => 'project',
    88        'install_path' => __DIR__ . '/../../',
     
    2121        ),
    2222        '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',
    2626            'type' => 'project',
    2727            'install_path' => __DIR__ . '/../../',
  • autoblue/trunk/autoblue.php

    r3214602 r3223262  
    22/**
    33 * Plugin Name: Autoblue
    4  * Plugin URI: https://autoblue.cc
     4 * Plugin URI: https://autoblue.co
    55 * Description: Automatically share new posts to Bluesky.
    66 * Author: Daniel Post
    7  * Author URI: https://danielpost.com
     7 * Author URI: https://autoblue.co
    88 * License: GPLv2 or later
    99 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
    10  * Version: 0.0.3
     10 * Version: 0.0.4
    1111 * Text Domain: autoblue
    1212 * Requires at least: 6.6
     
    2121require_once __DIR__ . '/vendor/autoload.php';
    2222
    23 define( 'AUTOBLUE_VERSION', '0.0.3' );
     23define( 'AUTOBLUE_VERSION', '0.0.4' );
    2424define( 'AUTOBLUE_SLUG', 'autoblue' );
    2525define( 'AUTOBLUE_BASENAME', plugin_basename( __FILE__ ) );
  • autoblue/trunk/includes/Assets.php

    r3211894 r3223262  
    5252            true
    5353        );
     54
     55        wp_set_script_translations( "autoblue-{$name}-plugin-script", 'autoblue' );
    5456
    5557        if ( ! empty( $params ) && ! $autoblue_defined ) {
  • autoblue/trunk/includes/Logging/Setup.php

    r3214305 r3223262  
    2727            level varchar(20) NOT NULL,
    2828            message text NOT NULL,
    29             context JSON,
    30             extra JSON,
     29            context LONGTEXT,
     30            extra LONGTEXT,
    3131            PRIMARY KEY  (id),
    3232            KEY created_at (created_at),
  • autoblue/trunk/includes/Meta.php

    r3211894 r3223262  
    5757                                ],
    5858                                'uri'      => [
    59                                     'type'     => 'uri',
     59                                    'type'     => 'string',
     60                                    'format'   => 'uri',
    6061                                    'required' => true,
    6162                                ],
    6263                                'at_uri'   => [
    63                                     'type' => 'uri',
     64                                    'type'   => 'string',
     65                                    'format' => 'uri',
    6466                                ],
    6567                                'response' => [
  • autoblue/trunk/readme.txt

    r3218023 r3223262  
    22Contributors: danielpost
    33Tags: social, bluesky, auto, share, post
    4 Stable tag: 0.0.3
     4Stable tag: 0.0.4
    55Requires at least: 6.6
    66Tested up to: 6.7
     
    4646== Changelog ==
    4747
     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
    4853= 0.0.3 =
    4954* Fix: Autoblue now supports PHP 7.4 again.
  • autoblue/trunk/vendor/composer/installed.php

    r3214602 r3223262  
    22    'root' => array(
    33        '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',
    77        'type' => 'project',
    88        'install_path' => __DIR__ . '/../../',
     
    2121        ),
    2222        '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',
    2626            'type' => 'project',
    2727            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.