From 5e626f66d2670a7f3fd04e805610ef98a506e401 Mon Sep 17 00:00:00 2001
From: Tomas Krupka <6817216+krupkat@users.noreply.github.com>
Date: Sun, 28 Jul 2024 16:39:56 +0200
Subject: [PATCH] Release 0.19.0
---
CHANGELOG.md | 5 +++++
misc/build/linux/cz.krupkat.Xpano.metainfo.xml | 8 ++++++++
misc/build/windows-store/package.ps1 | 2 +-
xpano/pipeline/options.h | 2 +-
4 files changed, 15 insertions(+), 2 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ebd6ea6b..21c07fa5 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,8 @@
+# Xpano 0.19.0
+
+- User selectable maximum panorama size (in MPx)
+ - Useful to limit cpu / memory usage with very large panoramas
+
# Xpano 0.18.1
- Fix cropped panorama export
diff --git a/misc/build/linux/cz.krupkat.Xpano.metainfo.xml b/misc/build/linux/cz.krupkat.Xpano.metainfo.xml
index 0e4f8c30..91dca172 100644
--- a/misc/build/linux/cz.krupkat.Xpano.metainfo.xml
+++ b/misc/build/linux/cz.krupkat.Xpano.metainfo.xml
@@ -30,6 +30,14 @@
Xpano
+
+
+
+ - User selectable maximum panorama size (in MPx)
+ - Useful to limit cpu / memory usage with very large panoramas
+
+
+
diff --git a/misc/build/windows-store/package.ps1 b/misc/build/windows-store/package.ps1
index 499b4a31..8d3a010f 100644
--- a/misc/build/windows-store/package.ps1
+++ b/misc/build/windows-store/package.ps1
@@ -10,7 +10,7 @@ Param
$TagParam
)
-Copy-Item -Path "misc/build/windows-store/*" -Destination "install" -Recurse -Force
+Copy-Item -Path "misc/build/windows-store/*" -Destination "install" -Recurse -Container -Force
cd "install"
# Generate cert, this is not super sensitive, Microsoft resigns with their own cert
diff --git a/xpano/pipeline/options.h b/xpano/pipeline/options.h
index bd24acf7..4a1602df 100644
--- a/xpano/pipeline/options.h
+++ b/xpano/pipeline/options.h
@@ -15,7 +15,7 @@ namespace xpano::pipeline {
// - Major changes can be auto detected by alpaca reflection, but e.g.
// modifying the enums cannot, so bump the version number in this case.
// - Will result in reloading the default values when loading the config.
-constexpr int kOptionsVersion = 4;
+constexpr int kOptionsVersion = 5;
enum class ChromaSubsampling {
k444,