Plugin Directory

Changeset 1679697


Ignore:
Timestamp:
06/16/2017 06:29:37 AM (9 years ago)
Author:
techxplorer
Message:

Release v1.1.1

Location:
techxplorers-ping-recorder/trunk
Files:
4 deleted
6 edited

Legend:

Unmodified
Added
Removed
  • techxplorers-ping-recorder/trunk/README.txt

    r1579457 r1679697  
    33Tags: admin, ssh, ping, server
    44Requires at least: 4.7
    5 Tested up to: 4.7
     5Tested up to: 4.8
    66Stable tag: trunk
    77License: GPLv2 or later
     
    4040== Changelog ==
    4141
     42= 1.1.1 =
     43* Confirm compatibility with WordPress 4.8
     44* Fix code style errors using latest WordPress code style
     45
    4246= 1.1.0 =
    4347* Released to the WordPress plugin directory.
  • techxplorers-ping-recorder/trunk/admin/class-txp-ping-recorder-admin.php

    r1579457 r1679697  
    5959    public function enqueue_styles() {
    6060        // Include the admin CSS.
    61         wp_enqueue_style( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'css/txp-ping-recorder-admin.css', array(), $this->version, 'all' );
    6261    }
    6362
     
    6968    public function enqueue_scripts() {
    7069        // Include the admin JavaScript.
    71         wp_enqueue_script( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'js/txp-ping-recorder-admin.js', array( 'jquery' ), $this->version, false );
    7270    }
    7371
  • techxplorers-ping-recorder/trunk/includes/class-txp-ping-recorder-i18n.php

    r1579457 r1679697  
    2424 * @author     techxplorer <corey@techxplorer.com>
    2525 */
    26 class Txp_Ping_Recorder_i18n {
     26class Txp_Ping_Recorder_I18n {
    2727
    2828
  • techxplorers-ping-recorder/trunk/includes/class-txp-ping-recorder.php

    r1579457 r1679697  
    7878
    7979        $this->plugin_name = 'txp-ping-recorder';
    80         $this->version = '1.1.0';
     80        $this->version = '1.1.1';
    8181
    8282        $this->load_dependencies();
     
    9393     *
    9494     * - Txp_Ping_Recorder_Loader. Orchestrates the hooks of the plugin.
    95      * - Txp_Ping_Recorder_i18n. Defines internationalization functionality.
     95     * - Txp_Ping_Recorder_I18n. Defines internationalization functionality.
    9696     * - Txp_Ping_Recorder_Admin. Defines all hooks for the admin area.
    9797     * - Txp_Ping_Recorder_Public. Defines all hooks for the public side of the site.
     
    138138     * Define the locale for this plugin for internationalization.
    139139     *
    140      * Uses the Txp_Ping_Recorder_i18n class in order to set the domain and to register the hook
     140     * Uses the Txp_Ping_Recorder_I18n class in order to set the domain and to register the hook
    141141     * with WordPress.
    142142     *
     
    146146    private function set_locale() {
    147147
    148         $plugin_i18n = new Txp_Ping_Recorder_i18n();
     148        $plugin_i18n = new Txp_Ping_Recorder_I18n();
    149149
    150150        $this->loader->add_action( 'plugins_loaded', $plugin_i18n, 'load_plugin_textdomain' );
  • techxplorers-ping-recorder/trunk/public/class-txp-ping-recorder-public.php

    r1579457 r1679697  
    5858     */
    5959    public function enqueue_styles() {
    60         wp_enqueue_style( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'css/txp-ping-recorder-public.css', array(), $this->version, 'all' );
     60
    6161    }
    6262
     
    6767     */
    6868    public function enqueue_scripts() {
    69         wp_enqueue_script( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'js/txp-ping-recorder-public.js', array( 'jquery' ), $this->version, false );
     69
    7070    }
    7171
  • techxplorers-ping-recorder/trunk/txp-ping-recorder.php

    r1579457 r1679697  
    1515 * Plugin Name:       Techxplorer's Ping Recorder
    1616 * Plugin URI:        https://techxplorer.com/projects/txp-ping-recorder
    17  * Description:       This is a short description of what the plugin does. It's displayed in the WordPress admin area.
    18  * Version:           1.1.0
     17 * Description:       Records 'pings' from a home server to make it easy to remotely access it.
     18 * Version:           1.1.1
    1919 * Author:            techxplorer
    2020 * Author URI:        https://techxplorer.com/
Note: See TracChangeset for help on using the changeset viewer.