Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions assets/blobs/blob-1.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions assets/blobs/blob-2.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions assets/blobs/blob-3.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions assets/blobs/blob-4.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions assets/blobs/blob-5.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
42 changes: 23 additions & 19 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,62 +1,66 @@
# Changelog

## 2.1.0 - [March 28, 2026]

- Added: New Blob Blocks!

## 2.0.4 - [March 19, 2026]

- Chore: Update packages
- Chore: Update packages

## 2.0.3 - [November 25, 2025]

- Tweak: Further editor styles
- Tweak: Further editor styles

## 2.0.2 - [November 20, 2025]

- Fixed: Interest Form has appropriate "Reply-To" header
- Fixed: Interest Form has appropriate "Reply-To" header

## 2.0.1

- Fixed: Linktree links used "stretched-link" pattern appropriately
- Fixed: Interest form sends emails
- Fixed: Linktree links used "stretched-link" pattern appropriately
- Fixed: Interest form sends emails

## 2.0.0

- New Theme!
- New Theme!

## 1.3.2 - [October 29, 2025]

- Chore: Add lints and configs
- Chore: Update packages
- Chore: Add lints and configs
- Chore: Update packages

## 1.3.1 - [August 25, 2024]

- Chore: Update packages
- Chore: Update packages

## 1.3.0 - [August 25, 2024]

- Added: Theme now supports "Guides" CPT
- Added: Theme now supports "Guides" CPT

## 1.2.1

- Fixed: X Theme CSS overrides now take priority
- Fixed: X Theme CSS overrides now take priority

## 1.2.0

- Added: ACF fields are now powered via JSON
- Fixed: Removed dead CPT in favor of ACF
- Added: ACF fields are now powered via JSON
- Fixed: Removed dead CPT in favor of ACF

## 1.1.1 - [August 24, 2024]

- Fixed: Footer Copyright works correctly again.
- Fixed: Footer Copyright works correctly again.

## 1.1.0

- Added: Global CSS to SCSS bundle
- Fixed: Speculative loading filter now handles logged-in users appropriately.
- Added: Global CSS to SCSS bundle
- Fixed: Speculative loading filter now handles logged-in users appropriately.

## 1.0.1

- Added: more-intense speculative loading
- Fixed: stylesheet path errors
- Added: more-intense speculative loading
- Fixed: stylesheet path errors

## 1.0.0

- Init theme!
- Init theme!
4 changes: 2 additions & 2 deletions inc/theme/class-gutenberg-handler.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function enqueue_block_assets() {
'editor' => 'style',
);
foreach ( $files as $handle => $type ) {
$assets = require_once get_stylesheet_directory() . "/build/admin/{$handle}.asset.php";
$assets = require get_stylesheet_directory() . "/build/admin/{$handle}.asset.php";
if ( 'style' === $type || 'both' === $type ) {
wp_enqueue_style(
$handle,
Expand Down Expand Up @@ -80,4 +80,4 @@ public function register_theme_blocks() {
$blocks_path = get_template_directory() . '/build';
wp_register_block_types_from_metadata_collection( $blocks_path . '/js/blocks', $blocks_path . '/blocks-manifest.php' );
}
}
}
Loading
Loading