Skip to content

Commit

Permalink
bf
Browse files Browse the repository at this point in the history
  • Loading branch information
vdelachaux committed Oct 19, 2023
1 parent ce3036c commit 3204438
Show file tree
Hide file tree
Showing 16 changed files with 1,231 additions and 75 deletions.
Binary file modified Build/4DPop AppMaker.4dbase.zip
Binary file not shown.
Binary file removed Build/4DPop AppMaker.dmg
Binary file not shown.
Binary file modified Build/Components/4DPop AppMaker.4dbase/4DPop AppMaker.4DZ
Binary file not shown.
4 changes: 2 additions & 2 deletions Build/Components/4DPop AppMaker.4dbase/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
<key>NSHumanReadableCopyright</key>
<string>©vdl 2009-2023</string>
<key>CFBundleVersion</key>
<string>557</string>
<string>571</string>
<key>CFBundleDisplayName</key>
<string>4DPop AppMaker</string>
<key>CFBundleShortVersionString</key>
<string>20R4</string>
<key>CFBundleGetInfoString</key>
<string>20R4</string>
<key>CFBundleLongVersionString</key>
<string>20R4 (556)</string>
<string>20R4 (570)</string>
<key>CFBundleName</key>
<string>4DPop AppMaker</string>
</dict>
Expand Down
Binary file not shown.
Binary file not shown.
4 changes: 2 additions & 2 deletions Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
<key>NSHumanReadableCopyright</key>
<string>©vdl 2009-2023</string>
<key>CFBundleVersion</key>
<string>557</string>
<string>571</string>
<key>CFBundleDisplayName</key>
<string>4DPop AppMaker</string>
<key>CFBundleShortVersionString</key>
<string>20R4</string>
<key>CFBundleGetInfoString</key>
<string>20R4</string>
<key>CFBundleLongVersionString</key>
<string>20R4 (556)</string>
<string>20R4 (570)</string>
<key>CFBundleName</key>
<string>4DPop AppMaker</string>
</dict>
Expand Down
695 changes: 674 additions & 21 deletions LICENSE

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions Project/Sources/Classes/AppMaker.4dm
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ Function notarizelib4D() : Boolean

End if

Folder:C1567(fk logs folder:K87:17).file("ditto.log").setText($ditto.history.join("\n"))
Folder:C1567(fk logs folder:K87:17; *).file("ditto.log").setText($ditto.history.join("\n"))

// Unmount the virtual disk
$hdutil.detach()
Expand All @@ -418,11 +418,11 @@ Function notarizelib4D() : Boolean
End if
End if

Folder:C1567(fk logs folder:K87:17).file("notarytool.log").setText($notarytool.history.join("\n"))
Folder:C1567(fk logs folder:K87:17; *).file("notarytool.log").setText($notarytool.history.join("\n"))

End if

Folder:C1567(fk logs folder:K87:17).file("hdutil.log").setText($hdutil.history.join("\n"))
Folder:C1567(fk logs folder:K87:17; *).file("hdutil.log").setText($hdutil.history.join("\n"))

End if

Expand Down Expand Up @@ -517,9 +517,9 @@ Function notarize() : Boolean
End if

// Keep a log of all operations
Folder:C1567(fk logs folder:K87:17).file("hdutil.log").setText($hdutil.history.join("\n"))
Folder:C1567(fk logs folder:K87:17).file("notarytool.log").setText($notarytool.history.join("\n"))
Folder:C1567(fk logs folder:K87:17).file("ditto.log").setText($ditto.history.join("\n"))
Folder:C1567(fk logs folder:K87:17; *).file("hdutil.log").setText($hdutil.history.join("\n"))
Folder:C1567(fk logs folder:K87:17; *).file("notarytool.log").setText($notarytool.history.join("\n"))
Folder:C1567(fk logs folder:K87:17; *).file("ditto.log").setText($ditto.history.join("\n"))

return $success

Expand Down
Loading

0 comments on commit 3204438

Please sign in to comment.