Plugin Directory

Changeset 2748005


Ignore:
Timestamp:
06/25/2022 10:57:27 PM (3 years ago)
Author:
ethitter
Message:

Update to version 0.2.2 from GitLab (https://git.ethitter.com/wp-plugins/eth-escape-headspace; https://git.ethitter.com/wp-plugins/eth-escape-headspace/-/jobs/19467)

Location:
eth-escape-headspace2
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • eth-escape-headspace2/tags/0.2.2/eth-escape-headspace.php

    r2681848 r2748005  
    11<?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName
    22/**
    3   Plugin Name: ETH Escape HeadSpace2
    4   Plugin URI: https://ethitter.com/plugins/
    5   Description: Output existing HeadSpace2 data without the original plugin. Allows HeadSpace2 (no longer maintained) to be deactivated without impactacting legacy content.
    6   Author: Erick Hitter
    7   Version: 0.2.1
    8   Author URI: https://ethitter.com/
    9 
    10   This program is free software; you can redistribute it and/or modify
    11   it under the terms of the GNU General Public License as published by
    12   the Free Software Foundation; either version 2 of the License, or
    13   (at your option) any later version.
    14 
    15   This program is distributed in the hope that it will be useful,
    16   but WITHOUT ANY WARRANTY; without even the implied warranty of
    17   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    18   GNU General Public License for more details.
    19 
    20   You should have received a copy of the GNU General Public License
    21   along with this program; if not, write to the Free Software
    22   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
     3 * Plugin Name: ETH Escape HeadSpace2
     4 * Plugin URI: https://ethitter.com/plugins/
     5 * Description: Output existing HeadSpace2 data without the original plugin. Allows HeadSpace2 (no longer maintained) to be deactivated without impactacting legacy content.
     6 * Author: Erick Hitter
     7 * Version: 0.2.2
     8 * Author URI: https://ethitter.com/
     9 * Text Domain: eth-escape-headspace2
     10 * Domain Path: /languages/
     11 *
     12 * This program is free software; you can redistribute it and/or modify
     13 * it under the terms of the GNU General Public License as published by
     14 * the Free Software Foundation; either version 2 of the License, or
     15 * (at your option) any later version.
     16 *
     17 * This program is distributed in the hope that it will be useful,
     18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
     19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     20 * GNU General Public License for more details.
     21 *
     22 * You should have received a copy of the GNU General Public License
     23 * along with this program; if not, write to the Free Software
     24 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
    2325 */
    2426
     
    102104    public function maybe_add_hooks() {
    103105        // Defer to HeadSpace2 when active.
    104         if ( class_exists( 'HeadSpace_Plugin' ) ) {
     106        if ( class_exists( 'HeadSpace_Plugin', false ) ) {
    105107            return;
    106108        }
     109
     110        add_action( 'plugins_loaded', array( $this, 'load_textdomain' ) );
    107111
    108112        add_filter( 'pre_get_document_title', array( $this, 'filter_pre_get_document_title' ) );
     
    111115        add_action( 'wp_head', array( $this, 'action_wp_head' ) );
    112116        add_action( 'wp_footer', array( $this, 'action_wp_footer' ) );
     117    }
     118
     119    /**
     120     * Load plugin translations.
     121     *
     122     * @return void
     123     */
     124    public function load_textdomain() {
     125        load_plugin_textdomain(
     126            'eth-escape-headspace2',
     127            false,
     128            dirname( plugin_basename( __FILE__ ) ) . '/languages/'
     129        );
    113130    }
    114131
  • eth-escape-headspace2/tags/0.2.2/languages/eth-escape-headspace2.pot

    r2740954 r2748005  
    66"Report-Msgid-Bugs-To: "
    77"https://wordpress.org/support/plugin/eth-escape-headspace\n"
    8 "POT-Creation-Date: 2022-06-11 18:55:07+00:00\n"
     8"POT-Creation-Date: 2022-06-25 22:45:25+00:00\n"
    99"MIME-Version: 1.0\n"
    1010"Content-Type: text/plain; charset=utf-8\n"
  • eth-escape-headspace2/tags/0.2.2/readme.txt

    r2740954 r2748005  
    55Requires at least: 4.4
    66Tested up to: 6.0
    7 Stable tag: 0.2.1
     7Stable tag: 0.2.2
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5050== Changelog ==
    5151
     52= 0.2.2 =
     53* Fix translation support.
     54
    5255= 0.2.1 =
    5356* PHP 7.3 compatibility.
     
    6265== Upgrade Notice ==
    6366
     67= 0.2.2 =
     68Fixes translation support.
     69
    6470= 0.2.1 =
    65 Resolved warning arising in PHP 7.3.
     71Resolves warning arising in PHP 7.3.
  • eth-escape-headspace2/trunk/eth-escape-headspace.php

    r2681848 r2748005  
    11<?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName
    22/**
    3   Plugin Name: ETH Escape HeadSpace2
    4   Plugin URI: https://ethitter.com/plugins/
    5   Description: Output existing HeadSpace2 data without the original plugin. Allows HeadSpace2 (no longer maintained) to be deactivated without impactacting legacy content.
    6   Author: Erick Hitter
    7   Version: 0.2.1
    8   Author URI: https://ethitter.com/
    9 
    10   This program is free software; you can redistribute it and/or modify
    11   it under the terms of the GNU General Public License as published by
    12   the Free Software Foundation; either version 2 of the License, or
    13   (at your option) any later version.
    14 
    15   This program is distributed in the hope that it will be useful,
    16   but WITHOUT ANY WARRANTY; without even the implied warranty of
    17   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    18   GNU General Public License for more details.
    19 
    20   You should have received a copy of the GNU General Public License
    21   along with this program; if not, write to the Free Software
    22   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
     3 * Plugin Name: ETH Escape HeadSpace2
     4 * Plugin URI: https://ethitter.com/plugins/
     5 * Description: Output existing HeadSpace2 data without the original plugin. Allows HeadSpace2 (no longer maintained) to be deactivated without impactacting legacy content.
     6 * Author: Erick Hitter
     7 * Version: 0.2.2
     8 * Author URI: https://ethitter.com/
     9 * Text Domain: eth-escape-headspace2
     10 * Domain Path: /languages/
     11 *
     12 * This program is free software; you can redistribute it and/or modify
     13 * it under the terms of the GNU General Public License as published by
     14 * the Free Software Foundation; either version 2 of the License, or
     15 * (at your option) any later version.
     16 *
     17 * This program is distributed in the hope that it will be useful,
     18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
     19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     20 * GNU General Public License for more details.
     21 *
     22 * You should have received a copy of the GNU General Public License
     23 * along with this program; if not, write to the Free Software
     24 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
    2325 */
    2426
     
    102104    public function maybe_add_hooks() {
    103105        // Defer to HeadSpace2 when active.
    104         if ( class_exists( 'HeadSpace_Plugin' ) ) {
     106        if ( class_exists( 'HeadSpace_Plugin', false ) ) {
    105107            return;
    106108        }
     109
     110        add_action( 'plugins_loaded', array( $this, 'load_textdomain' ) );
    107111
    108112        add_filter( 'pre_get_document_title', array( $this, 'filter_pre_get_document_title' ) );
     
    111115        add_action( 'wp_head', array( $this, 'action_wp_head' ) );
    112116        add_action( 'wp_footer', array( $this, 'action_wp_footer' ) );
     117    }
     118
     119    /**
     120     * Load plugin translations.
     121     *
     122     * @return void
     123     */
     124    public function load_textdomain() {
     125        load_plugin_textdomain(
     126            'eth-escape-headspace2',
     127            false,
     128            dirname( plugin_basename( __FILE__ ) ) . '/languages/'
     129        );
    113130    }
    114131
  • eth-escape-headspace2/trunk/languages/eth-escape-headspace2.pot

    r2740954 r2748005  
    66"Report-Msgid-Bugs-To: "
    77"https://wordpress.org/support/plugin/eth-escape-headspace\n"
    8 "POT-Creation-Date: 2022-06-11 18:55:07+00:00\n"
     8"POT-Creation-Date: 2022-06-25 22:45:25+00:00\n"
    99"MIME-Version: 1.0\n"
    1010"Content-Type: text/plain; charset=utf-8\n"
  • eth-escape-headspace2/trunk/readme.txt

    r2740954 r2748005  
    55Requires at least: 4.4
    66Tested up to: 6.0
    7 Stable tag: 0.2.1
     7Stable tag: 0.2.2
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5050== Changelog ==
    5151
     52= 0.2.2 =
     53* Fix translation support.
     54
    5255= 0.2.1 =
    5356* PHP 7.3 compatibility.
     
    6265== Upgrade Notice ==
    6366
     67= 0.2.2 =
     68Fixes translation support.
     69
    6470= 0.2.1 =
    65 Resolved warning arising in PHP 7.3.
     71Resolves warning arising in PHP 7.3.
Note: See TracChangeset for help on using the changeset viewer.