Skip to content

Commit

Permalink
Attempt to fix rare QOwnNotes disk image mount problems under macOS (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
pbek committed Feb 16, 2020
1 parent 07d7c21 commit 2caef5c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
also triggers a reload of the remote note folder selector if it is visible
- attempted to fix random crashes while editing notes on macOS
(for [#1626](https://github.com/pbek/QOwnNotes/issues/1626), thank you @Waqar144)
- attempted to fix rare QOwnNotes disk image mount problems under macOS
(for [#1630](https://github.com/pbek/QOwnNotes/issues/1630))
- added repositories for **openSUSE Leap 15.2**
- please visit the [openSUSE installation page](https://www.qownnotes.org/installation#openSUSE)
for instructions
Expand Down
2 changes: 1 addition & 1 deletion gitlab-ci/create-dmg.sh
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ fi
echo "Create new disk image"
#Create the disk image
rm -f ./$APP.dmg
hdiutil create -srcfolder ./$TEMPDIR -format UDBZ ./$APP.dmg
hdiutil create -srcfolder ./$TEMPDIR -ov -format UDBZ -fs HFS+ ./$APP.dmg
if [ "$?" -ne "0" ]; then
echo "Failed to create disk image"
exit 1
Expand Down
2 changes: 1 addition & 1 deletion travis/create-dmg.sh
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ fi
echo "Create new disk image"
#Create the disk image
rm -f ./$APP.dmg
hdiutil create -srcfolder ./$TEMPDIR -format UDBZ ./$APP.dmg
hdiutil create -srcfolder ./$TEMPDIR -ov -format UDBZ -fs HFS+ ./$APP.dmg
if [ "$?" -ne "0" ]; then
echo "Failed to create disk image"
exit 1
Expand Down

0 comments on commit 2caef5c

Please sign in to comment.