Skip to content

Commit c05eb35

Browse files
committed
Try update
1 parent 1c21d5f commit c05eb35

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

assets/js/sweetaddon.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/js/sweetaddon.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

inc/shortcode.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
//[sweet-thumbnail size="full" ratio="1-1" class="rounded" link="true"]
3-
add_shortcode( 'sweet-thumbnail', 'sweet_thumbnail_shortcode' );
4-
function sweet_thumbnail_shortcode( $atts ) {
3+
add_shortcode( 'sweet-thumbnail', 'sweetaddon_thumbnail_shortcode' );
4+
function sweetaddon_thumbnail_shortcode( $atts ) {
55
ob_start();
66
$atts = shortcode_atts(
77
array(
@@ -31,8 +31,8 @@ function sweet_thumbnail_shortcode( $atts ) {
3131
}
3232

3333
//[excerpt count="150"]
34-
add_shortcode('excerpt', 'vd_getexcerpt');
35-
function vd_getexcerpt($atts){
34+
add_shortcode('excerpt', 'sweetaddon_get_excerpt');
35+
function sweetaddon_get_excerpt($atts){
3636
ob_start();
3737
global $post;
3838
$atribut = shortcode_atts( array(

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sweetaddon",
3-
"version": "1.5.3",
3+
"version": "1.5.4",
44
"description": "A simple addon for the Sweetweb theme",
55
"author": "websweet.xyz",
66
"homepage": "https://websweet.xyz",

sweetaddon.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* Plugin Name: Sweet Addon
1010
* Plugin URI: dev.websweet.xyz
1111
* Description: Plugin for websweet.xyz client.
12-
* Version: 1.5.3
12+
* Version: 1.5.4
1313
* Author: Aditya Kristyanto
1414
* Author URI: dev.websweet.xyz
1515
* License: GPL-2.0+
@@ -28,7 +28,7 @@
2828
* Start at version 1.0.0 and use SemVer - https://semver.org
2929
* Rename this for your plugin and update it as you release new versions.
3030
*/
31-
define( 'SWEETADDON_VERSION', '1.5.3' );
31+
define( 'SWEETADDON_VERSION', '1.5.4' );
3232

3333
/**
3434
* Define plugin path url

updater/plugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ function sweetaddon_updater_test_init() {
3030
'github_url' => 'https://github.com/websweetxyz/sweetaddon',
3131
'zip_url' => 'https://github.com/websweetxyz/sweetaddon/archive/master.zip',
3232
'sslverify' => true,
33-
'requires' => '1.5.3',
33+
'requires' => '1.5.4',
3434
'tested' => '1.5.2',
3535
'readme' => 'README.md',
3636
'access_token' => '',

0 commit comments

Comments
 (0)