Plugin Directory

Changeset 3101480

Timestamp:
06/12/2024 03:45:53 AM (8 weeks ago)
Author:
akirk
Message:

enable-mastodon-apps 0.9.2

Location:
enable-mastodon-apps/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • enable-mastodon-apps/trunk/README.md

    r3101476 r3101480  
    77- Requires PHP: 7.4
    88- License: [GPLv2 or later](http://www.gnu.org/licenses/gpl-2.0.html)
    9 - Stable tag: 0.9.1
     9- Stable tag: 0.9.
    1010
    1111Allow accessing your WordPress with Mastodon clients. Just enter your own blog URL as your instance.
     
    9898## Changelog
    9999
     100
     101
     102
    100103### 0.9.1
    101104- Allow an empty search type, to search in all categories ([#150]) props @pfefferle
  • enable-mastodon-apps/trunk/enable-mastodon-apps.php

    r3101476 r3101480  
    44 * Plugin author: Alex Kirk
    55 * Plugin URI: https://github.com/akirk/enable-mastodon-apps
    6  * Version: 0.9.1
     6 * Version: 0.9.
    77 *
    88 * Description: Allow accessing your WordPress with Mastodon clients. Just enter your own blog URL as your instance.
     
    1616defined( 'ABSPATH' ) || exit;
    1717define( 'ENABLE_MASTODON_APPS_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
    18 define( 'ENABLE_MASTODON_APPS_VERSION', '0.9.1' );
     18define( 'ENABLE_MASTODON_APPS_VERSION', '0.9.' );
    1919
    2020require __DIR__ . '/vendor/bshaffer/oauth2-server-php/src/OAuth2/Autoloader.php';
     
    6565    }
    6666);
    67 
    68 if ( is_admin() && version_compare( get_option( 'ema_plugin_version', ENABLE_MASTODON_APPS_VERSION ), '<' ) ) {
    69     add_action( 'admin_init', array( __NAMESPACE__ . '\Mastodon_Admin', 'upgrade_plugin' ) );
    70 }
Note: See TracChangeset for help on using the changeset viewer.