Plugin Directory

Changeset 523227


Ignore:
Timestamp:
03/25/2012 01:33:56 AM (14 years ago)
Author:
malcalevak
Message:

v1.1.2 Release

  1. Utilizes built in Farbtastic javascripts.
  2. Consolidated load_farbtastic and keypress.js
  3. Moved css files to css folder.
Location:
wp-slimbox2/trunk
Files:
6 added
5 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • wp-slimbox2/trunk/index.php

    r509132 r523227  
    55Description: A Wordpress implementation of the Slimbox2 javascript, utilizing jQuery, originally written by Christophe Beyls. Requires WP 2.8+
    66Author: Greg Yingling (malcalevak)
    7 Version: 1.1.1
     7Version: 1.1.2
    88Author URI: http://transientmonkey.com/
    99
    10 Copyright 2010 Transient Monkey, LLC
     10Copyright 2012 Transient Monkey, LLC
    1111
    1212This program is free software; you can redistribute it and/or modify
     
    5454
    5555function wp_slimbox_styles() {
    56     wp_register_style('slimbox2', WP_PLUGIN_URL.'/wp-slimbox2/slimbox2.css','','1.1','screen');
     56    wp_register_style('slimbox2', WP_PLUGIN_URL.'/wp-slimbox2/css/slimbox2.css','','1.1','screen');
    5757    wp_enqueue_style('slimbox2');
    5858    if(__('LTR', 'wp-slimbox2')=='RTL') {
    59         wp_register_style('slimbox2-RTL', WP_PLUGIN_URL.'/wp-slimbox2/slimbox2-rtl.css','','1.0','screen');
     59        wp_register_style('slimbox2-RTL', WP_PLUGIN_URL.'/wp-slimbox2/css/slimbox2-rtl.css','','1.0','screen');
    6060        wp_enqueue_style('slimbox2-RTL');
    6161    }
     
    142142
    143143function slimbox_admin_init() {
    144     wp_register_style('farbtastic', WP_PLUGIN_URL.'/wp-slimbox2/javascript/farbtastic/farbtastic.css','','1.0','screen');
    145     wp_register_script('jquery_farbtastic', WP_PLUGIN_URL.'/wp-slimbox2/javascript/farbtastic/farbtastic.js',array('jquery'), '1.2');
    146     wp_register_script('load_farbtastic', WP_PLUGIN_URL.'/wp-slimbox2/javascript/farbtastic/load_farbtastic.js',array('jquery_farbtastic'), '1.0');
    147     wp_register_script('load_keypress', WP_PLUGIN_URL.'/wp-slimbox2/javascript/keypress.js',array('jquery'), '1.1');
     144    wp_register_script('load_admin', WP_PLUGIN_URL.'/wp-slimbox2/javascript/admin.js',array('farbtastic'), '1.0');
    148145    register_setting( 'wp_slimbox_options', 'wp_slimbox', 'wp_slimbox_validate');
    149146}
     
    154151
    155152function slimbox_adminhead() {
    156     wp_enqueue_script('load_farbtastic');
    157     wp_enqueue_script('load_keypress');
     153    wp_enqueue_script('load_admin');
    158154}
    159155
  • wp-slimbox2/trunk/readme.txt

    r509132 r523227  
    44Tags: slimbox, slimbox2, lightbox, jQuery, picture, photo, image, overlay, display, lightbox2
    55Requires at least: 2.8
    6 Stable Tag: 1.1.1
     6Stable Tag: 1.1.2
    77
    88A WordPress implementation of the Slimbox2 javascript.
     
    1616Support forums are generously hosted by Ryan Hellyer of PixoPoint, <a href="http://pixopoint.com/forum/index.php?board=6.0">here</a>.
    1717
    18 Recent Changes in v1.1.1:<br />
    19 1.  Fix to resolve failures experienced by some users in v1.1.
     18Recent Changes in v1.1.2:<br />
     191.  Utilizes built in Farbtastic javascripts.
     202.  Consolidated load_farbtastic and keypress.js
     213.  Moved css files to css folder.
    2022
    2123== Installation ==
     
    7173
    7274== Changelog ==
     75= 1.1.2 - Mar-24-2012 =
     76* Utilizes built in Farbtastic javascripts.
     77* Consolidated load_farbtastic and keypress.js
     78* Moved CSS files to css folder.
    7379= 1.1.1 - Feb-22-2012 =
    7480* Fix to resolve failures experienced by some users in v1.1.
Note: See TracChangeset for help on using the changeset viewer.