stacks-ai 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.html
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<meta charset="UTF-8" />
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
|
6
6
|
<title>Stacks</title>
|
|
7
|
-
<script type="module" crossorigin src="./assets/index-
|
|
7
|
+
<script type="module" crossorigin src="./assets/index-dFjja42D.js"></script>
|
|
8
8
|
<link rel="stylesheet" crossorigin href="./assets/index-Q3CD-OmM.css">
|
|
9
9
|
</head>
|
|
10
10
|
<body>
|
package/electron/main.cjs
CHANGED
|
@@ -4,6 +4,9 @@ const path = require('path')
|
|
|
4
4
|
const net = require('net')
|
|
5
5
|
const fs = require('fs')
|
|
6
6
|
|
|
7
|
+
// Set app name for macOS menu
|
|
8
|
+
app.name = 'Stacks'
|
|
9
|
+
|
|
7
10
|
const isDev = process.env.NODE_ENV === 'development'
|
|
8
11
|
|
|
9
12
|
let mainWindow = null
|
|
@@ -114,6 +117,7 @@ function createWindow() {
|
|
|
114
117
|
width: 1400,
|
|
115
118
|
height: 900,
|
|
116
119
|
frame: false,
|
|
120
|
+
icon: path.join(__dirname, '..', 'assets', 'icon.icns'),
|
|
117
121
|
webPreferences: {
|
|
118
122
|
nodeIntegration: false,
|
|
119
123
|
contextIsolation: true,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "stacks-ai",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Stacks - AI-powered infinite canvas for notes, images, and creative organization",
|
|
5
5
|
"author": "Jason Kneen",
|
|
6
6
|
"license": "MIT",
|
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
"dist/index.html",
|
|
17
17
|
"dist/mcp/*.js",
|
|
18
18
|
"electron/",
|
|
19
|
+
"assets/icon.icns",
|
|
19
20
|
"README.md"
|
|
20
21
|
],
|
|
21
22
|
"scripts": {
|