Skip to content

Commit

Permalink
Merge pull request #579 from BlueBubblesApp/development
Browse files Browse the repository at this point in the history
v1.9.0
  • Loading branch information
zlshames authored Nov 7, 2023
2 parents af33fb6 + 6e7faf3 commit 9cae6a9
Show file tree
Hide file tree
Showing 156 changed files with 2,953 additions and 1,341 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bluebubbles-server",
"version": "1.8.0",
"version": "1.9.0",
"description": "BlueBubbles Server is the app that powers the BlueBubbles app ecosystem",
"private": true,
"workspaces": [
Expand Down
Binary file modified packages/server/appResources/macos/daemons/cloudflared
Binary file not shown.
2 changes: 1 addition & 1 deletion packages/server/appResources/macos/daemons/cloudflared.md5
Original file line number Diff line number Diff line change
@@ -1 +1 @@
207ba90ca89c0ea84e0563a8df1906ca
53f39b71c54e08914cd52e561080fb44
4 changes: 2 additions & 2 deletions packages/server/appResources/private-api/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Signature Verification

The `BlueBubblesHelper.<ext>.md5` files within each macOS directory contain a single string that is the Bundle's MD5 hash, per the build type. The hash is a hash of all the file MD5s within the bundle, in the case of the bundle. You can verify the Bundle by running the following command in your macOS terminal. Replacing `/path/to/private/api/folder` with the path to the parent directory of `BlueBubblesHelper.bundle`:
The `<Type>Helper.md5` files within each macOS directory contain a single string that is the Bundle's MD5 hash, per the build type. The hash is a hash of all the file MD5s within the bundle, in the case of the bundle. You can verify the Bundle by running the following command in your macOS terminal. Replacing `/path/to/private/api/folder` with the path to the parent directory of `BlueBubblesHelper.bundle`:

`find -s /path/to/private/api/folder/BlueBubblesHelper.bundle -type f -exec md5 {} \; | md5`
`md5 /path/to/private/api/folder/BlueBubblesHelper.dylib`

**GitHub Release Reference**: https://github.com/BlueBubblesApp/BlueBubbles-Server-Helper/releases

Expand Down
Binary file modified packages/server/appResources/private-api/macos10/BlueBubblesHelper.dylib
100644 → 100755
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6141c214546ff852ea0b3f8ee304c893
58cf00a723822254164bdc9135c9516c
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
12113e1a0008caaae219930a4de02ad5
Binary file modified packages/server/appResources/private-api/macos11/BlueBubblesHelper.dylib
100644 → 100755
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1 +1 @@
97eca9d3250121347fe5cb2ce70f18ba
7c5f6f04d0d178ffbf2a1ce623b65370
2 changes: 1 addition & 1 deletion packages/server/appResources/private-api/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.17
0.0.18
6 changes: 3 additions & 3 deletions packages/server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bluebubbles/server",
"version": "1.8.0",
"version": "1.9.0",
"main": "./dist/main.js",
"license": "Apache-2.0",
"author": {
Expand Down Expand Up @@ -60,7 +60,7 @@
"babel-loader": "^8.1.0",
"css-loader": "^3.5.2",
"electron": "17.4.11",
"electron-builder": "^22.9.1",
"electron-builder": "^23.0.2",
"electron-notarize": "^1.2.1",
"electron-rebuild": "^3.2.9",
"eslint": "^8.13.0",
Expand Down Expand Up @@ -107,7 +107,7 @@
"minimist": "^1.2.6",
"ngrok": "^4.3.3",
"node-forge": "^1.3.1",
"node-mac-contacts": "1.5.0",
"node-mac-contacts": "^1.7.2",
"node-mac-permissions": "^2.3.0",
"node-typedstream": "^1.4.0",
"numeral": "^2.0.6",
Expand Down
2 changes: 1 addition & 1 deletion packages/server/scripts/electron-builder-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ module.exports = {
"NSSystemAdministrationUsageDescription": "BlueBubbles needs access to manage your system",
},
"gatekeeperAssess": false,
"minimumSystemVersion": "10.13.0"
"minimumSystemVersion": "10.11.0"
},
"dmg": {
"sign": false
Expand Down
4 changes: 3 additions & 1 deletion packages/server/scripts/webpack.base.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ module.exports = {
resolve: {
extensions: [".tsx", ".ts", ".js", ".json"],
alias: {
"@server": path.resolve(__dirname, "../src/server")
"@server": path.resolve(__dirname, "../src/server"),
"@windows": path.resolve(__dirname, "../src/windows"),
"@trays": path.resolve(__dirname, "../src/trays")
}
},
devtool: "source-map",
Expand Down
Loading

0 comments on commit 9cae6a9

Please sign in to comment.