Plugin Directory

Changeset 1205681


Ignore:
Timestamp:
07/24/2015 11:15:44 AM (11 years ago)
Author:
EdHynan
Message:

revision 3.0.2: small fixes for WP 4.2.3

Location:
swfput
Files:
20 edited
1 copied

Legend:

Unmodified
Added
Removed
  • swfput/tags/3.0.2/Makefile

    r1192893 r1205681  
    22# License: GNU GPLv3 (see http://www.gnu.org/licenses/gpl-3.0.html)
    33
    4 PRJVERS = 3.0.1
     4PRJVERS = 3.0.2
    55PRJSTEM = swfput
    66PRJNAME = $(PRJSTEM)-$(PRJVERS)
  • swfput/tags/3.0.2/README.html

    r1192893 r1205681  
    11<!-- Creator     : groff version 1.22.2 -->
    2 <!-- CreationDate: Sun Jul  5 15:09:04 2015 -->
     2<!-- CreationDate: Fri Jul 24 07:04:40 2015 -->
    33<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    44"http://www.w3.org/TR/html4/loose.dtd">
  • swfput/tags/3.0.2/js/putswf_tpl.php

    r1146360 r1205681  
    199199                    ? d.attachment.attributes : false,
    200200                sctag   = oldatts.shortcode.tag,
    201                 caption = oldatts.caption || oldatts.shortcode.content; //( newatts && newatts.caption ) ? newatts.caption : oldatts.content
     201                caption = oldatts.content || oldatts.shortcode.content || oldatts.caption || ''; //( newatts && ) ? newatts.caption : oldatts.content
    202202                vid_add =
    203203                    ( newatts && newatts.putswf_action === 'add_video' )
  • swfput/tags/3.0.2/locale/swfput_l10n-en_US.po

    r1192893 r1205681  
    1 # swfput 3.0.1 Pot Source
     1# swfput 3.0.2 Pot Source
    22# Copyright (C) 2013 Ed Hynan
    33# This file is distributed under the same license as the swfput package.
     
    77msgid ""
    88msgstr ""
    9 "Project-Id-Version: swfput 3.0.1\n"
     9"Project-Id-Version: swfput 3.0.2\n"
    1010"Report-Msgid-Bugs-To: edhynan@gmail.com\n"
    11 "POT-Creation-Date: 2015-07-03 13:09-0400\n"
    12 "PO-Revision-Date: 2015-07-03 13:09 EDT\n"
     11"POT-Creation-Date: 2015-07-24 07:04-0400\n"
     12"PO-Revision-Date: 2015-07-24 07:04 EDT\n"
    1313"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
    1414"Language-Team: LANGUAGE <LL@li.org>\n"
  • swfput/tags/3.0.2/locale/swfput_l10n.pot

    r1192893 r1205681  
    1 # swfput 3.0.1 Pot Source
     1# swfput 3.0.2 Pot Source
    22# Copyright (C) 2013 Ed Hynan
    33# This file is distributed under the same license as the swfput package.
     
    77msgid ""
    88msgstr ""
    9 "Project-Id-Version: swfput 3.0.1\n"
     9"Project-Id-Version: swfput 3.0.2\n"
    1010"Report-Msgid-Bugs-To: edhynan@gmail.com\n"
    11 "POT-Creation-Date: 2015-07-03 13:09-0400\n"
     11"POT-Creation-Date: 2015-07-24 07:04-0400\n"
    1212"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1313"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  • swfput/tags/3.0.2/readme.txt

    r1192893 r1205681  
    55Requires at least: 3.0.2
    66Tested up to: 4.3
    7 Stable tag: 3.0.1
     7Stable tag: 3.0.2
    88Text Domain: swfput_l10n
    99License: GPLv3 or later
     
    281281
    282282== Changelog ==
     283
     284= 3.0.2 =
     285* The just released WordPress 4.2.3 security revision includes
     286    a change that appeared in WP 4.3beta1.  This release of SWFPut
     287    adjusts a version check so that the changes of SWFPut 3.0.1
     288    take effect for WordPress 4.2.3.
     289* Fixed bug in new visual editor dialog code that caused changes
     290    in the caption field to be lost on switching to another tab.
    283291
    284292= 3.0.1 =
     
    557565== Upgrade Notice ==
    558566
     567= 3.0.2 =
     568* The just released WordPress 4.2.3 security revision includes
     569    a change that appeared in WP 4.3beta1.  This release of SWFPut
     570    adjusts a version check so that the changes of SWFPut 3.0.1
     571    take effect for WordPress 4.2.3.
     572* Fixed bug in new visual editor dialog code that caused changes
     573    in the caption field to be lost on switching to another tab.
     574
    559575= 3.0.1 =
    560576* Fix new mce-view visual editor presentation with WP 4.3beta1.
  • swfput/tags/3.0.2/swfput.php

    r1192893 r1205681  
    44Plugin URI: http://agalena.nfshost.com/b1/swfput-html5-flash-wordpress-plugin
    55Description: Add Flash and HTML5 video to WordPress posts, pages, and widgets, from arbitrary URI's or media library ID's or files in your media upload directory tree (including uploads not in the WordPress media library).
    6 Version: 3.0.1
     6Version: 3.0.2
    77Author: Ed Hynan
    88Author URI: http://agalena.nfshost.com/b1/
     
    114114   
    115115    // this version
    116     const plugin_version = '3.0.1';
     116    const plugin_version = '3.0.2';
    117117   
    118118    // the widget class name
     
    865865       
    866866        if ( $shiny ) {
    867             $v = (4 << 24) | (3 << 16) | (0 << 8) | 0;
     867            $v = (4 << 24) | (2 << 16) | (3 << 8) | 0;
    868868            $shiny = self::wpv_min($v);
    869869       
  • swfput/tags/3.0.2/version.sh

    r1192893 r1205681  
    33VMAJOR=3
    44VMINOR=0
    5 RMAJOR=1
     5RMAJOR=2
    66RMINOR=0
    77
  • swfput/trunk/Makefile

    r1192893 r1205681  
    22# License: GNU GPLv3 (see http://www.gnu.org/licenses/gpl-3.0.html)
    33
    4 PRJVERS = 3.0.1
     4PRJVERS = 3.0.2
    55PRJSTEM = swfput
    66PRJNAME = $(PRJSTEM)-$(PRJVERS)
  • swfput/trunk/README.html

    r1192893 r1205681  
    11<!-- Creator     : groff version 1.22.2 -->
    2 <!-- CreationDate: Sun Jul  5 15:09:04 2015 -->
     2<!-- CreationDate: Fri Jul 24 07:04:40 2015 -->
    33<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    44"http://www.w3.org/TR/html4/loose.dtd">
  • swfput/trunk/js/putswf_tpl.php

    r1146360 r1205681  
    199199                    ? d.attachment.attributes : false,
    200200                sctag   = oldatts.shortcode.tag,
    201                 caption = oldatts.caption || oldatts.shortcode.content; //( newatts && newatts.caption ) ? newatts.caption : oldatts.content
     201                caption = oldatts.content || oldatts.shortcode.content || oldatts.caption || ''; //( newatts && ) ? newatts.caption : oldatts.content
    202202                vid_add =
    203203                    ( newatts && newatts.putswf_action === 'add_video' )
  • swfput/trunk/locale/swfput_l10n-en_US.po

    r1192893 r1205681  
    1 # swfput 3.0.1 Pot Source
     1# swfput 3.0.2 Pot Source
    22# Copyright (C) 2013 Ed Hynan
    33# This file is distributed under the same license as the swfput package.
     
    77msgid ""
    88msgstr ""
    9 "Project-Id-Version: swfput 3.0.1\n"
     9"Project-Id-Version: swfput 3.0.2\n"
    1010"Report-Msgid-Bugs-To: edhynan@gmail.com\n"
    11 "POT-Creation-Date: 2015-07-03 13:09-0400\n"
    12 "PO-Revision-Date: 2015-07-03 13:09 EDT\n"
     11"POT-Creation-Date: 2015-07-24 07:04-0400\n"
     12"PO-Revision-Date: 2015-07-24 07:04 EDT\n"
    1313"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
    1414"Language-Team: LANGUAGE <LL@li.org>\n"
  • swfput/trunk/locale/swfput_l10n.pot

    r1192893 r1205681  
    1 # swfput 3.0.1 Pot Source
     1# swfput 3.0.2 Pot Source
    22# Copyright (C) 2013 Ed Hynan
    33# This file is distributed under the same license as the swfput package.
     
    77msgid ""
    88msgstr ""
    9 "Project-Id-Version: swfput 3.0.1\n"
     9"Project-Id-Version: swfput 3.0.2\n"
    1010"Report-Msgid-Bugs-To: edhynan@gmail.com\n"
    11 "POT-Creation-Date: 2015-07-03 13:09-0400\n"
     11"POT-Creation-Date: 2015-07-24 07:04-0400\n"
    1212"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1313"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  • swfput/trunk/readme.txt

    r1192893 r1205681  
    55Requires at least: 3.0.2
    66Tested up to: 4.3
    7 Stable tag: 3.0.1
     7Stable tag: 3.0.2
    88Text Domain: swfput_l10n
    99License: GPLv3 or later
     
    281281
    282282== Changelog ==
     283
     284= 3.0.2 =
     285* The just released WordPress 4.2.3 security revision includes
     286    a change that appeared in WP 4.3beta1.  This release of SWFPut
     287    adjusts a version check so that the changes of SWFPut 3.0.1
     288    take effect for WordPress 4.2.3.
     289* Fixed bug in new visual editor dialog code that caused changes
     290    in the caption field to be lost on switching to another tab.
    283291
    284292= 3.0.1 =
     
    557565== Upgrade Notice ==
    558566
     567= 3.0.2 =
     568* The just released WordPress 4.2.3 security revision includes
     569    a change that appeared in WP 4.3beta1.  This release of SWFPut
     570    adjusts a version check so that the changes of SWFPut 3.0.1
     571    take effect for WordPress 4.2.3.
     572* Fixed bug in new visual editor dialog code that caused changes
     573    in the caption field to be lost on switching to another tab.
     574
    559575= 3.0.1 =
    560576* Fix new mce-view visual editor presentation with WP 4.3beta1.
  • swfput/trunk/swfput.php

    r1192893 r1205681  
    44Plugin URI: http://agalena.nfshost.com/b1/swfput-html5-flash-wordpress-plugin
    55Description: Add Flash and HTML5 video to WordPress posts, pages, and widgets, from arbitrary URI's or media library ID's or files in your media upload directory tree (including uploads not in the WordPress media library).
    6 Version: 3.0.1
     6Version: 3.0.2
    77Author: Ed Hynan
    88Author URI: http://agalena.nfshost.com/b1/
     
    114114   
    115115    // this version
    116     const plugin_version = '3.0.1';
     116    const plugin_version = '3.0.2';
    117117   
    118118    // the widget class name
     
    865865       
    866866        if ( $shiny ) {
    867             $v = (4 << 24) | (3 << 16) | (0 << 8) | 0;
     867            $v = (4 << 24) | (2 << 16) | (3 << 8) | 0;
    868868            $shiny = self::wpv_min($v);
    869869       
  • swfput/trunk/version.sh

    r1192893 r1205681  
    33VMAJOR=3
    44VMINOR=0
    5 RMAJOR=1
     5RMAJOR=2
    66RMINOR=0
    77
Note: See TracChangeset for help on using the changeset viewer.