cicy-desktop 2.1.209 → 2.1.210
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/package.json +1 -1
- package/src/backends/homepage-preload.js +3 -1
- package/src/backends/homepage-react/assets/index-DVhOPTDM.js +377 -0
- package/src/backends/homepage-react/index.html +1 -1
- package/src/backends/ipc.js +2 -2
- package/src/backends/local-teams.js +61 -3
- package/src/i18n/locales/en.json +6 -1
- package/src/i18n/locales/fr.json +6 -1
- package/src/i18n/locales/ja.json +6 -1
- package/src/i18n/locales/zh-CN.json +6 -1
- package/src/main.js +6 -0
- package/src/tabbrowser/tab-shell-preload.js +15 -0
- package/src/tabbrowser/tab-shell.html +34 -8
- package/src/tools/tab-browser-tools.js +26 -3
- package/workers/render/src/App.jsx +43 -6
- package/src/backends/homepage-react/assets/index-DXv0ScMw.js +0 -377
package/package.json
CHANGED
|
@@ -212,7 +212,7 @@ contextBridge.exposeInMainWorld("cicy", {
|
|
|
212
212
|
// Open / reload a URL as a TAB in profile 0 (homepage cards open like the local
|
|
213
213
|
// card — current profile, not a new window / system browser).
|
|
214
214
|
tabs: {
|
|
215
|
-
open: (url, title) => logInvoke("tabs:open", { url, title }),
|
|
215
|
+
open: (url, title, avatar, team) => logInvoke("tabs:open", { url, title, avatar, team }),
|
|
216
216
|
reload: (url, title) => logInvoke("tabs:reload", { url, title }),
|
|
217
217
|
reloadIfOpen: (url, title) => logInvoke("tabs:reloadIfOpen", { url, title }),
|
|
218
218
|
activateIfOpen: (url) => logInvoke("tabs:activateIfOpen", { url }),
|
|
@@ -281,6 +281,8 @@ contextBridge.exposeInMainWorld("cicy", {
|
|
|
281
281
|
add: (spec) => logInvoke("localTeams:add", spec),
|
|
282
282
|
remove: (id) => logInvoke("localTeams:remove", id),
|
|
283
283
|
update: (id, patch) => logInvoke("localTeams:update", { id, patch }),
|
|
284
|
+
setAvatar: (id, dataUrl) => logInvoke("localTeams:setAvatar", { id, dataUrl }),
|
|
285
|
+
avatars: () => logInvoke("localTeams:avatars"),
|
|
284
286
|
upgrade: (id) => logInvoke("localTeams:upgrade", id),
|
|
285
287
|
syncCloud: () => logInvoke("localTeams:syncCloud"),
|
|
286
288
|
// Subscribe to relay requests forwarded from a child <webview>
|