<pre style='margin:0'>
Renee Otten (reneeotten) pushed a commit to branch master
in repository macports-ports.

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/c61edec11261c7a3f932585ff9c82d8776b60ba2">https://github.com/macports/macports-ports/commit/c61edec11261c7a3f932585ff9c82d8776b60ba2</a></p>
<pre style="white-space: pre; background: #F8F8F8">The following commit(s) were added to refs/heads/master by this push:
<span style='display:block; white-space:pre;color:#404040;'>     new c61edec1126 hugin-app: Switch to wxWidgets version 3.2 on macOS 10.14 and later
</span>c61edec1126 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit c61edec11261c7a3f932585ff9c82d8776b60ba2
</span>Author: FlyingSamson <FlyingSamson@tuxcad.de>
AuthorDate: Mon Oct 23 18:56:42 2023 +0200

<span style='display:block; white-space:pre;color:#404040;'>    hugin-app: Switch to wxWidgets version 3.2 on macOS 10.14 and later
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    Previously if the system uses the dark theme (supported since macOS 10.14), this
</span><span style='display:block; white-space:pre;color:#404040;'>    resulted in white font on white buttons. By moving from wxWidgets 3.0 to 3.2 the
</span><span style='display:block; white-space:pre;color:#404040;'>    Hugin UI correctly adopts to the used theme.
</span>---
 graphics/hugin-app/Portfile | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/graphics/hugin-app/Portfile b/graphics/hugin-app/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 7e0c787f419..a8264d78568 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/graphics/hugin-app/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/graphics/hugin-app/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -33,7 +33,12 @@ use_bzip2               yes
</span> compiler.cxx_standard   2011
 
 perl5.branches          5.34
<span style='display:block; white-space:pre;background:#ffe0e0;'>-wxWidgets.use           wxWidgets-3.0-cxx11
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+# use wxWidget-3.2 on macOS Mojave (10.14) and later for dark mode support
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+if {${os.platform} eq "darwin" && ${os.major} >= 18} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    wxWidgets.use           wxWidgets-3.2
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+} else {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    wxWidgets.use           wxWidgets-3.0-cxx11
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+}
</span> boost.version           1.78
 
 checksums               rmd160  50485c0a6fe10dbcf07f3d4e10cdb3ada291925e \
</pre><pre style='margin:0'>

</pre>