File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ {
2+ "permissions" : {
3+ "allow" : [
4+ " Bash(find:*)" ,
5+ " Bash(grep:*)" ,
6+ " Bash(ls:*)"
7+ ]
8+ }
9+ }
Original file line number Diff line number Diff line change 22# Used by GitHub Actions for self-hosted fork builds
33
44productName : 1Code
5- appId : dev.21st.agents
5+ appId : dev.aadivar.1code
66
77directories :
88 buildResources : build
Original file line number Diff line number Diff line change 123123 "vite" : " ^6.3.4"
124124 },
125125 "build" : {
126- "appId" : " dev.21st.agents " ,
126+ "appId" : " dev.aadivar.1code " ,
127127 "productName" : " 1Code" ,
128128 "npmRebuild" : true ,
129129 "protocols" : [
130130 {
131131 "name" : " 1Code" ,
132132 "schemes" : [
133- " twentyfirst-agents "
133+ " aadivar-1code "
134134 ]
135135 }
136136 ],
Original file line number Diff line number Diff line change @@ -215,7 +215,7 @@ export class AuthManager {
215215 if ( this . isDev ) {
216216 authUrl += `&callback=${ encodeURIComponent ( "http://localhost:21321/auth/callback" ) } `
217217 // Pass dev protocol so production web can use correct deep link if callback fails
218- authUrl += `&protocol=twentyfirst-agents -dev`
218+ authUrl += `&protocol=aadivar-1code -dev`
219219 }
220220
221221 shell . openExternal ( authUrl )
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ const IS_DEV = !!process.env.ELECTRON_RENDERER_URL
2626
2727// Deep link protocol (must match package.json build.protocols.schemes)
2828// Use different protocol in dev to avoid conflicts with production app
29- const PROTOCOL = IS_DEV ? "twentyfirst-agents -dev" : "twentyfirst-agents "
29+ const PROTOCOL = IS_DEV ? "aadivar-1code -dev" : "aadivar-1code "
3030
3131// Set dev mode userData path BEFORE requestSingleInstanceLock()
3232// This ensures dev and prod have separate instance locks
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import { getAuthManager } from "../../../index"
55
66// Protocol constant (must match main/index.ts)
77const IS_DEV = ! ! process . env . ELECTRON_RENDERER_URL
8- const PROTOCOL = IS_DEV ? "twentyfirst-agents -dev" : "twentyfirst-agents "
8+ const PROTOCOL = IS_DEV ? "aadivar-1code -dev" : "aadivar-1code "
99
1010export const debugRouter = router ( {
1111 /**
You can’t perform that action at this time.
0 commit comments