diff --git a/CHANGELOG.md b/CHANGELOG.md index 649e6eb..bee2e17 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## 1.3.4 + +Changes: +* ( build/ ) Updated to Method v1.3.4, which adds a filter and action to allow for easily adding custom format tags, and adds an optional $fallback argument to the get_meta(), get_loaded_meta(), and get_option() methods. +* ( njk/assets/lib/admin-customization.php ) Implemented the 'method_after_tags_dialog_html' action in the prefix_admin_footer_function() function. +* ( gulpfile.js ) Implemented a fix so that custom builds should no longer contain dev folders, and should contain the .gitignore file. + +--- + ## 1.3.3 Changes: diff --git a/build b/build index 6b81c04..16479bd 160000 --- a/build +++ b/build @@ -1 +1 @@ -Subproject commit 6b81c0450433f5cba5c686732e8daa87ff1aca52 +Subproject commit 16479bd3c0077f71e369fda8d445738b5faf0dc4 diff --git a/njk/assets/lib/admin-customization.php b/njk/assets/lib/admin-customization.php index 78ff8b5..ca4b745 100644 --- a/njk/assets/lib/admin-customization.php +++ b/njk/assets/lib/admin-customization.php @@ -36,6 +36,9 @@ function {{globals.code_prefix}}admin_footer_function() {
[br]

This tags allows you to insert a line break. Use [br] for the line break to appear on all devices, [mbr] for the line break to only appear on mobile, and [dbr] for the break to only appear on desktop.
(Ex: "I want this text on line 1,[br]and this text on line 2.")

+ '; + do_action( 'method_after_tags_dialog_html' ); + echo ' '; } diff --git a/njk/templates/_globals-defaults.html b/njk/templates/_globals-defaults.html index ff85738..0b899ff 100644 --- a/njk/templates/_globals-defaults.html +++ b/njk/templates/_globals-defaults.html @@ -10,10 +10,10 @@ {% set theme_name = "Method" %} {% set theme_uri = "https://github.com/pixelwatt/method" %} {% set theme_description = "A barebones foundation for custom theme development." %} -{% set theme_version = "1.3.3" %} +{% set theme_version = "1.3.4" %} {% set theme_author = "Rob Clark" %} {% set theme_author_uri = "https://robclark.io/" %} -{% set theme_tags = "cmb2, bootstrap" %} +{% set theme_tags = "CMB2, Bootstrap 5" %} {% set github_theme_uri = false %} diff --git a/package.json b/package.json index fbd5740..3bd0e4a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "method-generator", - "version": "1.3.2", + "version": "1.3.4", "description": "This project allows you to rapidly create custom builds of the Method theme using Gulp and Nunjucks.", "main": "index.js", "scripts": {