diff --git a/.gitignore b/.gitignore index 8357033e6..0c46c50c0 100644 --- a/.gitignore +++ b/.gitignore @@ -18,6 +18,8 @@ build/ [Oo]bj/ AppDir/ publish_appimage/ +publish_ava/ +publish_tmp_ava/ # Enable "build/" folder in the NuGet Packages folder since NuGet packages use it for MSBuild targets !packages/*/build/ diff --git a/distribution/macos/Assets.car b/distribution/macos/Assets.car new file mode 100644 index 000000000..d0121ede0 Binary files /dev/null and b/distribution/macos/Assets.car differ diff --git a/distribution/macos/Info.plist b/distribution/macos/Info.plist index 7f7fe0dd4..a2d8a96f8 100644 --- a/distribution/macos/Info.plist +++ b/distribution/macos/Info.plist @@ -10,6 +10,8 @@ Ryujinx CFBundleIconFile Ryujinx.icns + CFBundleIconName + Ryujinx CFBundleDocumentTypes @@ -40,7 +42,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 1.2 + 1.3 CFBundleSignature ???? CFBundleVersion diff --git a/distribution/macos/create_app_bundle.sh b/distribution/macos/create_app_bundle.sh index 0b4ab8e04..b90848334 100755 --- a/distribution/macos/create_app_bundle.sh +++ b/distribution/macos/create_app_bundle.sh @@ -25,6 +25,7 @@ cp "$PUBLISH_DIRECTORY"/*.dylib "$APP_BUNDLE_DIRECTORY/Contents/Frameworks" cp Info.plist "$APP_BUNDLE_DIRECTORY/Contents" cp Ryujinx.icns "$APP_BUNDLE_DIRECTORY/Contents/Resources/Ryujinx.icns" cp updater.sh "$APP_BUNDLE_DIRECTORY/Contents/Resources/updater.sh" +cp Assets.car "$APP_BUNDLE_DIRECTORY/Contents/Resources/Assets.car" cp -r "$PUBLISH_DIRECTORY/THIRDPARTY.md" "$APP_BUNDLE_DIRECTORY/Contents/Resources" echo -n "APPL????" > "$APP_BUNDLE_DIRECTORY/Contents/PkgInfo"