Plugin Directory

Changeset 2964353


Ignore:
Timestamp:
09/08/2023 05:58:51 AM (3 years ago)
Author:
netbiel
Message:

Chancge wrong version

Location:
rocksite-sections
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • rocksite-sections/tags/1.1.3/README.txt

    r2964351 r2964353  
    1 === Rocksite Kit - Block Patterns & Gutenberg Layouts Library ===
     1=== Rocksite Kit - Kadence Blocks Patterns with Figma UI Kit ===
    22Contributors: netbiel
    33Donate link: https://rocksite.pro/
     
    66Tested up to: 6.3
    77Requires PHP: 7.0
    8 Stable tag: 1.1.0
     8Stable tag: 1.1.3
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
    1111
    12 Collection of ready-to-use Gutenberg sections (block patterns) based on Kadence Blocks Library: Article Lists Sections, Features, Subscription Form Sections
     12Collection of ready-to-use Gutenberg sections (block patterns) based on Kadence Blocks Library: Hero Sections, Features Sections, Call to Actions etc.
    1313
    1414== Description ==
    1515
    16 Rocksite Sections is a library of pre-made, responsive, ready to use sections prepared as Gutenberg block patterns which are based on Kadence Blocks Library. They let you easily create a complex responsive layout of blocks in a matter of seconds.
     16A design library that streamlines the process of designing and implementing your website.
    1717
    18 See Rocksite Sections [Visual Documentation](https://cloud.rocksite.pro/cloud-categories/hero-section/?utm_source=wp-repo&utm_medium=link&utm_campaign=readme-description)
     18* With a ready-made library of predefined Gutenberg responsive sections, you can easily implement your project in WordPress.
     19* With [Figma UI Kit] (https://www.figma.com/community/file/1273281724920036886), you can easily design a page layout with Gutenberg Kadence Blocks specificity without worrying about future implementation
    1920
    20 You can choose a premade section and add it on your site in just one click. After that you can customizing a section for your needs by using options of the selected block.
     21Sections designed in Figma and available in the Design Library in the WordPress editor have exactly the same names, and have been grouped into several categories, such as: Hero Sections, Features, Call to Action, Portfolio, Content, Metrics, Contact, etc.
    2122
    22 You can use these sections anywhere on your website to recreate complex layouts with minimal effort. Patterns will adapt to your theme’s styles, so they look great with your site.
     23* [Rocksite Kit - More Info](https://rocksite.pro/rocksite-kit/?utm_source=wp-repo&utm_medium=link&utm_campaign=readme-description)
     24* [Visual Documentation](https://cloud.rocksite.pro/?utm_source=wp-repo&utm_medium=link&utm_campaign=readme-description)
    2325
    24 Installation of Kadence Blocks (free plugin) is required for full functionality of Rocksite Sections.
     26In WordPress Editor You can choose a premade section and add it on your site in just one click. After that you can customize a section for your needs by using options of the selected block.
    2527
    26 == Premium Sections ==
     28**PLUGINS REQUIRED**
    2729
    28 Rocksite Sections adds automatic connection to a collection of sections from external url in rockite.pro domain. This functionality is based on Kadence Cloud. To use pro section you have to buy Blockfold Premium Theme. Free sections have no limits and always will be free.
     30* [Kadence Blocks (free)](https://wordpress.org/plugins/kadence-blocks/)
     31
     32**RECOMMENDED THEMES**
     33
     34The designs will adapt to the styles of the theme you are currently using, but you will get the best results by using the free:
     35
     36* [Kadence  (free)](https://wordpress.org/themes/kadence/)
     37* [Blockfold  (free)] (https://wordpress.org/themes/blockfold/)
     38
     39
     40**DESIGN LIBRARY CLOUD**
     41
     42Rocksite Kit adds automatic connection to a collection of sections from external url in rockite.pro domain. This functionality is based on Kadence Cloud.
     43
     44
     45**PRIVACY**
     46
     47Rocksite Sections plugin uses a custom API to fetch blocks patterns libraries from cloud.rocksite.pro when you clicks on the “Design library” button above the editor. I collect data and information as indicated in my Privacy Policy: https://rocksite.pro/privacy-policy/
     48
    2949
    3050== Installation ==
     
    6686== Changelog ==
    6787
     88= 1.1.3 =
     89* Changing description
     90
     91= 1.1.2 =
     92* Changing stable tag
     93
     94= 1.1.1 =
     95* Fix error "cant redeclare function" - wrong function name
     96
     97= 1.1.0 =
     98* updating section templates
     99* changing the installation method of the required plugin
     100* adding settings responsible for CSS
     101
     102= 1.0.10 =
     103* Remove welcome message
     104
    68105= 1.0.11 =
    69106* Add language files - polish
     
    100137
    101138Simply upgrade by installing new version
    102 
  • rocksite-sections/tags/1.1.3/includes/class-rocksite-blocks-library.php

    r2964351 r2964353  
    108108         * Load TGM Plugin
    109109         */
    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';
     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        }
    114115
    115116        /**
  • rocksite-sections/tags/1.1.3/includes/tgm/plugins-list.php

    r2964351 r2964353  
    33 * TGMPA PLugin Register Function
    44 */
    5 function Canvi_activation_setup() {
     5function rocksite_activation_setup() {
    66
    7     add_action( 'tgmpa_register', 'CANVI_THEME_register_required_plugins' );
     7    add_action( 'tgmpa_register', 'rocksite_register_required_plugins' );
    88
    99}
    1010
    11 add_action( 'after_setup_theme', 'Canvi_activation_setup' );
     11add_action( 'after_setup_theme', 'rocksite_activation_setup' );
    1212
    1313
     
    2323 * TGM_Plugin_Activation class constructor.
    2424 */
    25 function CANVI_THEME_register_required_plugins() {
     25function rocksite_register_required_plugins() {
    2626
    2727    /**
  • rocksite-sections/tags/1.1.3/rocksite-blocks-library.php

    r2964351 r2964353  
    44 * Plugin Name:       Rocksite Sections
    55 * Description:       Extends Kadence Blocks Library with new sections: Hero Sections, Features Sections, Call to Actions etc.
    6  * Version:           1.1.0
     6 * Version:           1.1.3
    77 * Author:            Piotr Bielecki
    88 * Author URI:        https://rocksite.pro/
     
    1818}
    1919
    20 define( 'ROCKSITE_BLOCKS_LIBRARY_VERSION', '1.0.3' );
     20define( 'ROCKSITE_BLOCKS_LIBRARY_VERSION', '1.1.1' );
    2121
    2222/**
  • rocksite-sections/trunk/README.txt

    r2964351 r2964353  
    1 === Rocksite Kit - Block Patterns & Gutenberg Layouts Library ===
     1=== Rocksite Kit - Kadence Blocks Patterns with Figma UI Kit ===
    22Contributors: netbiel
    33Donate link: https://rocksite.pro/
     
    66Tested up to: 6.3
    77Requires PHP: 7.0
    8 Stable tag: 1.1.0
     8Stable tag: 1.1.3
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
    1111
    12 Collection of ready-to-use Gutenberg sections (block patterns) based on Kadence Blocks Library: Article Lists Sections, Features, Subscription Form Sections
     12Collection of ready-to-use Gutenberg sections (block patterns) based on Kadence Blocks Library: Hero Sections, Features Sections, Call to Actions etc.
    1313
    1414== Description ==
    1515
    16 Rocksite Sections is a library of pre-made, responsive, ready to use sections prepared as Gutenberg block patterns which are based on Kadence Blocks Library. They let you easily create a complex responsive layout of blocks in a matter of seconds.
     16A design library that streamlines the process of designing and implementing your website.
    1717
    18 See Rocksite Sections [Visual Documentation](https://cloud.rocksite.pro/cloud-categories/hero-section/?utm_source=wp-repo&utm_medium=link&utm_campaign=readme-description)
     18* With a ready-made library of predefined Gutenberg responsive sections, you can easily implement your project in WordPress.
     19* With [Figma UI Kit] (https://www.figma.com/community/file/1273281724920036886), you can easily design a page layout with Gutenberg Kadence Blocks specificity without worrying about future implementation
    1920
    20 You can choose a premade section and add it on your site in just one click. After that you can customizing a section for your needs by using options of the selected block.
     21Sections designed in Figma and available in the Design Library in the WordPress editor have exactly the same names, and have been grouped into several categories, such as: Hero Sections, Features, Call to Action, Portfolio, Content, Metrics, Contact, etc.
    2122
    22 You can use these sections anywhere on your website to recreate complex layouts with minimal effort. Patterns will adapt to your theme’s styles, so they look great with your site.
     23* [Rocksite Kit - More Info](https://rocksite.pro/rocksite-kit/?utm_source=wp-repo&utm_medium=link&utm_campaign=readme-description)
     24* [Visual Documentation](https://cloud.rocksite.pro/?utm_source=wp-repo&utm_medium=link&utm_campaign=readme-description)
    2325
    24 Installation of Kadence Blocks (free plugin) is required for full functionality of Rocksite Sections.
     26In WordPress Editor You can choose a premade section and add it on your site in just one click. After that you can customize a section for your needs by using options of the selected block.
    2527
    26 == Premium Sections ==
     28**PLUGINS REQUIRED**
    2729
    28 Rocksite Sections adds automatic connection to a collection of sections from external url in rockite.pro domain. This functionality is based on Kadence Cloud. To use pro section you have to buy Blockfold Premium Theme. Free sections have no limits and always will be free.
     30* [Kadence Blocks (free)](https://wordpress.org/plugins/kadence-blocks/)
     31
     32**RECOMMENDED THEMES**
     33
     34The designs will adapt to the styles of the theme you are currently using, but you will get the best results by using the free:
     35
     36* [Kadence  (free)](https://wordpress.org/themes/kadence/)
     37* [Blockfold  (free)] (https://wordpress.org/themes/blockfold/)
     38
     39
     40**DESIGN LIBRARY CLOUD**
     41
     42Rocksite Kit adds automatic connection to a collection of sections from external url in rockite.pro domain. This functionality is based on Kadence Cloud.
     43
     44
     45**PRIVACY**
     46
     47Rocksite Sections plugin uses a custom API to fetch blocks patterns libraries from cloud.rocksite.pro when you clicks on the “Design library” button above the editor. I collect data and information as indicated in my Privacy Policy: https://rocksite.pro/privacy-policy/
     48
    2949
    3050== Installation ==
     
    6686== Changelog ==
    6787
     88= 1.1.3 =
     89* Changing description
     90
     91= 1.1.2 =
     92* Changing stable tag
     93
     94= 1.1.1 =
     95* Fix error "cant redeclare function" - wrong function name
     96
     97= 1.1.0 =
     98* updating section templates
     99* changing the installation method of the required plugin
     100* adding settings responsible for CSS
     101
     102= 1.0.10 =
     103* Remove welcome message
     104
    68105= 1.0.11 =
    69106* Add language files - polish
     
    100137
    101138Simply upgrade by installing new version
    102 
  • rocksite-sections/trunk/includes/class-rocksite-blocks-library.php

    r2964351 r2964353  
    108108         * Load TGM Plugin
    109109         */
    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';
     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        }
    114115
    115116        /**
  • rocksite-sections/trunk/rocksite-blocks-library.php

    r2964351 r2964353  
    44 * Plugin Name:       Rocksite Sections
    55 * Description:       Extends Kadence Blocks Library with new sections: Hero Sections, Features Sections, Call to Actions etc.
    6  * Version:           1.1.0
     6 * Version:           1.1.3
    77 * Author:            Piotr Bielecki
    88 * Author URI:        https://rocksite.pro/
     
    1818}
    1919
    20 define( 'ROCKSITE_BLOCKS_LIBRARY_VERSION', '1.0.3' );
     20define( 'ROCKSITE_BLOCKS_LIBRARY_VERSION', '1.1.1' );
    2121
    2222/**
Note: See TracChangeset for help on using the changeset viewer.