From 7ce7d7839ea296dad3d8abd3909dfdbf1592131f Mon Sep 17 00:00:00 2001 From: EliteMasterEric Date: Sat, 28 Sep 2024 09:51:41 -0400 Subject: [PATCH] Update stage data version after adding new values. --- source/funkin/data/stage/CHANGELOG.md | 4 ++++ source/funkin/data/stage/StageRegistry.hx | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/source/funkin/data/stage/CHANGELOG.md b/source/funkin/data/stage/CHANGELOG.md index 879139db5..bf9d750cc 100644 --- a/source/funkin/data/stage/CHANGELOG.md +++ b/source/funkin/data/stage/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.0.2] +### Added +- Added the ability to specify `flipX` and `flipY` on stage props to horizontally or vertically flip, respectively. + ## [1.0.1] ### Added - Added the ability to specify a hexadecimal color in the `assetPath` field instead of a texture key. diff --git a/source/funkin/data/stage/StageRegistry.hx b/source/funkin/data/stage/StageRegistry.hx index 87113ef05..e11166bdd 100644 --- a/source/funkin/data/stage/StageRegistry.hx +++ b/source/funkin/data/stage/StageRegistry.hx @@ -11,9 +11,9 @@ class StageRegistry extends BaseRegistry * Handle breaking changes by incrementing this value * and adding migration to the `migrateStageData()` function. */ - public static final STAGE_DATA_VERSION:thx.semver.Version = "1.0.0"; + public static final STAGE_DATA_VERSION:thx.semver.Version = "1.0.2"; - public static final STAGE_DATA_VERSION_RULE:thx.semver.VersionRule = "1.0.x"; + public static final STAGE_DATA_VERSION_RULE:thx.semver.VersionRule = ">=1.0.0 <=1.0.2"; public static var instance(get, never):StageRegistry; static var _instance:Null = null;