Plugin Directory

Changeset 2065536


Ignore:
Timestamp:
04/09/2019 06:14:53 AM (7 years ago)
Author:
frontkom
Message:

Release version 1.1.6

Location:
cloud-blocks
Files:
1 deleted
3 edited
43 copied

Legend:

Unmodified
Added
Removed
  • cloud-blocks/tags/1.1.6/core/Blocks/Blocks.php

    r2025157 r2065536  
    282282        'name'            => isset( $package_json->gutenbergCloud->name ) ? $package_json->gutenbergCloud->name : $package_json->name,
    283283        'packageName'     => isset( $package_json->name ) ? $package_json->name : '',
    284         'jsUrl'           => ( isset( $block_script ) && !empty( $block_script ) ) ? site_url() . '/' . $block_script[0] : site_url() . '/wp-content\uploads\gutenberg-blocks/' . $block_name[0] . $package_json->gutenbergCloud->js,
    285         'cssUrl'          => ( isset( $block_style ) && !empty( $block_style ) ) ? site_url() . '/' . $block_style[0] : site_url() . '/wp-content\uploads\gutenberg-blocks/' . $block_name[0] . $package_json->gutenbergCloud->css,
    286         'editorCss'       => ( isset( $editor_style ) && !empty( $editor_style ) ) ? site_url() . '/' . $editor_style[0] : site_url() . '/wp-content\uploads\gutenberg-blocks/' . $block_name[0] . $package_json->gutenbergCloud->editor,
     284        'jsUrl'           => ( isset( $block_script ) && !empty( $block_script ) ) ? site_url() . '/' . $block_script[0] : site_url() . '/wp-content/uploads/gutenberg-blocks/' . $block_name[0] . '/' . $package_json->gutenbergCloud->js,
     285        'cssUrl'          => ( isset( $block_style ) && !empty( $block_style ) ) ? site_url() . '/' . $block_style[0] : site_url() . '/wp-content/uploads/gutenberg-blocks/' . $block_name[0] . '/' . $package_json->gutenbergCloud->css,
     286        'editorCss'       => ( isset( $editor_style ) && !empty( $editor_style ) ) ? site_url() . '/' . $editor_style[0] : site_url() . '/wp-content/uploads/gutenberg-blocks/' . $block_name[0] . '/' . $package_json->gutenbergCloud->editor,
    287287        'infoUrl'         => 'https://www.npmjs.com/package/' . $package_json->name,
    288         'imageUrl'        => ( !isset( $block_thumbnail ) && empty( $block_thumbnail ) ) ? ( ( isset( $package_json->gutenbergCloud ) && !empty( $package_json->gutenbergCloud->thumbnail ) ) ? site_url() . '/wp-content\uploads\gutenberg-blocks/' . $block_name[0] . $package_json->gutenbergCloud->thumbnail : '' ) : site_url() . '/' . $block_thumbnail[0],
     288        'imageUrl'        => ( !isset( $block_thumbnail ) && empty( $block_thumbnail ) ) ? ( ( isset( $package_json->gutenbergCloud ) && !empty( $package_json->gutenbergCloud->thumbnail ) ) ? site_url() . '/wp-content/uploads/gutenberg-blocks/' . $block_name[0] . '/' . $package_json->gutenbergCloud->thumbnail : '' ) : site_url() . '/' . $block_thumbnail[0],
    289289        'version'         => isset( $package_json->version ) ? $package_json->version : '',
    290290        'blockManifest'   => json_encode($block_manifest)
     
    370370  }
    371371}
     372
  • cloud-blocks/tags/1.1.6/docs/changelog.md

    r2025296 r2065536  
    11## Changelog
     2
     3#### 1.1.5
     4* **Fix**: Fix missing slash in local blocks
    25
    36#### 1.1.5
  • cloud-blocks/tags/1.1.6/readme.txt

    r2025296 r2065536  
    11=== Cloud Blocks ===
    2 Contributors: frontkom, foadyousefi, ssousa
     2Contributors: frontkom, foadyousefi, ajkstyle, ssousa
    33Author URI: https://frontkom.no
    44Tags: gutenberg, pagebuilder, blocks, gutenberg blocks, page builder
     
    66Tested up to: 5.0
    77Requires PHP: 5.4
    8 Stable tag: 1.1.5
     8Stable tag: 1.1.6
    99License: GPLv3
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    7575
    7676== Changelog ==
     77
     78= 1.1.5 =
     79* Fix: Fix missing slash in local blocks
    7780
    7881= 1.1.5 =
  • cloud-blocks/trunk/core/Blocks/Blocks.php

    r2025157 r2065536  
    282282        'name'            => isset( $package_json->gutenbergCloud->name ) ? $package_json->gutenbergCloud->name : $package_json->name,
    283283        'packageName'     => isset( $package_json->name ) ? $package_json->name : '',
    284         'jsUrl'           => ( isset( $block_script ) && !empty( $block_script ) ) ? site_url() . '/' . $block_script[0] : site_url() . '/wp-content\uploads\gutenberg-blocks/' . $block_name[0] . $package_json->gutenbergCloud->js,
    285         'cssUrl'          => ( isset( $block_style ) && !empty( $block_style ) ) ? site_url() . '/' . $block_style[0] : site_url() . '/wp-content\uploads\gutenberg-blocks/' . $block_name[0] . $package_json->gutenbergCloud->css,
    286         'editorCss'       => ( isset( $editor_style ) && !empty( $editor_style ) ) ? site_url() . '/' . $editor_style[0] : site_url() . '/wp-content\uploads\gutenberg-blocks/' . $block_name[0] . $package_json->gutenbergCloud->editor,
     284        'jsUrl'           => ( isset( $block_script ) && !empty( $block_script ) ) ? site_url() . '/' . $block_script[0] : site_url() . '/wp-content/uploads/gutenberg-blocks/' . $block_name[0] . '/' . $package_json->gutenbergCloud->js,
     285        'cssUrl'          => ( isset( $block_style ) && !empty( $block_style ) ) ? site_url() . '/' . $block_style[0] : site_url() . '/wp-content/uploads/gutenberg-blocks/' . $block_name[0] . '/' . $package_json->gutenbergCloud->css,
     286        'editorCss'       => ( isset( $editor_style ) && !empty( $editor_style ) ) ? site_url() . '/' . $editor_style[0] : site_url() . '/wp-content/uploads/gutenberg-blocks/' . $block_name[0] . '/' . $package_json->gutenbergCloud->editor,
    287287        'infoUrl'         => 'https://www.npmjs.com/package/' . $package_json->name,
    288         'imageUrl'        => ( !isset( $block_thumbnail ) && empty( $block_thumbnail ) ) ? ( ( isset( $package_json->gutenbergCloud ) && !empty( $package_json->gutenbergCloud->thumbnail ) ) ? site_url() . '/wp-content\uploads\gutenberg-blocks/' . $block_name[0] . $package_json->gutenbergCloud->thumbnail : '' ) : site_url() . '/' . $block_thumbnail[0],
     288        'imageUrl'        => ( !isset( $block_thumbnail ) && empty( $block_thumbnail ) ) ? ( ( isset( $package_json->gutenbergCloud ) && !empty( $package_json->gutenbergCloud->thumbnail ) ) ? site_url() . '/wp-content/uploads/gutenberg-blocks/' . $block_name[0] . '/' . $package_json->gutenbergCloud->thumbnail : '' ) : site_url() . '/' . $block_thumbnail[0],
    289289        'version'         => isset( $package_json->version ) ? $package_json->version : '',
    290290        'blockManifest'   => json_encode($block_manifest)
     
    370370  }
    371371}
     372
  • cloud-blocks/trunk/docs/changelog.md

    r2025296 r2065536  
    11## Changelog
     2
     3#### 1.1.5
     4* **Fix**: Fix missing slash in local blocks
    25
    36#### 1.1.5
  • cloud-blocks/trunk/readme.txt

    r2025296 r2065536  
    11=== Cloud Blocks ===
    2 Contributors: frontkom, foadyousefi, ssousa
     2Contributors: frontkom, foadyousefi, ajkstyle, ssousa
    33Author URI: https://frontkom.no
    44Tags: gutenberg, pagebuilder, blocks, gutenberg blocks, page builder
     
    66Tested up to: 5.0
    77Requires PHP: 5.4
    8 Stable tag: 1.1.5
     8Stable tag: 1.1.6
    99License: GPLv3
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    7575
    7676== Changelog ==
     77
     78= 1.1.5 =
     79* Fix: Fix missing slash in local blocks
    7780
    7881= 1.1.5 =
Note: See TracChangeset for help on using the changeset viewer.