Skip to content

Releases: Tetrakern/fictioneer-minimalist

Fictioneer Minimalist 1.0.6

15 Dec 22:17
Compare
Choose a tag to compare

This update fixes the mobile menu toggle for Fictioneer 5.27.0 or higher.

Manual Update Guide

Open the affected files in an editor of your choice or the Theme File Editor in the admin panel.

In the functions.php

// ---> Search for (line 506):
<label for="mobile-menu-toggle" class="mobile-menu-button follows-alert-number">
// ---> Replace with:
<button class="mobile-menu-button follows-alert-number" data-fictioneer-follows-target="newDisplay" data-action="click->fictioneer#toggleMobileMenu">

// ---> Search for (line 512):
</label>
// ---> Replace with:
</button>

In the style.css

/* ---> Search for: */
Version: 1.0.5
/* ---> Replace with: */
Version: 1.0.6

Release Notes

  • Info: Refer to the release on GitHub for a manual update guide
  • Fixed: The mobile menu toggle does not work with 5.27.0

Fictioneer Minimalist 1.0.5

20 Oct 22:04
Compare
Choose a tag to compare

This is an optional release to account for changes in the parent theme, but there are legacy functions in place to support this child theme as is. However, it's advised to update. Since updating a child theme is always annoying, I'll provide a manual guide to apply the changes. They are minimal (hah).

Manual Update Guide

Open the affected files in an editor of your choice or the Theme File Editor in the admin panel.

In the functions.php

// Search for:
get_template_part( 'partials/_icon-menu', null, array( 'location' => 'in-navigation' ) );
// Replace with:
fictioneer_render_icon_menu( array( 'location' => 'in-navigation' ) );

// Search for (two instances):
if ( FICTIONEER_ENABLE_MENU_TRANSIENTS ) {
// Replace with:
if ( fictioneer_enable_menu_transients( 'nav_menu' ) ) {

// Search for (this shuts up the update notice):
define( 'CHILD_VERSION', '1.0.4' );
define( 'CHILD_RELEASE_TAG', 'v1.0.4' );
// Replace with:
define( 'CHILD_VERSION', '1.0.5' );
define( 'CHILD_RELEASE_TAG', 'v1.0.5' );

In the style.css

/* Search for: */
Version: 1.0.4
/* Replace with: */
Version: 1.0.5

Release Notes

  • Changed: Replaced FICTIONEER_ENABLE_MENU_TRANSIENTS
  • Changed: Use fictioneer_render_icon_menu() instead of partial

Fictioneer Minimalist 1.0.4

22 Sep 08:15
Compare
Choose a tag to compare

If you made any changes to the child theme, save them before you update to restore them afterwards since the theme files will be overwritten. Alternatively, you can look into the commit history or compare the versions to apply the changes yourself.

Please consider supporting me on Ko-fi, Patreon, or GitHub Sponsors if you like the theme.

Release Notes

  • Fixed: Large site logo will no longer break the layout on mobile
  • Changed: Removed some more unused customizer options
  • Dev: Added additional CSS classes to the image header

Fictioneer Minimalist 1.0.3

25 Aug 11:14
Compare
Choose a tag to compare

Just one small optimization and a safety measure.

Please consider supporting me on Ko-fi, Patreon, or GitHub Sponsors if you like the theme.

Release Notes

  • Improved: The icon menu is now always aligned to the right, even if it wraps onto the next line.
  • Improved: Added measures to prevent bricking the site if you delete the parent while the child theme is active (don't)

Fictioneer Minimalist 1.0.2

17 Aug 17:50
Compare
Choose a tag to compare

Really nothing much, just some vertical centering.

Please consider supporting me on Ko-fi, Patreon, or GitHub Sponsors if you like the theme.

Release Notes

  • Improved: Vertically centered the site logo (if any)

Fictioneer Minimalist 1.0.1

14 Aug 16:46
Compare
Choose a tag to compare

Some minor tweaks and compatibility update with the main theme's new page padding.

Release Notes

  • Fixed: Compatibility with Fictioneer 5.22.2
  • Fixed: Adding missing CSS property unit that could cause styles to become invalid
  • Improved: Optimized display of the logo, site title, and tagline in any combination
  • Changed: Turned off frontend theme switch that just does not work well here

Fictioneer Minimalist 1.0.0

10 Aug 21:20
Compare
Choose a tag to compare

Initial release.