Plugin Directory

Changeset 2098382


Ignore:
Timestamp:
05/31/2019 08:06:56 AM (7 years ago)
Author:
frontkom
Message:

Release version 1.1.7

Location:
cloud-blocks
Files:
2 added
1 deleted
4 edited
43 copied

Legend:

Unmodified
Added
Removed
  • cloud-blocks/tags/1.1.7/cloud-blocks.php

    r2065581 r2098382  
    22/*
    33Plugin Name: Cloud Blocks
    4 Version: 1.1.6
     4Version: 1.1.7
    55Description: Your library of Gutenberg blocks in the cloud
    66Author: Frontkom
     
    3030// Plugin version .
    3131if ( ! defined( 'FGC_VERSION' ) ) {
    32     define( 'FGC_VERSION', '1.1.5' );
     32    define( 'FGC_VERSION', '1.1.7' );
    3333}
    3434
     
    4949register_deactivation_hook( __FILE__, array( 'CloudBlocks\Blocks\Explore', 'cron_unschedule' ) );
    5050
     51// Register uninstall hook
     52register_uninstall_hook( __FILE__, array( 'CloudBlocks\Uninstall', 'init' ) );
     53
    5154
    5255// Initiate plugin
  • cloud-blocks/tags/1.1.7/core/Activator.php

    r2025157 r2098382  
    1717     * @param object
    1818     */
    19   public static $current_db_version = '1.3';
     19  public static $current_db_version = '1.4';
    2020
    2121  /**
     
    9090        block_version varchar(10) DEFAULT '' NOT NULL,
    9191        block_manifest text DEFAULT '' NOT NULL,
    92         block_installed datetime DEFAULT CURRENT_TIMESTAMP,
    93         block_updated datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
     92        block_installed datetime,
     93        block_updated datetime ON UPDATE CURRENT_TIMESTAMP,
    9494        available_version varchar(10) DEFAULT '' NOT NULL,
    9595        PRIMARY KEY  (id)
  • cloud-blocks/tags/1.1.7/docs/changelog.md

    r2065589 r2098382  
    11## Changelog
     2
     3#### 1.1.7
     4* **Fix**: Fix db error in activator hook
     5* **Change**: Dlete db table on plugin uninstallation
    26
    37#### 1.1.6
  • cloud-blocks/tags/1.1.7/readme.txt

    r2065589 r2098382  
    11=== Cloud Blocks ===
    2 Contributors: frontkom, foadyousefi, ajkstyle, ssousa
     2Contributors: frontkom, foadyousefi, ajotka, ssousa
    33Author URI: https://frontkom.no
    44Tags: gutenberg, pagebuilder, blocks, gutenberg blocks, page builder
    55Requires at least: 4.9.8
    6 Tested up to: 5.1
     6Tested up to: 5.2
    77Requires PHP: 5.4
    8 Stable tag: 1.1.6
     8Stable tag: 1.1.7
    99License: GPLv3
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    7575
    7676== Changelog ==
     77
     78= 1.1.7 =
     79* Fix: Fix db error in activator hook
     80* Change: Dlete db table on plugin uninstallation
    7781
    7882= 1.1.6 =
  • cloud-blocks/trunk/cloud-blocks.php

    r2065581 r2098382  
    22/*
    33Plugin Name: Cloud Blocks
    4 Version: 1.1.6
     4Version: 1.1.7
    55Description: Your library of Gutenberg blocks in the cloud
    66Author: Frontkom
     
    3030// Plugin version .
    3131if ( ! defined( 'FGC_VERSION' ) ) {
    32     define( 'FGC_VERSION', '1.1.5' );
     32    define( 'FGC_VERSION', '1.1.7' );
    3333}
    3434
     
    4949register_deactivation_hook( __FILE__, array( 'CloudBlocks\Blocks\Explore', 'cron_unschedule' ) );
    5050
     51// Register uninstall hook
     52register_uninstall_hook( __FILE__, array( 'CloudBlocks\Uninstall', 'init' ) );
     53
    5154
    5255// Initiate plugin
  • cloud-blocks/trunk/core/Activator.php

    r2025157 r2098382  
    1717     * @param object
    1818     */
    19   public static $current_db_version = '1.3';
     19  public static $current_db_version = '1.4';
    2020
    2121  /**
     
    9090        block_version varchar(10) DEFAULT '' NOT NULL,
    9191        block_manifest text DEFAULT '' NOT NULL,
    92         block_installed datetime DEFAULT CURRENT_TIMESTAMP,
    93         block_updated datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
     92        block_installed datetime,
     93        block_updated datetime ON UPDATE CURRENT_TIMESTAMP,
    9494        available_version varchar(10) DEFAULT '' NOT NULL,
    9595        PRIMARY KEY  (id)
  • cloud-blocks/trunk/docs/changelog.md

    r2065589 r2098382  
    11## Changelog
     2
     3#### 1.1.7
     4* **Fix**: Fix db error in activator hook
     5* **Change**: Dlete db table on plugin uninstallation
    26
    37#### 1.1.6
  • cloud-blocks/trunk/readme.txt

    r2065589 r2098382  
    11=== Cloud Blocks ===
    2 Contributors: frontkom, foadyousefi, ajkstyle, ssousa
     2Contributors: frontkom, foadyousefi, ajotka, ssousa
    33Author URI: https://frontkom.no
    44Tags: gutenberg, pagebuilder, blocks, gutenberg blocks, page builder
    55Requires at least: 4.9.8
    6 Tested up to: 5.1
     6Tested up to: 5.2
    77Requires PHP: 5.4
    8 Stable tag: 1.1.6
     8Stable tag: 1.1.7
    99License: GPLv3
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    7575
    7676== Changelog ==
     77
     78= 1.1.7 =
     79* Fix: Fix db error in activator hook
     80* Change: Dlete db table on plugin uninstallation
    7781
    7882= 1.1.6 =
Note: See TracChangeset for help on using the changeset viewer.