Skip to content

Commit 8cfe668

Browse files
author
Chris Reynolds
committed
bump version
1 parent ca195c9 commit 8cfe668

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

inc/display/namespace.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -382,9 +382,9 @@ function enqueue_scripts() {
382382
return;
383383
}
384384

385-
wp_enqueue_style( 'games-collector', dirname( plugin_dir_url( __FILE__ ), 2 ) . '/assets/css/main.css', [], '1.3.3' );
386-
wp_enqueue_script( 'games-collector', dirname( plugin_dir_url( __FILE__ ), 2 ) . '/assets/js/main.js', [ 'jquery', 'isotope' ], '1.3.3' );
387-
wp_enqueue_script( 'isotope', 'https://unpkg.com/isotope-layout@3/dist/isotope.pkgd.min.js', [], '3.0.6' );
385+
wp_enqueue_style( 'games-collector', dirname( plugin_dir_url( __FILE__ ), 2 ) . '/assets/css/main.css', [], '1.3.4' );
386+
wp_enqueue_script( 'games-collector', dirname( plugin_dir_url( __FILE__ ), 2 ) . '/assets/js/main.js', [ 'jquery', 'isotope' ], '1.3.4' );
387+
wp_enqueue_script( 'isotope', 'https://unpkg.com/isotope-layout@3/dist/isotope.pkgd.min.js', [], '3.0.6' );
388388
}
389389

390390
/**

inc/gutenberg/namespace.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
*/
1616
function enqueue_block_editor_assets() {
1717
$js_file = plugin_dir_url( dirname( __FILE__, 2 ) ) . 'assets/js/editor.js';
18-
wp_enqueue_script( 'games-collector-gberg-editor', $js_file, [ 'wp-i18n', 'wp-blocks', 'wp-element' ], '1.3.0' );
19-
wp_enqueue_style( 'games-collector-gberg-editor', dirname( plugin_dir_url( __FILE__ ), 2 ) . '/assets/css/editor.css', [ 'wp-blocks' ], '1.3.0' );
20-
wp_enqueue_style( 'games-collector', dirname( plugin_dir_url( __FILE__ ), 2 ) . '/assets/css/main.css', [], '1.3.0' );
18+
wp_enqueue_script( 'games-collector-gberg-editor', $js_file, [ 'wp-i18n', 'wp-blocks', 'wp-element' ], '1.3.4' );
19+
wp_enqueue_style( 'games-collector-gberg-editor', dirname( plugin_dir_url( __FILE__ ), 2 ) . '/assets/css/editor.css', [ 'wp-blocks' ], '1.3.4' );
20+
wp_enqueue_style( 'games-collector', dirname( plugin_dir_url( __FILE__ ), 2 ) . '/assets/css/main.css', [], '1.3.4' );
2121
}
2222

2323
/**

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "games-collector",
3-
"version": "1.3.3",
3+
"version": "1.3.4",
44
"license": "GPL-3.0-or-later",
55
"repository": "https://github.com/jazzsequence/games-collector",
66
"main": "assets/js/main.js",

plugin.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: Games Collector
44
* Plugin URI: https://github.com/jazzsequence/games-collector
55
* Description: Catalog all your tabletop (or other) games in your WordPress site and display a list of games in your collection.
6-
* Version: 1.3.3
6+
* Version: 1.3.4
77
* Author: Chris Reynolds
88
* Author URI: https://jazzsequence.com
99
* Donate link: https://paypal.me/jazzsequence
@@ -14,7 +14,7 @@
1414
* @link https://github.com/jazzsequence/games-collector
1515
*
1616
* @package GamesCollector
17-
* @version 1.3.3
17+
* @version 1.3.4
1818
*/
1919

2020
/**

0 commit comments

Comments
 (0)