Skip to content

Commit

Permalink
merge 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
liuliu-dev committed Oct 17, 2024
1 parent 1784532 commit cee4a13
Show file tree
Hide file tree
Showing 4 changed files with 169 additions and 64 deletions.
1 change: 0 additions & 1 deletion main/background.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ async function isGraphQLServerReady(url: string): Promise<boolean> {
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ query: "{ __typename }" }),
});
console.log(url, response);
return response.ok;
} catch (error) {
console.error("Error pinging GraphQL server:", error);
Expand Down
32 changes: 10 additions & 22 deletions package-mas.json → package-dmg.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"private": true,
"name": "dolt-workbench",
"description": "SQL workbench for MySQL and PostgreSQL databases",
"version": "0.2.14",
"version": "0.3.0",
"main": "app/background.js",
"workspaces": {
"packages": [
Expand All @@ -25,7 +25,7 @@
"build": {
"appId": "com.dolthub.dolt-workbench",
"productName": "Dolt Workbench",
"buildVersion": "0.2.13",
"buildVersion": "0.3.0",
"copyright": "Copyright © 2024 <DoltHub Inc>",
"files": [
"app",
Expand All @@ -50,28 +50,16 @@
"icon": "build/mac/AppIcon.icns",
"extendInfo": {
"CFBundleIconName": "AppIcon",
"CFBundleIconFile": "AppIcon"
"CFBundleIconFile": "AppIcon",
"CFBundleDisplayName": "Dolt Workbench"
},
"artifactName": "${productName}-mac-${arch}.${ext}",
"target": [
{
"target": "mas",
"arch": "universal"
}
],
"notarize": {
"teamId": "FK9YU86WZ5"
},
"x64ArchFiles": "*",
"type": "distribution",
"hardenedRuntime": false,
"target": "dmg",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"asarUnpack": [
"**/*.node"
],
"provisioningProfile": "build/mac/MacAppStore.provisionprofile",
"entitlements": "build/mac/entitlements.mas.plist",
"entitlementsInherit": "build/mac/entitlements.mas.inherit.plist"
"provisioningProfile": "build/mac/AppleDevelopment.provisionprofile",
"entitlements": "build/mac/entitlements.plist",
"entitlementsInherit": "build/mac/entitlements.inherit.plist"
}
},
"dependencies": {
Expand All @@ -94,4 +82,4 @@
"rimraf": "^6.0.1",
"typescript": "^5.4.5"
}
}
}
30 changes: 21 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"private": true,
"name": "dolt-workbench",
"description": "SQL workbench for MySQL and PostgreSQL databases",
"version": "0.2.13",
"version": "0.3.0",
"main": "app/background.js",
"workspaces": {
"packages": [
Expand All @@ -25,7 +25,7 @@
"build": {
"appId": "com.dolthub.dolt-workbench",
"productName": "Dolt Workbench",
"buildVersion": "0.2.13",
"buildVersion": "0.3.0",
"copyright": "Copyright © 2024 <DoltHub Inc>",
"files": [
"app",
Expand All @@ -50,16 +50,28 @@
"icon": "build/mac/AppIcon.icns",
"extendInfo": {
"CFBundleIconName": "AppIcon",
"CFBundleIconFile": "AppIcon",
"CFBundleDisplayName": "Dolt Workbench"
"CFBundleIconFile": "AppIcon"
},
"artifactName": "${productName}-mac-${arch}.${ext}",
"target": "dmg",
"hardenedRuntime": true,
"target": [
{
"target": "mas",
"arch": "universal"
}
],
"notarize": {
"teamId": "FK9YU86WZ5"
},
"x64ArchFiles": "*",
"type": "distribution",
"hardenedRuntime": false,
"gatekeeperAssess": false,
"provisioningProfile": "build/mac/AppleDevelopment.provisionprofile",
"entitlements": "build/mac/entitlements.plist",
"entitlementsInherit": "build/mac/entitlements.inherit.plist"
"asarUnpack": [
"**/*.node"
],
"provisioningProfile": "build/mac/MacAppStore.provisionprofile",
"entitlements": "build/mac/entitlements.mas.plist",
"entitlementsInherit": "build/mac/entitlements.mas.inherit.plist"
}
},
"dependencies": {
Expand Down
Loading

0 comments on commit cee4a13

Please sign in to comment.