Skip to content

Commit 7f1c954

Browse files
Merge pull request #8 from LMMS/master
Master
2 parents d683a51 + 5431cc7 commit 7f1c954

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+16934
-47030
lines changed

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ matrix:
2525
depth: false
2626
- os: osx
2727
osx_image: xcode8.3
28+
before_install:
29+
# appdmg doesn't work with old Node.js
30+
- if [ "$TRAVIS_OS_NAME" = osx ]; then nvm install 10; fi
2831
install: ${TRAVIS_BUILD_DIR}/.travis/install.sh
2932
script: ${TRAVIS_BUILD_DIR}/.travis/script.sh
3033
after_script: ${TRAVIS_BUILD_DIR}/.travis/after_script.sh

.travis/osx..install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ brew install $PACKAGES
1919
# fftw tries to install gcc which conflicts with travis
2020
brew install fftw --ignore-dependencies
2121

22-
sudo npm install -g appdmg
22+
npm install -g appdmg

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ SET(PROJECT_COPYRIGHT "2008-${PROJECT_YEAR} ${PROJECT_AUTHOR}")
3333
SET(VERSION_MAJOR "1")
3434
SET(VERSION_MINOR "2")
3535
SET(VERSION_RELEASE "0")
36-
SET(VERSION_STAGE "rc8")
36+
SET(VERSION_STAGE "")
3737
SET(VERSION_BUILD "0")
3838
SET(VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_RELEASE}")
3939
IF(VERSION_STAGE)

cmake/apple/dmg_branding.png

31.9 KB
Loading

cmake/apple/dmg_branding@2x.png

113 KB
Loading

cmake/apple/lmms.plist.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,5 +147,7 @@
147147
<string>NSApplication</string>
148148
<key>NSHighResolutionCapable</key>
149149
<string>True</string>
150+
<key>NSRequiresAquaSystemAppearance</key>
151+
<string>False</string>
150152
</dict>
151153
</plist>

cmake/apple/package_apple.json.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"title": "@MACOSX_BUNDLE_BUNDLE_NAME@ @MACOSX_BUNDLE_LONG_VERSION_STRING@",
33
"background": "@CMAKE_SOURCE_DIR@/cmake/apple/dmg_branding.png",
4-
"icon-size": 72,
4+
"icon-size": 128,
55
"contents": [
6-
{ "x": 460, "y": 260, "type": "link", "path": "/Applications" },
7-
{ "x": 220, "y": 260, "type": "file", "path": "@CMAKE_BINARY_DIR@/@MACOSX_BUNDLE_BUNDLE_NAME@.app" }
6+
{ "x": 139, "y": 200, "type": "file", "path": "@CMAKE_BINARY_DIR@/@MACOSX_BUNDLE_BUNDLE_NAME@.app" },
7+
{ "x": 568, "y": 200, "type": "link", "path": "/Applications" }
88
]
99
}

0 commit comments

Comments
 (0)