From 42bc0c4e37f0ebeb5517b4d763452c6d0a757a7f Mon Sep 17 00:00:00 2001 From: CodeDoctorDE Date: Tue, 25 Jun 2024 10:17:00 +0200 Subject: [PATCH] Fix app image builder set version --- CHANGELOG.md | 24 ++++-------------------- api/pubspec.yaml | 2 +- app/AppImageBuilder.yml | 2 +- app/linux/debian/DEBIAN/control | 2 +- app/pubspec.lock | 4 ++-- app/pubspec.yaml | 2 +- tools/set_version.dart | 2 +- 7 files changed, 11 insertions(+), 27 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 97ced4eaa17f..0f5b659a05d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,25 +1,9 @@ # Changelog - - -## 2.2.0-beta.0 (2024-06-25) - -* Add erase elements property to eraser and patheraser ([#680](https://github.com/LinwoodDev/Butterfly/issues/680)) -* Add shape element to normal eraser([#683](https://github.com/LinwoodDev/Butterfly/issues/683)) -* Add lock layer ([#688](https://github.com/LinwoodDev/Butterfly/issues/688)) -* Add export button to templates dialog -* Improve packs dialog -* Fix spacer has no help page -* Fix utilities state on undo/redo ([#721](https://github.com/LinwoodDev/Butterfly/issues/721)) -* Fix select and eye dropper temporary tool already gets removed before doing the action -* Fix asset select dialog overflows on too many assets -* Fix full screen button in top left corner menu doesn't work -* Upgrade AGB to 8.5.0 in android - -Read more here: https://linwood.dev/butterfly/2.2.0-beta.0 - -## 2.1.1 (2024-06-10) - + + +## 2.1.1 (2024-06-10) + Nothing changed from the nightly build to the stable release. See all changes since the last stable here: https://linwood.dev/butterfly/2.1.1 diff --git a/api/pubspec.yaml b/api/pubspec.yaml index 7461a7c744db..02a5a3287d9d 100644 --- a/api/pubspec.yaml +++ b/api/pubspec.yaml @@ -1,6 +1,6 @@ name: butterfly_api description: The Linwood Butterfly API -version: 2.2.0-beta.1 +version: 2.2.0-beta.0 environment: sdk: '>=3.0.0 <4.0.0' diff --git a/app/AppImageBuilder.yml b/app/AppImageBuilder.yml index 016e64d48a8d..8e9a2f4734c4 100644 --- a/app/AppImageBuilder.yml +++ b/app/AppImageBuilder.yml @@ -11,7 +11,7 @@ script: AppDir: path: ./AppDir app_info: - version: 2.2.0-beta.1 + id: dev.linwood.butterfly name: Linwood Butterfly icon: dev.linwood.butterfly version: 2.2.0-beta.0 diff --git a/app/linux/debian/DEBIAN/control b/app/linux/debian/DEBIAN/control index b1803b475606..f5175184149e 100644 --- a/app/linux/debian/DEBIAN/control +++ b/app/linux/debian/DEBIAN/control @@ -1,5 +1,5 @@ Package: linwood-butterfly -Version: 2.2.0-beta.1 +Version: 2.2.0-beta.0 Section: base Priority: optional Homepage: https://github.com/LinwoodDev/butterfly diff --git a/app/pubspec.lock b/app/pubspec.lock index cf6061e39dfd..a1f3e34cc341 100644 --- a/app/pubspec.lock +++ b/app/pubspec.lock @@ -167,7 +167,7 @@ packages: path: "../api" relative: true source: path - version: "2.2.0-beta.1" + version: "2.2.0-beta.0" camera: dependency: "direct main" description: @@ -307,7 +307,7 @@ packages: dart_leap: dependency: transitive description: - path: "packages/dart_leap" + path: "packages\\dart_leap" ref: "0e04c453c2b6d4aa499f79e54bb1c0b7a9b2c42c" resolved-ref: "0e04c453c2b6d4aa499f79e54bb1c0b7a9b2c42c" url: "https://github.com/LinwoodDev/dart_pkgs.git" diff --git a/app/pubspec.yaml b/app/pubspec.yaml index f5ec5ef3e643..d37ebfb7a53b 100644 --- a/app/pubspec.yaml +++ b/app/pubspec.yaml @@ -13,7 +13,7 @@ publish_to: none # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. # Read more about iOS versioning at # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html -version: 2.2.0-beta.1+110 +version: 2.2.0-beta.0+109 environment: sdk: ">=3.0.0 <4.0.0" diff --git a/tools/set_version.dart b/tools/set_version.dart index 6b226b2ecab3..f48ba0ccb99a 100644 --- a/tools/set_version.dart +++ b/tools/set_version.dart @@ -79,7 +79,7 @@ Future main(List args) async { Future updateAppImageVersion(String version) async { var file = File('app/AppImageBuilder.yml'); var lines = await file.readAsLines(); - lines[13] = ' version: $version'; + lines[16] = ' version: $version'; lines.add(''); await file.writeAsString(lines.join('\r\n')); print('Successfully updated app image version to $version');