Plugin Directory

Changeset 2133870 for loftloader


Ignore:
Timestamp:
08/05/2019 01:20:58 AM (7 years ago)
Author:
loftocean
Message:

update to version 2.1.9

Location:
loftloader
Files:
71 added
8 edited

Legend:

Unmodified
Added
Removed
  • loftloader/trunk/assets/css/loftloader-settings.css

    r2115108 r2133870  
    77 * Author URI: http://www.loftocean.com
    88 * Description: LoftLoader (Lite Version) is a plugin for adding beautiful and smooth preload animation to your WordPress website. With setting options, you can choose from preset animations, add custom logo image, choose colours to match your branding, and amuse and impress your visitors while loading site content.
    9  * Version: 2.1.8
     9 * Version: 2.1.9
    1010*/
    1111@import url(https://fonts.googleapis.com/css?family=Lato:400,600);
  • loftloader/trunk/assets/css/loftloader.css

    r2115108 r2133870  
    77 * Author URI: http://www.loftocean.com
    88 * Description: LoftLoader (Lite Version) is a plugin for adding beautiful and smooth preload animation to your WordPress website. With setting options, you can choose from preset animations, add custom logo image, choose colours to match your branding, and amuse and impress your visitors while loading site content.
    9  * Version: 2.1.8
     9 * Version: 2.1.9
    1010*/
    1111@-webkit-keyframes spinReturn {
  • loftloader/trunk/assets/scss/loftloader-settings.scss

    r2115108 r2133870  
    77 * Author URI: http://www.loftocean.com
    88 * Description: LoftLoader (Lite Version) is a plugin for adding beautiful and smooth preload animation to your WordPress website. With setting options, you can choose from preset animations, add custom logo image, choose colours to match your branding, and amuse and impress your visitors while loading site content.
    9  * Version: 2.1.8
     9 * Version: 2.1.9
    1010*/
    1111
  • loftloader/trunk/assets/scss/loftloader.scss

    r2115108 r2133870  
    77 * Author URI: http://www.loftocean.com
    88 * Description: LoftLoader (Lite Version) is a plugin for adding beautiful and smooth preload animation to your WordPress website. With setting options, you can choose from preset animations, add custom logo image, choose colours to match your branding, and amuse and impress your visitors while loading site content.
    9  * Version: 2.1.8
     9 * Version: 2.1.9
    1010*/
    1111
  • loftloader/trunk/inc/class-loftloader-upgrade.php

    r2115108 r2133870  
    22if ( ! class_exists( 'LoftLoader_Upgrade' ) ) {
    33    class LoftLoader_Upgrade {
    4         private $version ='2.1.8';
     4        private $version ='2.1.9';
    55        function __construct(){
    66            $old_version = get_option('loftloader_lite_version', '1.0');
  • loftloader/trunk/languages/loftloader.pot

    r2115108 r2133870  
    11# Copyright (C) 2019 LoftLoader
    22# This file is distributed under the same license as the LoftLoader package.
    3 #, fuzzy
    43msgid ""
    54msgstr ""
    6 "Project-Id-Version: LoftLoader 2.1.8\n"
     5"Project-Id-Version: LoftLoader 2.1.9\n"
    76"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/loftloader\n"
    8 "POT-Creation-Date: 2019-06-30 10:55+0800\n"
     7"POT-Creation-Date: 2019-08-05 01:05:50+00:00\n"
    98"MIME-Version: 1.0\n"
    109"Content-Type: text/plain; charset=UTF-8\n"
     
    1312"Last-Translator: Suihai <cain@loftocean.com>\n"
    1413"Language-Team: Loft Ocean <cain@loftocean.com>\n"
    15 "X-Generator: Poedit 2.2.3\n"
    1614
    1715#: inc/any-page/class-loftloader-any-page.php:24
     
    198196msgid "Settings"
    199197msgstr ""
    200 
    201198#. Plugin Name of the plugin/theme
    202199msgid "LoftLoader"
     
    204201
    205202#. Plugin URI of the plugin/theme
     203msgid "http://www.loftocean.com/"
     204msgstr ""
     205
     206#. Description of the plugin/theme
     207msgid "An easy to use plugin to add an animated preloader to your website with fully customisations."
     208msgstr ""
     209
     210#. Author of the plugin/theme
     211msgid "Loft Ocean"
     212msgstr ""
     213
    206214#. Author URI of the plugin/theme
    207215msgid "http://www.loftocean.com/"
    208216msgstr ""
    209 
    210 #. Description of the plugin/theme
    211 msgid ""
    212 "An easy to use plugin to add an animated preloader to your website with "
    213 "fully customisations."
    214 msgstr ""
    215 
    216 #. Author of the plugin/theme
    217 msgid "Loft Ocean"
    218 msgstr ""
  • loftloader/trunk/loftloader.php

    r2115108 r2133870  
    44Plugin URI: http://www.loftocean.com/
    55Description: An easy to use plugin to add an animated preloader to your website with fully customisations.
    6 Version: 2.1.8
     6Version: 2.1.9
    77Author: Loft Ocean
    88Author URI: http://www.loftocean.com/
     
    102102    add_action( 'after_setup_theme', 'loftloader_init' );
    103103    function loftloader_init() {
    104         if ( ! class_exists( 'LoftLoaderPro' ) ) {
     104        if ( ! class_exists( 'LoftLoader_Pro' ) ) {
    105105            new LoftLoader();
    106106        }
     
    109109    add_action( 'plugins_loaded', 'loftloader_any_page' );
    110110    function loftloader_any_page() {
    111         $enable_any_page = get_option( 'loftloader_enable_any_page', '' );
    112         if ( $enable_any_page === 'on' ) {
    113             require_once LOFTLOADER_ROOT . 'inc/any-page/class-loftloader-any-page.php';
     111        if ( ! class_exists( 'LoftLoader_Pro' ) ) {
     112            $enable_any_page = get_option( 'loftloader_enable_any_page', '' );
     113            if ( $enable_any_page === 'on' ) {
     114                require_once LOFTLOADER_ROOT . 'inc/any-page/class-loftloader-any-page.php';
     115            }
    114116        }
    115117    }
     
    118120    add_filter( 'customize_loaded_components', 'loftloader_remove_widget_panels', 1000 );
    119121    function loftloader_remove_widget_panels( $components ) {
    120         if ( ! class_exists( 'LoftLoaderPro' ) && ( isset( $_GET['plugin'] ) && ( $_GET['plugin'] === 'loftloader-lite' ) ) ) {
     122        if ( ! class_exists( 'LoftLoader_Pro' ) && ( isset( $_GET['plugin'] ) && ( $_GET['plugin'] === 'loftloader-lite' ) ) ) {
    121123            foreach ( $components as $i => $c ) {
    122124                if ( false !== $i ) {
  • loftloader/trunk/readme.txt

    r2115108 r2133870  
    55Requires at least: 4.3
    66Tested up to: 5.2
    7 Stable tag: 2.1.8
     7Stable tag: 2.1.9
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    9595
    9696== Changelog ==
     97= 2.1.9 =
     98* Fixed: Compatibility issue with plugin Loftloader Pro when both plugins activated
     99
    97100= 2.1.8 =
    98101* Fixed: Compatibility issue with maintenance/coming soon plugins
Note: See TracChangeset for help on using the changeset viewer.