Changeset 2964351
- Timestamp:
- 09/08/2023 05:48:36 AM (3 years ago)
- Location:
- rocksite-sections
- Files:
-
- 42 added
- 3 edited
-
tags/1.1.3 (added)
-
tags/1.1.3/LICENSE.txt (added)
-
tags/1.1.3/README.txt (added)
-
tags/1.1.3/admin (added)
-
tags/1.1.3/admin/class-rocksite-blocks-library-admin.php (added)
-
tags/1.1.3/admin/css (added)
-
tags/1.1.3/admin/css/rocksite-blocks-library-admin.css (added)
-
tags/1.1.3/admin/index.php (added)
-
tags/1.1.3/admin/js (added)
-
tags/1.1.3/admin/js/rocksite-blocks-library-admin.js (added)
-
tags/1.1.3/admin/partials (added)
-
tags/1.1.3/admin/partials/rocksite-blocks-library-admin-display.php (added)
-
tags/1.1.3/includes (added)
-
tags/1.1.3/includes/class-rocksite-blocks-library-activator.php (added)
-
tags/1.1.3/includes/class-rocksite-blocks-library-deactivator.php (added)
-
tags/1.1.3/includes/class-rocksite-blocks-library-i18n.php (added)
-
tags/1.1.3/includes/class-rocksite-blocks-library-loader.php (added)
-
tags/1.1.3/includes/class-rocksite-blocks-library.php (added)
-
tags/1.1.3/includes/index.php (added)
-
tags/1.1.3/includes/tgm (added)
-
tags/1.1.3/includes/tgm.php (added)
-
tags/1.1.3/includes/tgm/class-tgm-plugin-activation.php (added)
-
tags/1.1.3/includes/tgm/plugins-list.php (added)
-
tags/1.1.3/index.php (added)
-
tags/1.1.3/languages (added)
-
tags/1.1.3/languages/rocksite-sections-pl_PL.mo (added)
-
tags/1.1.3/languages/rocksite-sections-pl_PL.po (added)
-
tags/1.1.3/languages/rocksite-sections.pot (added)
-
tags/1.1.3/public (added)
-
tags/1.1.3/public/class-rocksite-blocks-library-public.php (added)
-
tags/1.1.3/public/css (added)
-
tags/1.1.3/public/css/rocksite-blocks-library-public.css (added)
-
tags/1.1.3/public/img (added)
-
tags/1.1.3/public/img/blockfold-showcase.jpg (added)
-
tags/1.1.3/public/img/how-to-use-library.jpg (added)
-
tags/1.1.3/public/index.php (added)
-
tags/1.1.3/public/js (added)
-
tags/1.1.3/public/js/rocksite-blocks-library-public.js (added)
-
tags/1.1.3/public/partials (added)
-
tags/1.1.3/public/partials/rocksite-blocks-library-public-display.php (added)
-
tags/1.1.3/rocksite-blocks-library.php (added)
-
tags/1.1.3/uninstall.php (added)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/includes/class-rocksite-blocks-library.php (modified) (1 diff)
-
trunk/rocksite-blocks-library.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
rocksite-sections/trunk/README.txt
r2953750 r2964351 6 6 Tested up to: 6.3 7 7 Requires PHP: 7.0 8 Stable tag: 1.1. 28 Stable tag: 1.1.0 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html 11 11 12 Collection of ready-to-use Gutenberg sections (block patterns) based on Kadence Blocks Library: Hero Sections, Features Sections, Call to Actions etc.12 Collection of ready-to-use Gutenberg sections (block patterns) based on Kadence Blocks Library: Article Lists Sections, Features, Subscription Form Sections 13 13 14 14 == Description == … … 66 66 == Changelog == 67 67 68 = 1.1.2 =69 * Changing stable tag70 71 = 1.1.1 =72 * Fix error "cant redeclare function" - wrong function name73 74 = 1.1.0 =75 * updating section templates76 * changing the installation method of the required plugin77 * adding settings responsible for CSS78 79 = 1.0.10 =80 * Remove welcome message81 82 68 = 1.0.11 = 83 69 * Add language files - polish -
rocksite-sections/trunk/includes/class-rocksite-blocks-library.php
r2953708 r2964351 108 108 * Load TGM Plugin 109 109 */ 110 if ( ! class_exists( 'TGM_Plugin_Activation' ) ) { 111 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/tgm/class-tgm-plugin-activation.php'; 112 113 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/tgm/plugins-list.php'; 114 } 110 111 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/tgm/class-tgm-plugin-activation.php'; 112 113 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/tgm/plugins-list.php'; 115 114 116 115 /** -
rocksite-sections/trunk/rocksite-blocks-library.php
r2953750 r2964351 4 4 * Plugin Name: Rocksite Sections 5 5 * Description: Extends Kadence Blocks Library with new sections: Hero Sections, Features Sections, Call to Actions etc. 6 * Version: 1.1. 26 * Version: 1.1.0 7 7 * Author: Piotr Bielecki 8 8 * Author URI: https://rocksite.pro/ … … 18 18 } 19 19 20 define( 'ROCKSITE_BLOCKS_LIBRARY_VERSION', '1. 1.1' );20 define( 'ROCKSITE_BLOCKS_LIBRARY_VERSION', '1.0.3' ); 21 21 22 22 /**
Note: See TracChangeset
for help on using the changeset viewer.