Plugin Directory

Changeset 3282550


Ignore:
Timestamp:
04/26/2025 11:41:04 PM (9 months ago)
Author:
davisshaver
Message:

Update to version 0.0.45 from GitHub

Location:
frames-integration-for-farcaster
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • frames-integration-for-farcaster/tags/0.0.45/frames-integration-for-farcaster.php

    r3282543 r3282550  
    1111 * Plugin URI:        https://davisshaver.com/frames-integration-for-farcaster/
    1212 * Description:       Mini App Integration for Farcaster connects your WordPress site to Farcaster.
    13  * Version:           0.0.44
     13 * Version:           0.0.45
    1414 * Author:            Davis Shaver
    1515 * Author URI:        https://davisshaver.com/
     
    2323defined( 'ABSPATH' ) || exit;
    2424
    25 define( 'FARCASTER_WP_VERSION', '0.0.44' );
     25define( 'FARCASTER_WP_VERSION', '0.0.45' );
    2626
    2727define( 'FARCASTER_WP_API_NAMESPACE', 'farcaster-wp/v1' );
  • frames-integration-for-farcaster/tags/0.0.45/includes/api/class-manifest-controller.php

    r3282543 r3282550  
    7878        $og_image_url            = Frames::get_og_image_url( $options );
    7979
     80        $subtitle = get_bloginfo( 'description' );
     81        $subtitle = strlen( $subtitle ) > 27 ? substr( $subtitle, 0, 27 ) . '...' : $subtitle;
     82
    8083        $header = '';
    8184        if ( ! empty( $domain_manifest['accountAssociation']['header'] ) ) {
     
    115118                'imageUrl'              => $frame_image_url, // Deprecated.
    116119                'buttonTitle'           => $button_title, // Deprecated.
    117                 'subtitle'              => get_bloginfo( 'description' ),
     120                'subtitle'              => $subtitle,
    118121                'description'           => $description,
    119122                'primaryCategory'       => $category,
  • frames-integration-for-farcaster/tags/0.0.45/readme.txt

    r3282543 r3282550  
    55Requires at least: 6.7.0
    66Requires PHP: 7.0
    7 Stable tag: 0.0.44
     7Stable tag: 0.0.45
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    3030
    3131== Changelog ==
     32
     33= 0.0.45 =
     34* Limit subtitle to 30 characters
    3235
    3336= 0.0.44 =
  • frames-integration-for-farcaster/tags/0.0.45/vendor/composer/installed.php

    r3282543 r3282550  
    22    'root' => array(
    33        'name' => 'davisshaver/frames-integration-for-farcaster',
    4         'pretty_version' => '0.0.44',
    5         'version' => '0.0.44.0',
    6         'reference' => 'ed9bbcd794c8933d8c8994e4f7a7438e3afde1df',
     4        'pretty_version' => '0.0.45',
     5        'version' => '0.0.45.0',
     6        'reference' => 'd8b537c990457ef57a3f041d8e9483bfba50fde0',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        'davisshaver/frames-integration-for-farcaster' => array(
    14             'pretty_version' => '0.0.44',
    15             'version' => '0.0.44.0',
    16             'reference' => 'ed9bbcd794c8933d8c8994e4f7a7438e3afde1df',
     14            'pretty_version' => '0.0.45',
     15            'version' => '0.0.45.0',
     16            'reference' => 'd8b537c990457ef57a3f041d8e9483bfba50fde0',
    1717            'type' => 'wordpress-plugin',
    1818            'install_path' => __DIR__ . '/../../',
  • frames-integration-for-farcaster/trunk/frames-integration-for-farcaster.php

    r3282543 r3282550  
    1111 * Plugin URI:        https://davisshaver.com/frames-integration-for-farcaster/
    1212 * Description:       Mini App Integration for Farcaster connects your WordPress site to Farcaster.
    13  * Version:           0.0.44
     13 * Version:           0.0.45
    1414 * Author:            Davis Shaver
    1515 * Author URI:        https://davisshaver.com/
     
    2323defined( 'ABSPATH' ) || exit;
    2424
    25 define( 'FARCASTER_WP_VERSION', '0.0.44' );
     25define( 'FARCASTER_WP_VERSION', '0.0.45' );
    2626
    2727define( 'FARCASTER_WP_API_NAMESPACE', 'farcaster-wp/v1' );
  • frames-integration-for-farcaster/trunk/includes/api/class-manifest-controller.php

    r3282543 r3282550  
    7878        $og_image_url            = Frames::get_og_image_url( $options );
    7979
     80        $subtitle = get_bloginfo( 'description' );
     81        $subtitle = strlen( $subtitle ) > 27 ? substr( $subtitle, 0, 27 ) . '...' : $subtitle;
     82
    8083        $header = '';
    8184        if ( ! empty( $domain_manifest['accountAssociation']['header'] ) ) {
     
    115118                'imageUrl'              => $frame_image_url, // Deprecated.
    116119                'buttonTitle'           => $button_title, // Deprecated.
    117                 'subtitle'              => get_bloginfo( 'description' ),
     120                'subtitle'              => $subtitle,
    118121                'description'           => $description,
    119122                'primaryCategory'       => $category,
  • frames-integration-for-farcaster/trunk/readme.txt

    r3282543 r3282550  
    55Requires at least: 6.7.0
    66Requires PHP: 7.0
    7 Stable tag: 0.0.44
     7Stable tag: 0.0.45
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    3030
    3131== Changelog ==
     32
     33= 0.0.45 =
     34* Limit subtitle to 30 characters
    3235
    3336= 0.0.44 =
  • frames-integration-for-farcaster/trunk/vendor/composer/installed.php

    r3282543 r3282550  
    22    'root' => array(
    33        'name' => 'davisshaver/frames-integration-for-farcaster',
    4         'pretty_version' => '0.0.44',
    5         'version' => '0.0.44.0',
    6         'reference' => 'ed9bbcd794c8933d8c8994e4f7a7438e3afde1df',
     4        'pretty_version' => '0.0.45',
     5        'version' => '0.0.45.0',
     6        'reference' => 'd8b537c990457ef57a3f041d8e9483bfba50fde0',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        'davisshaver/frames-integration-for-farcaster' => array(
    14             'pretty_version' => '0.0.44',
    15             'version' => '0.0.44.0',
    16             'reference' => 'ed9bbcd794c8933d8c8994e4f7a7438e3afde1df',
     14            'pretty_version' => '0.0.45',
     15            'version' => '0.0.45.0',
     16            'reference' => 'd8b537c990457ef57a3f041d8e9483bfba50fde0',
    1717            'type' => 'wordpress-plugin',
    1818            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.