Skip to content

Fix view transitions setting values not being saved #2036

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 4, 2025
Merged
Changes from 1 commit
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
Prev Previous commit
Bump View Transitions version to 1.0.1.
felixarntz committed Jun 4, 2025

Verified

This commit was signed with the committer’s verified signature.
felixarntz Felix Arntz
commit 8f3679f92d06581c483582cd5fba9e0b368ad561
6 changes: 5 additions & 1 deletion plugins/view-transitions/readme.txt
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@

Contributors: wordpressdotorg
Tested up to: 6.8
Stable tag: 1.0.0
Stable tag: 1.0.1
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: performance, view transitions, smooth transitions, animations
@@ -51,6 +51,10 @@ Contributions are always welcome! Learn more about how to get involved in the [C

== Changelog ==

= 1.0.1 =

* Fix view transitions setting values not being saved. ([2036](https://github.com/WordPress/performance/pull/2036))

= 1.0.0 =

* Initial release. ([1997](https://github.com/WordPress/performance/issues/1997))
4 changes: 2 additions & 2 deletions plugins/view-transitions/view-transitions.php
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@
* Description: Adds smooth transitions between navigations to your WordPress site.
* Requires at least: 6.6
* Requires PHP: 7.2
* Version: 1.0.0
* Version: 1.0.1
* Author: WordPress Performance Team
* Author URI: https://make.wordpress.org/performance/
* License: GPLv2 or later
@@ -25,7 +25,7 @@
return;
}

define( 'VIEW_TRANSITIONS_VERSION', '1.0.0' );
define( 'VIEW_TRANSITIONS_VERSION', '1.0.1' );
define( 'VIEW_TRANSITIONS_MAIN_FILE', __FILE__ );

require_once __DIR__ . '/includes/class-plvt-view-transition-animation.php';