Skip to content

Commit a0e43c2

Browse files
committed
config rebuild
1 parent 9cefc1c commit a0e43c2

8 files changed

+4486
-130
lines changed

.gitignore

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11

22
.DS_Store
3+
*.DS_Store
4+
node_modules
5+
*DS_Store
36
/node_modules
47
*.swp
5-
out/
8+
out/
9+
contract_library/.DS_Store

.gitmodules

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
[submodule "ollama-ui"]
2-
path = ollama-ui
3-
url = https://github.com/ollama-ui/ollama-ui.git
1+
#[submodule "ollama-ui"]
2+
# path = ollama-ui
3+
# url = https://github.com/ollama-ui/ollama-ui.git

entitlements.plist

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>com.apple.security.cs.allow-jit</key>
6+
<true/>
7+
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
8+
<true/>
9+
<key>com.apple.security.cs.allow-dyld-environment-variables</key>
10+
<true/>
11+
<key>com.apple.security.cs.disable-library-validation</key>
12+
<true/>
13+
<key>com.apple.security.cs.debugger</key>
14+
<true/>
15+
<key>com.apple.security.cs.disable-executable-page-protection</key>
16+
<true/>
17+
</dict>
18+
</plist>

forge.config.js

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,17 @@
11
module.exports = {
22
packagerConfig: {
33
asar: true,
4-
"icon": "mtn.icns"
4+
osxSign: {
5+
identity: 'Developer ID Application: Better Brand Management LLC (ZA3KN2X4MN)',
6+
'hardened-runtime': true,
7+
entitlements: 'entitlements.plist',
8+
'entitlements-inherit': 'entitlements.plist',
9+
'--notarize': true,
10+
},
11+
"afterSign": "build/notarize.js",
12+
"icon": 'mtn.icns'
513
},
14+
615
rebuildConfig: {},
716
makers: [
817
{

0 commit comments

Comments
 (0)