Skip to content

Commit

Permalink
Publish version v0.1.13
Browse files Browse the repository at this point in the history
  • Loading branch information
Kitenite committed Jan 2, 2025
1 parent f353232 commit 28e369e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
13 changes: 11 additions & 2 deletions apps/studio/electron-builder.json5
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,20 @@
},
files: ['dist-electron', 'dist'],
mac: {
artifactName: '${productName}-${arch}.${ext}',
artifactName: '${productName}.${ext}',
category: 'public.app-category.developer-tools',
hardenedRuntime: true,
gatekeeperAssess: false,
target: ['zip', 'dmg'],
target: [
{
target: 'dmg',
arch: ['x64', 'arm64'],
},
{
target: 'zip',
arch: ['x64', 'arm64'],
},
],
},
win: {
target: [
Expand Down
2 changes: 1 addition & 1 deletion apps/studio/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"productName": "Onlook",
"name": "@onlook/studio",
"version": "0.1.12",
"version": "0.1.13",
"homepage": "https://onlook.dev",
"main": "dist-electron/main/index.js",
"description": "The first-ever devtool for designers",
Expand Down

0 comments on commit 28e369e

Please sign in to comment.