-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #402 from BlueBubblesApp/development
v1.2.0
- Loading branch information
Showing
81 changed files
with
136,090 additions
and
938 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,5 +6,7 @@ release/ | |
.DS_Store | ||
**/*.log | ||
.env | ||
.build | ||
.swiftpm | ||
.yarn | ||
.yarnrc* | ||
.yarnrc* |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
protocol: quic | ||
no-autoupdate: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
8e92f21d0764b53cb95f94611a513868 | ||
103dce48075ee6127391f9e98ec81613 |
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
// NOTE: All paths are relative to the package.json that will be loading this configuration file. | ||
// Making them relative to the scripts folder will break the commands | ||
module.exports = { | ||
"productName": "BlueBubbles", | ||
"appId": "com.BlueBubbles.BlueBubbles-Server", | ||
"npmRebuild": false, | ||
"directories": { | ||
"output": "release", | ||
"buildResources": "appResources" | ||
}, | ||
"files": [ | ||
"dist/", | ||
"node_modules/", | ||
"appResources/", | ||
"package.json" | ||
], | ||
"asar": true, | ||
"asarUnpack": [ | ||
"**/node_modules/ngrok/bin/**" | ||
], | ||
"extraResources": [ | ||
"**/appResources/**" | ||
], | ||
"mac": { | ||
"category": "public.app-category.social-networking", | ||
"publish": [ | ||
{ | ||
"provider": "github", | ||
"repo": "bluebubbles-server", | ||
"owner": "BlueBubblesApp", | ||
"private": false, | ||
"channel": "latest", | ||
"releaseType": "release" | ||
} | ||
], | ||
"target": [ | ||
{ | ||
"target": "default", | ||
"arch": [ | ||
'x64', | ||
// 'arm64' | ||
] | ||
} | ||
], | ||
"type": "distribution", | ||
"icon": "../../icons/regular/icon-512.png", | ||
"darkModeSupport": true, | ||
"hardenedRuntime": true, | ||
"entitlements": "./scripts/entitlements.mac.plist", | ||
"entitlementsInherit": "./scripts/entitlements.mac.plist", | ||
"extendInfo": { | ||
"NSContactsUsageDescription": "BlueBubbles needs access to your Contacts", | ||
"NSAppleEventsUsageDescription": "BlueBubbles needs access to run AppleScripts", | ||
"NSSystemAdministrationUsageDescription": "BlueBubbles needs access to manage your system", | ||
}, | ||
"gatekeeperAssess": false, | ||
"minimumSystemVersion": "10.11.6" | ||
}, | ||
"dmg": { | ||
"sign": false | ||
}, | ||
"afterSign": "./scripts/notarize.js" | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.