Skip to content

Releases: pixelwatt/method-generator

v1.3.3

16 Aug 22:11
v1.3.3
a564f4d
Compare
Choose a tag to compare

Changes:

  • ( build/ ) Updated to Method v1.3.3.
  • ( gulpfile.js ) Implemented a fix so that custom builds should no longer contain dev folders, and should contain the .gitignore file.

v1.3.2

16 Jul 08:56
v1.3.2
8bef502
Compare
Choose a tag to compare

Changes:

  • ( build/ ) Updated to Method v1.3.2.
  • ( njk/templates/_globals-defaults.html ) Updated the version number for 1.3.2, and changed the login logo height to account for the new login logo.
  • ( README.md ) Replaced documentation with wiki link.

v1.3.1

30 Jun 18:13
v1.3.1
6de095a
Compare
Choose a tag to compare

Changes:

  • ( build/ ) Updated to Method v1.3.1, which includes several third-party library updates.

v1.3.0

24 May 09:46
v1.3.0
d89aa28
Compare
Choose a tag to compare

This release supports Method v1.3.0, which implements the ability to build layouts inside template files while using layout class methods and components as needed.

v1.2.5

14 May 04:24
v1.2.5
9e1cca6
Compare
Choose a tag to compare

Changes:

  • ( build/ ) Updated to Method v1.2.5
  • ( njk/templates/_globals-defaults.html ) Updated the version number for 1.2.5

v1.2.4

08 May 09:36
v1.2.4
9d63621
Compare
Choose a tag to compare

Changes:

  • ( build/ ) Updated to Method v1.2.4
  • ( njk/assets/functions.php ) Updated path to reflect new Bootstrap navwalker.
  • ( njk/assets/gulpfile.js ) Removed several unneeded dependencies and made minor tweaks to gulp tasks.
  • ( njk/assets/package.json ) Removed several unneeded dependencies.

v1.2.3

16 Apr 20:53
v1.2.3
0698c8b
Compare
Choose a tag to compare

This release adds missing dependencies to the package.json file.

v1.2.2

08 Apr 04:55
v1.2.2
b1eea38
Compare
Choose a tag to compare

Updated version numbers to v1.2.2

v1.2.1

27 Mar 22:11
v1.2.1
4c43d0d
Compare
Choose a tag to compare

This release updates _globals-defaults.html to reflect the version number changes for Method v1.2.1.

v1.2.0

23 Mar 15:10
v1.2.0
2148f82
Compare
Choose a tag to compare

This release includes several additions and bugfixes. Now, functions.php is broken out into several files in the /lib folder to support a more streamlined workflow.

New Globals:

  • require_cmb2_mapbox - (default: false) If true, the theme will require the CMB2 Mapbox fieldtype plugins.
  • js_use_matchheight - (default: true) If true, the path to the matchheight library will be added to the array of scripts to combine via the scripts gulp task.
  • js_use_jarallax - (default: true) If true, the path to the jarallax library will be added to the array of scripts to combine via the scripts gulp task.
  • localdev_url - (default: method.test:8080) The local development URL to set as the proxy for browsersync.

Removed Globals:

  • social_options

Other Changes:

  • ( build/ ) Updated to v1.2.0
  • ( njk/assets/gulpfile.js ) Method's gulpfile is now compiled by build/rebuild tasks, implementing support for the new js_use_matchheight, js_use_jarallax, and localdev_url globals
  • ( njk/assets/lib/class-theme-layout.php ) Removed the build_social_icons() method, which is now located in the Method_Layout class.
  • ( njk/assets/lib/cmb2-options-loader.php ) Added a $prefix variable, which is the name of the current options template, but with hypens instead of underscores.
  • ( njk/assets/lib/helper-functions.php ) The returned classes for 'full_width_outer_col' now includes the 'full-width-outer-col' class.
  • ( njk/assets/lib/helper-functions.php ) For both the method_get_post_array() and method_get_term_array() functions, the $none argument now defaults to being an empty string, with the function ignoring it if empty. If a non-empty string is provided, a "none" item will be added to the returned array as the first array value, with an empty key.
  • ( njk/assets/lib/helper-functions.php ) The method_get_content() function was removed. Instead, use: method_filter_content( get_the_content( null, false, $post->ID ) ) (if outside the layout class) or $this->filter_content( get_the_content( null, false, $this->id ) ) (if inside the layout class)
  • ( njk/assets/lib/theme-customization.php ) In the repeatable options group for social media accounts, the service is now picked via a select element and not radio buttons. Additionally, an option for None was added, and is now the default.
  • ( njk/assets/lib/theme-support.php ) Added array for CMB2 Mapbox to potential required plugin arrays.