Plugin Directory

Changeset 3334628


Ignore:
Timestamp:
07/26/2025 06:01:46 PM (8 months ago)
Author:
bdkoder
Message:

1.0.1

Location:
blockish
Files:
116 added
2 edited

Legend:

Unmodified
Added
Removed
  • blockish/trunk/blockish.php

    r3259907 r3334628  
    66 * Requires at least: 6.1
    77 * Requires PHP:      7.4
    8  * Version:           1.0.0
     8 * Version:           1.0.1
    99 * Author:            Shahidul Islam
    1010 * Author URI:        https://github.com/bdkoder
     
    3838     * @var string
    3939     */
    40     const VERSION = '1.0.0';
     40    const VERSION = '1.0.1';
    4141
    4242    /**
     
    182182}
    183183blockish();
     184
     185
     186/**
     187 * SDK Integration
     188 */
     189
     190if ( ! function_exists( 'blockish_dci_plugin' ) ) {
     191  function blockish_dci_plugin() {
     192
     193    // Include DCI SDK.
     194    require_once dirname( __FILE__ ) . '/dci/start.php';
     195    wp_register_style('dci-sdk-blockish', plugins_url('dci/assets/css/dci.css', __FILE__), array(), '1.2.1', 'all');
     196    wp_enqueue_style('dci-sdk-blockish');
     197
     198    dci_dynamic_init( array(
     199      'sdk_version'   => '1.2.1',
     200      'product_id'    => 5,
     201      'plugin_name'   => 'Blockish', // make simple, must not empty
     202      'plugin_title'  => 'Love using Blockish? Congrats 🎉  ( Never miss an Important Update )', // You can describe your plugin title here
     203      'plugin_icon'   => plugins_url( 'assets/imgs/logo.svg', __FILE__ ), // delete the line if you don't need
     204      'api_endpoint'  => 'https://dashboard.wowdevs.com/wp-json/dci/v1/data-insights',
     205      'slug'          => 'no-need', // folder-name or write 'no-need' if you don't want to use
     206      'core_file'     => false,
     207      'plugin_deactivate_id' => false,
     208      'menu'          => array(
     209        'slug' => 'blockish',
     210      ),
     211      'public_key'    => 'pk_AyXCKb51WP7urdbX5vdqe2ScQewFI3Bn',
     212      'is_premium'    => false,
     213      //'custom_data' => array(
     214        //'test' => 'value',
     215      //),
     216      'popup_notice'  => false,
     217      'deactivate_feedback' => true,
     218      //'delay_time'    => array(
     219            //  'time' => 3 * DAY_IN_SECONDS,
     220            //),
     221      'text_domain'  => 'blockish',
     222      'plugin_msg'   => '<p>Be Top-contributor by sharing non-sensitive plugin data and create an impact to the global WordPress community today! You can receive valuable emails periodically.</p>',
     223    ) );
     224
     225  }
     226  add_action( 'admin_init', 'blockish_dci_plugin' );
     227}
  • blockish/trunk/readme.txt

    r3259907 r3334628  
    66Tested up to: 6.7.2
    77Requires PHP: 7.4
    8 Stable tag: 1.0.0
     8Stable tag: 1.0.1
    99License: GPL-2.0-or-later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
    1111
    12 The Blockish plugin is a collection of creative Gutenberg blocks that help you design your website with ease.
     12Blockish is a creative Gutenberg blocks collection with powerful layout builder blocks to design beautiful websites with ease.
    1313
    1414== Description ==
    1515
    16 Get creative with the Blockish plugin. This plugin is a collection of creative Gutenberg blocks that help you design your website with ease. The plugin is designed to be lightweight and easy to use. It is perfect for bloggers, designers, developers, and anyone who wants to create beautiful websites.
     16Get creative with the Blockish plugin. This comprehensive plugin features a collection of creative Gutenberg blocks, including powerful layout builder blocks that revolutionize how you create website layouts. The layout builder blocks allow you to:
     17
     18- **Create flexible grid systems** - Build responsive multi-column layouts with drag-and-drop ease
     19- **Design complex page structures** - Nest rows and columns to create sophisticated designs
     20- **Customize spacing and alignment** - Fine-tune margins, padding, and content positioning
     21- **Build responsive layouts** - Ensure your designs look perfect on desktop, tablet, and mobile devices
     22- **Control backgrounds and styling** - Add colors, gradients, and background images to sections
     23
     24Whether you're building landing pages, portfolios, or complex content layouts, the Blockish layout builder blocks provide the flexibility and control you need. The plugin is designed to be lightweight and intuitive, making it perfect for bloggers, designers, developers, and anyone who wants to create beautiful, professionally-structured websites without writing code.
    1725
    1826== Features ==
     
    6472== Changelog ==
    6573
     74= 1.0.1 [26th July 2025] =
     75
     76* System Improved
     77
    6678= 1.0.0 [22th March 2025] =
    6779
Note: See TracChangeset for help on using the changeset viewer.