Skip to content

Commit

Permalink
Change build-installer.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
nroduit committed May 5, 2024
1 parent 9f8b89f commit eb72e14
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-installer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ jobs:
# submit app for notarization
if xcrun notarytool submit --keychain "$HOME/Library/Keychains/signing_temp.keychain-db" -u "${{ secrets.MACOS_NOTARIZATION_USER }}" -p "${{ secrets.MACOS_NOTARIZATION_PWD }}" -i "org.test.${{env.NAME}}" "$BUNDLE_PKG" > "$NOTARIZE_APP_LOG" 2>&1; then
if xcrun notarytool submit --keychain "$HOME/Library/Keychains/signing_temp.keychain-db" -u "${{ secrets.MACOS_NOTARIZATION_USER }}" -p "${{ secrets.MACOS_NOTARIZATION_PWD }}" "$BUNDLE_PKG" > "$NOTARIZE_APP_LOG" 2>&1; then
cat "$NOTARIZE_APP_LOG"
RequestUUID=$(awk -F ' = ' '/RequestUUID/ {print $2}' "$NOTARIZE_APP_LOG")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,9 @@ public void applyNRotation(ViewCanvas<ImageElement> view) {
}

public void reloadFinalProcessing(ViewCanvas<ImageElement> view) {
if(view == null || view.getSourceImage() == null) {
return;
}
postProcessOpManager.setParamValue(CropOp.OP_NAME, CropOp.P_AREA, null);
applyNRotation(view);

Expand Down
6 changes: 3 additions & 3 deletions weasis-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<!-- force command line arguments settings to set version -->
<!-- $ mvn clean install -Drevision=4.2.2 -Dchangelist=-SNAPSHOT -->
<revision>4.4.0</revision>
<changelist>-SNAPSHOT</changelist> <!-- Remove "-SNAPSHOT" for release -->
<changelist></changelist> <!-- Remove "-SNAPSHOT" for release -->

<java-version>21</java-version>
<jdk-version>21</jdk-version>
Expand All @@ -27,7 +27,7 @@
<app.version>${revision}${changelist}</app.version>
<base.minimal.version>4.4.0</base.minimal.version>
<i18n.version>4.0.0-SNAPSHOT</i18n.version>
<weasis.releasenotes>https://github.com/nroduit/Weasis/blob/master/CHANGELOG.md#v440-2024-05-04</weasis.releasenotes>
<weasis.releasenotes>https://github.com/nroduit/Weasis/blob/master/CHANGELOG.md#v440-2024-05-05</weasis.releasenotes>

<felix.framework.version>7.0.5</felix.framework.version>
<flatlaf.version>3.4.1</flatlaf.version>
Expand All @@ -48,7 +48,7 @@
<felix.scr.version>2.2.6</felix.scr.version>

<slf4j.version>2.0.12</slf4j.version>
<logback.version>1.5.2</logback.version>
<logback.version>1.5.6</logback.version>
<dockingframes.version>1.1.7</dockingframes.version>
<weasis-dicom-tools.version>5.32.0</weasis-dicom-tools.version>
<weasis.core.img.version>4.9.0.1</weasis.core.img.version>
Expand Down

0 comments on commit eb72e14

Please sign in to comment.