Plugin Directory

Changeset 2307111


Ignore:
Timestamp:
05/18/2020 10:49:04 AM (6 years ago)
Author:
gpriday
Message:

1.2.6 release

Location:
so-css
Files:
3 deleted
5 edited
64 copied

Legend:

Unmodified
Added
Removed
  • so-css/tags/1.2.6/css/admin.css

    r2238827 r2307111  
    5757#so-custom-css-info *:last-child {
    5858  margin-bottom: 0;
     59}
     60#so-custom-css-info p.submit {
     61  padding-top: 1px;
     62}
     63#so-custom-css-info p.submit .button-primary {
     64  font-size: 14px;
     65  min-height: 40px;
     66  width: 100%;
    5967}
    6068#so-custom-css-revisions ol {
     
    334342  border-radius: 0;
    335343  font-size: 12px;
     344}
     345#so-custom-css-properties .sections .fields-table .socss-field-number input {
     346  margin: 0;
     347  width: 120px;
    336348}
    337349#so-custom-css-properties .sections .fields-table .minicolors input {
  • so-css/tags/1.2.6/lang/so-css.pot

    r2238827 r2307111  
    533533msgstr ""
    534534
    535 #: tpl/page.php:42
     535#: tpl/page.php:45
    536536msgid "Get The Full Experience"
    537537msgstr ""
    538538
    539 #: tpl/page.php:44
     539#: tpl/page.php:47
    540540msgid "%sSiteOrigin Premium%s adds a <strong>Google Web Font</strong> selector to SiteOrigin CSS so you can easily change any font."
    541541msgstr ""
    542542
    543 #: tpl/page.php:52
     543#: tpl/page.php:55
    544544msgid "Getting Started Video"
    545545msgstr ""
    546546
    547 #: tpl/page.php:53
     547#: tpl/page.php:56
    548548msgid "Dismiss"
    549549msgstr ""
    550550
    551 #: tpl/page.php:62
     551#: tpl/page.php:65
    552552msgid "CSS Revisions"
    553553msgstr ""
    554554
    555 #: tpl/page.php:64
     555#: tpl/page.php:67
    556556msgid "Are you sure you want to load this revision?"
    557557msgstr ""
  • so-css/tags/1.2.6/readme.txt

    r2278153 r2307111  
    22Tags: css, design, edit, customize
    33Requires at least: 3.9
    4 Tested up to: 5.4
    5 Stable tag: 1.2.5
    6 Build time: 2020-02-05T09:22:01+02:00
     4Tested up to: 5.5
     5Stable tag: 1.2.6
     6Build time: 2020-05-18T12:43:57+02:00
    77License: GPLv2 or later
    88Contributors: gpriday
     
    6565
    6666== Changelog ==
     67
     68= 1.2.6 - 15 May 2020 =
     69* Minor visual editor form styling fixes.
     70* Resolved PHP 7.4 `preg_replace()` warning.
     71* Moved the basic editor Save button to the sidebar.
    6772
    6873= 1.2.5 - 05 February 2020 =
  • so-css/tags/1.2.6/so-css.php

    r2238827 r2307111  
    33Plugin Name: SiteOrigin CSS
    44Description: An advanced CSS editor from SiteOrigin.
    5 Version: 1.2.5
     5Version: 1.2.6
    66Author: SiteOrigin
    77Author URI: https://siteorigin.com
     
    1515include plugin_dir_path( __FILE__ ) . 'inc/legacy.php';
    1616
    17 define( 'SOCSS_VERSION', '1.2.5' );
     17define( 'SOCSS_VERSION', '1.2.6' );
    1818define( 'SOCSS_JS_SUFFIX', '.min' );
    1919
     
    677677        // Remove all CSS comments
    678678        $regex = array(
    679             "`^([\t\s]+)`ism"                       => '',
    680             "`^\/\*(.+?)\*\/`ism"                   => "",
    681             "`([\n\A;]+)\/\*(.+?)\*\/`ism"          => "$1",
    682             "`([\n\A;\s]+)//(.+?)[\n\r]`ism"        => "$1\n",
    683             "`(^[\r\n]*|[\r\n]+)[\s\t]*[\r\n]+`ism" => "\n"
     679            "`^([\t\s]+)`ism"                             => '',
     680            "`^\/\*(.+?)\*\/`ism"                         => "",
     681            "`(\A|[\n;]+)/\*[^*]*\*+(?:[^/*][^*]*\*+)*/`" => "$1",
     682            "`(^[\r\n]*|[\r\n]+)[\s\t]*[\r\n]+`ism"       => "\n"
    684683        );
    685684        $css = preg_replace( array_keys( $regex ), $regex, $css );
     
    725724            return;
    726725        }
    727        
     726
    728727        $regex = array(
    729             "`^([\t\s]+)`ism"                       => '',
    730             "`^\/\*(.+?)\*\/`ism"                   => "",
    731             "`([\n\A;]+)\/\*(.+?)\*\/`ism"          => "$1",
    732             "`([\n\A;\s]+)//(.+?)[\n\r]`ism"        => "$1\n",
    733             "`(^[\r\n]*|[\r\n]+)[\s\t]*[\r\n]+`ism" => "\n"
     728            "`^([\t\s]+)`ism"                             => '',
     729            "`^\/\*(.+?)\*\/`ism"                         => "",
     730            "`(\A|[\n;]+)/\*[^*]*\*+(?:[^/*][^*]*\*+)*/`" => "$1",
     731            "`(^[\r\n]*|[\r\n]+)[\s\t]*[\r\n]+`ism"       => "\n"
    734732        );
    735733       
  • so-css/tags/1.2.6/tpl/page.php

    r2238827 r2307111  
    3737    <div id="poststuff">
    3838        <div id="so-custom-css-info">
     39            <p class="submit">
     40                <input type="submit" name="siteorigin_custom_css_save" class="button-primary" value="<?php esc_attr_e( $save_button_label ); ?>" />
     41            </p>
    3942
    4043            <?php if( $this->display_teaser() ) : ?>
     
    103106            <p class="description"><?php esc_html_e( $editor_description ) ?></p>
    104107
    105             <p class="submit">
    106                 <input type="submit" name="siteorigin_custom_css_save" class="button-primary" value="<?php esc_attr_e( $save_button_label ); ?>" />
    107             </p>
    108 
    109108            <div class="custom-css-preview">
    110109
  • so-css/trunk/css/admin.css

    r2238827 r2307111  
    5757#so-custom-css-info *:last-child {
    5858  margin-bottom: 0;
     59}
     60#so-custom-css-info p.submit {
     61  padding-top: 1px;
     62}
     63#so-custom-css-info p.submit .button-primary {
     64  font-size: 14px;
     65  min-height: 40px;
     66  width: 100%;
    5967}
    6068#so-custom-css-revisions ol {
     
    334342  border-radius: 0;
    335343  font-size: 12px;
     344}
     345#so-custom-css-properties .sections .fields-table .socss-field-number input {
     346  margin: 0;
     347  width: 120px;
    336348}
    337349#so-custom-css-properties .sections .fields-table .minicolors input {
  • so-css/trunk/lang/so-css.pot

    r2238827 r2307111  
    533533msgstr ""
    534534
    535 #: tpl/page.php:42
     535#: tpl/page.php:45
    536536msgid "Get The Full Experience"
    537537msgstr ""
    538538
    539 #: tpl/page.php:44
     539#: tpl/page.php:47
    540540msgid "%sSiteOrigin Premium%s adds a <strong>Google Web Font</strong> selector to SiteOrigin CSS so you can easily change any font."
    541541msgstr ""
    542542
    543 #: tpl/page.php:52
     543#: tpl/page.php:55
    544544msgid "Getting Started Video"
    545545msgstr ""
    546546
    547 #: tpl/page.php:53
     547#: tpl/page.php:56
    548548msgid "Dismiss"
    549549msgstr ""
    550550
    551 #: tpl/page.php:62
     551#: tpl/page.php:65
    552552msgid "CSS Revisions"
    553553msgstr ""
    554554
    555 #: tpl/page.php:64
     555#: tpl/page.php:67
    556556msgid "Are you sure you want to load this revision?"
    557557msgstr ""
  • so-css/trunk/readme.txt

    r2278153 r2307111  
    22Tags: css, design, edit, customize
    33Requires at least: 3.9
    4 Tested up to: 5.4
    5 Stable tag: 1.2.5
    6 Build time: 2020-02-05T09:22:01+02:00
     4Tested up to: 5.5
     5Stable tag: 1.2.6
     6Build time: 2020-05-18T12:43:57+02:00
    77License: GPLv2 or later
    88Contributors: gpriday
     
    6565
    6666== Changelog ==
     67
     68= 1.2.6 - 15 May 2020 =
     69* Minor visual editor form styling fixes.
     70* Resolved PHP 7.4 `preg_replace()` warning.
     71* Moved the basic editor Save button to the sidebar.
    6772
    6873= 1.2.5 - 05 February 2020 =
  • so-css/trunk/so-css.php

    r2238827 r2307111  
    33Plugin Name: SiteOrigin CSS
    44Description: An advanced CSS editor from SiteOrigin.
    5 Version: 1.2.5
     5Version: 1.2.6
    66Author: SiteOrigin
    77Author URI: https://siteorigin.com
     
    1515include plugin_dir_path( __FILE__ ) . 'inc/legacy.php';
    1616
    17 define( 'SOCSS_VERSION', '1.2.5' );
     17define( 'SOCSS_VERSION', '1.2.6' );
    1818define( 'SOCSS_JS_SUFFIX', '.min' );
    1919
     
    677677        // Remove all CSS comments
    678678        $regex = array(
    679             "`^([\t\s]+)`ism"                       => '',
    680             "`^\/\*(.+?)\*\/`ism"                   => "",
    681             "`([\n\A;]+)\/\*(.+?)\*\/`ism"          => "$1",
    682             "`([\n\A;\s]+)//(.+?)[\n\r]`ism"        => "$1\n",
    683             "`(^[\r\n]*|[\r\n]+)[\s\t]*[\r\n]+`ism" => "\n"
     679            "`^([\t\s]+)`ism"                             => '',
     680            "`^\/\*(.+?)\*\/`ism"                         => "",
     681            "`(\A|[\n;]+)/\*[^*]*\*+(?:[^/*][^*]*\*+)*/`" => "$1",
     682            "`(^[\r\n]*|[\r\n]+)[\s\t]*[\r\n]+`ism"       => "\n"
    684683        );
    685684        $css = preg_replace( array_keys( $regex ), $regex, $css );
     
    725724            return;
    726725        }
    727        
     726
    728727        $regex = array(
    729             "`^([\t\s]+)`ism"                       => '',
    730             "`^\/\*(.+?)\*\/`ism"                   => "",
    731             "`([\n\A;]+)\/\*(.+?)\*\/`ism"          => "$1",
    732             "`([\n\A;\s]+)//(.+?)[\n\r]`ism"        => "$1\n",
    733             "`(^[\r\n]*|[\r\n]+)[\s\t]*[\r\n]+`ism" => "\n"
     728            "`^([\t\s]+)`ism"                             => '',
     729            "`^\/\*(.+?)\*\/`ism"                         => "",
     730            "`(\A|[\n;]+)/\*[^*]*\*+(?:[^/*][^*]*\*+)*/`" => "$1",
     731            "`(^[\r\n]*|[\r\n]+)[\s\t]*[\r\n]+`ism"       => "\n"
    734732        );
    735733       
  • so-css/trunk/tpl/page.php

    r2238827 r2307111  
    3737    <div id="poststuff">
    3838        <div id="so-custom-css-info">
     39            <p class="submit">
     40                <input type="submit" name="siteorigin_custom_css_save" class="button-primary" value="<?php esc_attr_e( $save_button_label ); ?>" />
     41            </p>
    3942
    4043            <?php if( $this->display_teaser() ) : ?>
     
    103106            <p class="description"><?php esc_html_e( $editor_description ) ?></p>
    104107
    105             <p class="submit">
    106                 <input type="submit" name="siteorigin_custom_css_save" class="button-primary" value="<?php esc_attr_e( $save_button_label ); ?>" />
    107             </p>
    108 
    109108            <div class="custom-css-preview">
    110109
Note: See TracChangeset for help on using the changeset viewer.