Plugin Directory

Changeset 3081226


Ignore:
Timestamp:
05/04/2024 11:10:00 AM (23 months ago)
Author:
kiranpotphode
Message:

Version v1.0.2

Location:
full-screen-images
Files:
5 edited
2 copied

Legend:

Unmodified
Added
Removed
  • full-screen-images/tags/1.0.2/README.txt

    r2106572 r3081226  
    33Tags: image, full screen
    44Requires at least: 3.0.1
    5 Tested up to: 5.2.1
     5Tested up to: 4.8
    66Stable tag: 1.0.1
    77License: GPLv2 or later
  • full-screen-images/tags/1.0.2/trunk/README.txt

    r2106572 r3081226  
    33Tags: image, full screen
    44Requires at least: 3.0.1
    5 Tested up to: 5.2.1
    6 Stable tag: 1.0.1
     5Tested up to: 6.5.2
     6Stable tag: 1.0.2
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4141
    4242== Changelog ==
     43= 1.0.2 =
     44* PHPCS Fixes.
     45* Tested upto WordPress 6.5.2
    4346
    4447= 1.0.1 =
  • full-screen-images/tags/1.0.2/trunk/full-screen-images.php

    r1675351 r3081226  
    1111* Plugin URI:        https://github.com/kiranpotphode/full-screen-images
    1212* Description:       Viewing images on the full screen. Using the touch/mouse position for panning.
    13 * Version:           1.0.1
     13* Version:           1.0.2
    1414* Author:            Kiran Potphode
    1515* Author URI:        https://github.com/kiranpotphode/full-screen-images
     
    3636function full_screen_images_scripts() {
    3737
    38     wp_enqueue_script( 'intense-images-js', plugin_dir_url( __FILE__ ) . 'js/intense.min.js', array( 'jquery' ), false, false);
     38    wp_enqueue_script( 'intense-images-js', plugin_dir_url( __FILE__ ) . 'js/intense.min.js', array( 'jquery' ), false, false );
    3939
    40     wp_enqueue_script( 'full-screen-images-js', plugin_dir_url( __FILE__ ) . 'js/full-screen-images.js', array( 'jquery' ), false, false);
    41 
     40    wp_enqueue_script( 'full-screen-images-js', plugin_dir_url( __FILE__ ) . 'js/full-screen-images.js', array( 'jquery' ), false, false );
    4241}
    4342
     
    6766        echo '<p>This plugin is based on <a href="https://github.com/tholman/intense-images" target="_blank">Intense Image Viewer</a> javascript liabrary by <a href="https://github.com/tholman" target="_blank">Tim Holman</a></p>';
    6867    echo '</div>';
    69 
    7068}
    7169
    72 add_action('admin_menu', 'register_full_screen_images_submenu_page');
     70add_action( 'admin_menu', 'register_full_screen_images_submenu_page' );
    7371
    7472/**
    7573 *  Add settings link on plugin page
    7674 */
    77 function full_screen_images_settings_link($links) {
    78   $settings_link = '<a href="options-general.php?page=full-screen-images-page.php">More Info</a>';
    79   array_unshift($links, $settings_link);
    80   return $links;
     75function full_screen_images_settings_link( $links ) {
     76    $settings_link = '<a href="options-general.php?page=full-screen-images-page.php">More Info</a>';
     77    array_unshift( $links, $settings_link );
     78    return $links;
    8179}
    8280
    83 $plugin = plugin_basename(__FILE__);
    84 add_filter("plugin_action_links_$plugin", 'full_screen_images_settings_link' );
     81$plugin = plugin_basename( __FILE__ );
     82add_filter( "plugin_action_links_$plugin", 'full_screen_images_settings_link' );
  • full-screen-images/trunk/README.txt

    r2106572 r3081226  
    33Tags: image, full screen
    44Requires at least: 3.0.1
    5 Tested up to: 5.2.1
    6 Stable tag: 1.0.1
     5Tested up to: 6.5.2
     6Stable tag: 1.0.2
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4141
    4242== Changelog ==
     43= 1.0.2 =
     44* PHPCS Fixes.
     45* Tested upto WordPress 6.5.2
    4346
    4447= 1.0.1 =
  • full-screen-images/trunk/full-screen-images.php

    r1675351 r3081226  
    1111* Plugin URI:        https://github.com/kiranpotphode/full-screen-images
    1212* Description:       Viewing images on the full screen. Using the touch/mouse position for panning.
    13 * Version:           1.0.1
     13* Version:           1.0.2
    1414* Author:            Kiran Potphode
    1515* Author URI:        https://github.com/kiranpotphode/full-screen-images
     
    3636function full_screen_images_scripts() {
    3737
    38     wp_enqueue_script( 'intense-images-js', plugin_dir_url( __FILE__ ) . 'js/intense.min.js', array( 'jquery' ), false, false);
     38    wp_enqueue_script( 'intense-images-js', plugin_dir_url( __FILE__ ) . 'js/intense.min.js', array( 'jquery' ), false, false );
    3939
    40     wp_enqueue_script( 'full-screen-images-js', plugin_dir_url( __FILE__ ) . 'js/full-screen-images.js', array( 'jquery' ), false, false);
    41 
     40    wp_enqueue_script( 'full-screen-images-js', plugin_dir_url( __FILE__ ) . 'js/full-screen-images.js', array( 'jquery' ), false, false );
    4241}
    4342
     
    6766        echo '<p>This plugin is based on <a href="https://github.com/tholman/intense-images" target="_blank">Intense Image Viewer</a> javascript liabrary by <a href="https://github.com/tholman" target="_blank">Tim Holman</a></p>';
    6867    echo '</div>';
    69 
    7068}
    7169
    72 add_action('admin_menu', 'register_full_screen_images_submenu_page');
     70add_action( 'admin_menu', 'register_full_screen_images_submenu_page' );
    7371
    7472/**
    7573 *  Add settings link on plugin page
    7674 */
    77 function full_screen_images_settings_link($links) {
    78   $settings_link = '<a href="options-general.php?page=full-screen-images-page.php">More Info</a>';
    79   array_unshift($links, $settings_link);
    80   return $links;
     75function full_screen_images_settings_link( $links ) {
     76    $settings_link = '<a href="options-general.php?page=full-screen-images-page.php">More Info</a>';
     77    array_unshift( $links, $settings_link );
     78    return $links;
    8179}
    8280
    83 $plugin = plugin_basename(__FILE__);
    84 add_filter("plugin_action_links_$plugin", 'full_screen_images_settings_link' );
     81$plugin = plugin_basename( __FILE__ );
     82add_filter( "plugin_action_links_$plugin", 'full_screen_images_settings_link' );
Note: See TracChangeset for help on using the changeset viewer.