mirror of
https://github.com/multipleof4/sune.git
synced 2026-07-18 00:45:42 +00:00
Compare commits
4 Commits
4fcda90f81
...
ed5a2b84af
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ed5a2b84af | ||
| e451273ac9 | |||
| 916c6ec5c8 | |||
|
|
195b2bba16 |
@@ -2,8 +2,7 @@
|
|||||||
:root{--safe-bottom:env(safe-area-inset-bottom)}
|
:root{--safe-bottom:env(safe-area-inset-bottom)}
|
||||||
::-webkit-scrollbar{height:8px;width:8px}
|
::-webkit-scrollbar{height:8px;width:8px}
|
||||||
::-webkit-scrollbar-thumb{background:#e5e7eb;border-radius:999px}
|
::-webkit-scrollbar-thumb{background:#e5e7eb;border-radius:999px}
|
||||||
.no-scrollbar::-webkit-scrollbar{display:none}
|
@media(pointer: coarse){.no-scrollbar::-webkit-scrollbar{display:none}.no-scrollbar{-ms-overflow-style:none;scrollbar-width:none}}
|
||||||
.no-scrollbar{-ms-overflow-style:none;scrollbar-width:none}
|
|
||||||
html,body{overscroll-behavior-y:contain;font-family:'Assistant',sans-serif}
|
html,body{overscroll-behavior-y:contain;font-family:'Assistant',sans-serif}
|
||||||
.markdown-body{font-size:14px;line-height:1.6}
|
.markdown-body{font-size:14px;line-height:1.6}
|
||||||
.markdown-body pre{overflow:auto}
|
.markdown-body pre{overflow:auto}
|
||||||
@@ -526,6 +526,38 @@ var parseGhUrl = (u) => {
|
|||||||
apiPath: `${owner}/${repo}/contents${path ? "/" + path : ""}`
|
apiPath: `${owner}/${repo}/contents${path ? "/" + path : ""}`
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
var ghGetFileContent = async (info, fileName) => {
|
||||||
|
const meta = await ghApi(`${info.apiPath}/${fileName}?ref=${info.branch}`);
|
||||||
|
if (!meta) {
|
||||||
|
console.warn("[Sune] GH file not found:", fileName);
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
console.log("[Sune] GH file meta:", {
|
||||||
|
name: fileName,
|
||||||
|
size: meta.size,
|
||||||
|
encoding: meta.encoding,
|
||||||
|
hasContent: !!(meta.content && meta.content.trim()),
|
||||||
|
sha: meta.sha
|
||||||
|
});
|
||||||
|
if (meta.content && meta.encoding === "base64") try {
|
||||||
|
return btou(meta.content);
|
||||||
|
} catch (e) {
|
||||||
|
console.error("[Sune] decode (contents) failed:", e);
|
||||||
|
}
|
||||||
|
if (meta.sha) try {
|
||||||
|
const blob = await ghApi(`${info.owner}/${info.repo}/git/blobs/${meta.sha}`);
|
||||||
|
console.log("[Sune] GH blob:", {
|
||||||
|
size: blob?.size,
|
||||||
|
encoding: blob?.encoding,
|
||||||
|
hasContent: !!(blob?.content && blob.content.trim())
|
||||||
|
});
|
||||||
|
if (blob && blob.content && blob.encoding === "base64") return btou(blob.content);
|
||||||
|
} catch (e) {
|
||||||
|
console.error("[Sune] blob fetch failed:", e);
|
||||||
|
}
|
||||||
|
console.warn("[Sune] Could not retrieve content for", fileName);
|
||||||
|
return null;
|
||||||
|
};
|
||||||
//#endregion
|
//#endregion
|
||||||
//#region src/markdown.js
|
//#region src/markdown.js
|
||||||
var md = window.md = window.markdownit({
|
var md = window.md = window.markdownit({
|
||||||
@@ -1331,16 +1363,19 @@ $(el.threadList).on("click", async (e) => {
|
|||||||
clearChat();
|
clearChat();
|
||||||
const u = el.threadRepoInput.value.trim(), prefix = u.startsWith("gh://") ? "rem_t_" : "t_";
|
const u = el.threadRepoInput.value.trim(), prefix = u.startsWith("gh://") ? "rem_t_" : "t_";
|
||||||
let msgs = await localforage.getItem(prefix + id);
|
let msgs = await localforage.getItem(prefix + id);
|
||||||
if (!msgs && u.startsWith("gh://")) try {
|
if ((!msgs || !Array.isArray(msgs) || !msgs.length) && u.startsWith("gh://")) try {
|
||||||
const info = parseGhUrl(u), fileName = serializeThreadName(th), res = await ghApi(`${info.apiPath}/${fileName}?ref=${info.branch}`);
|
const info = parseGhUrl(u), fileName = serializeThreadName(th), text = await ghGetFileContent(info, fileName);
|
||||||
if (res && res.content) {
|
if (text) try {
|
||||||
msgs = JSON.parse(btou(res.content));
|
msgs = JSON.parse(text);
|
||||||
await localforage.setItem(prefix + id, msgs);
|
await localforage.setItem(prefix + id, msgs);
|
||||||
th.status = "synced";
|
th.status = "synced";
|
||||||
await THREAD.save();
|
await THREAD.save();
|
||||||
|
} catch (pe) {
|
||||||
|
console.error("[Sune] Thread JSON parse failed for", fileName, "len", text.length, pe);
|
||||||
}
|
}
|
||||||
|
else console.warn("[Sune] Remote thread returned no content:", fileName);
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.error("Remote fetch failed", e);
|
console.error("[Sune] Remote fetch failed", e);
|
||||||
}
|
}
|
||||||
state.messages = Array.isArray(msgs) ? [...msgs] : [];
|
state.messages = Array.isArray(msgs) ? [...msgs] : [];
|
||||||
for (const m of state.messages) {
|
for (const m of state.messages) {
|
||||||
@@ -2385,6 +2420,7 @@ Object.assign(window, {
|
|||||||
cacheStore,
|
cacheStore,
|
||||||
ghApi,
|
ghApi,
|
||||||
parseGhUrl,
|
parseGhUrl,
|
||||||
|
ghGetFileContent,
|
||||||
pullThreads
|
pullThreads
|
||||||
});
|
});
|
||||||
//#endregion
|
//#endregion
|
||||||
4
dist/index.html
vendored
4
dist/index.html
vendored
@@ -13,8 +13,8 @@
|
|||||||
<script defer src="//unpkg.com/alpinejs"></script>
|
<script defer src="//unpkg.com/alpinejs"></script>
|
||||||
|
|
||||||
|
|
||||||
<script type="module" crossorigin src="/assets/index-DpO4ZMez.js"></script>
|
<script type="module" crossorigin src="/assets/index-Dkjswwpy.js"></script>
|
||||||
<link rel="stylesheet" crossorigin href="/assets/index-CLEI5Rwr.css">
|
<link rel="stylesheet" crossorigin href="/assets/index-DaGRC7Kr.css">
|
||||||
<link rel="manifest" href="/manifest.webmanifest"><script id="vite-plugin-pwa:register-sw" src="/registerSW.js"></script></head>
|
<link rel="manifest" href="/manifest.webmanifest"><script id="vite-plugin-pwa:register-sw" src="/registerSW.js"></script></head>
|
||||||
<body class="bg-white text-gray-900 selection:bg-black/10" x-data @click.window="if($event.target.closest('button')) haptic(); if(!document.getElementById('threadPopover').contains($event.target)&&!$event.target.closest('[data-thread-menu]')) hideThreadPopover(); if(!document.getElementById('sunePopover').contains($event.target)&&!$event.target.closest('[data-sune-menu]')) hideSunePopover(); if(!document.getElementById('userMenu').contains($event.target)&&!document.getElementById('userMenuBtn').contains($event.target)) document.getElementById('userMenu').classList.add('hidden')">
|
<body class="bg-white text-gray-900 selection:bg-black/10" x-data @click.window="if($event.target.closest('button')) haptic(); if(!document.getElementById('threadPopover').contains($event.target)&&!$event.target.closest('[data-thread-menu]')) hideThreadPopover(); if(!document.getElementById('sunePopover').contains($event.target)&&!$event.target.closest('[data-sune-menu]')) hideSunePopover(); if(!document.getElementById('userMenu').contains($event.target)&&!document.getElementById('userMenuBtn').contains($event.target)) document.getElementById('userMenu').classList.add('hidden')">
|
||||||
<div class="flex flex-col h-dvh max-h-dvh overflow-hidden">
|
<div class="flex flex-col h-dvh max-h-dvh overflow-hidden">
|
||||||
|
|||||||
2
dist/sw.js
vendored
2
dist/sw.js
vendored
@@ -1 +1 @@
|
|||||||
if(!self.define){let e,s={};const i=(i,n)=>(i=new URL(i+".js",n).href,s[i]||new Promise(s=>{if("document"in self){const e=document.createElement("script");e.src=i,e.onload=s,document.head.appendChild(e)}else e=i,importScripts(i),s()}).then(()=>{let e=s[i];if(!e)throw new Error(`Module ${i} didn’t register its module`);return e}));self.define=(n,r)=>{const t=e||("document"in self?document.currentScript.src:"")||location.href;if(s[t])return;let o={};const d=e=>i(e,t),l={module:{uri:t},exports:o,require:d};s[t]=Promise.all(n.map(e=>l[e]||d(e))).then(e=>(r(...e),o))}}define(["./workbox-9c191d2f"],function(e){"use strict";self.skipWaiting(),e.clientsClaim(),e.precacheAndRoute([{url:"registerSW.js",revision:"1872c500de691dce40960bb85481de07"},{url:"index.html",revision:"3fc25ddf2a16d27823604d8910349ce7"},{url:"assets/index-DpO4ZMez.js",revision:null},{url:"assets/index-CLEI5Rwr.css",revision:null},{url:"manifest.webmanifest",revision:"7a6c5c6ab9cb5d3605d21df44c6b17a2"}],{}),e.cleanupOutdatedCaches(),e.registerRoute(new e.NavigationRoute(e.createHandlerBoundToURL("index.html")))});
|
if(!self.define){let e,s={};const i=(i,n)=>(i=new URL(i+".js",n).href,s[i]||new Promise(s=>{if("document"in self){const e=document.createElement("script");e.src=i,e.onload=s,document.head.appendChild(e)}else e=i,importScripts(i),s()}).then(()=>{let e=s[i];if(!e)throw new Error(`Module ${i} didn’t register its module`);return e}));self.define=(n,r)=>{const t=e||("document"in self?document.currentScript.src:"")||location.href;if(s[t])return;let o={};const l=e=>i(e,t),c={module:{uri:t},exports:o,require:l};s[t]=Promise.all(n.map(e=>c[e]||l(e))).then(e=>(r(...e),o))}}define(["./workbox-9c191d2f"],function(e){"use strict";self.skipWaiting(),e.clientsClaim(),e.precacheAndRoute([{url:"registerSW.js",revision:"1872c500de691dce40960bb85481de07"},{url:"index.html",revision:"c59f6739a7fe91142d3b8530653b2d5c"},{url:"assets/index-Dkjswwpy.js",revision:null},{url:"assets/index-DaGRC7Kr.css",revision:null},{url:"manifest.webmanifest",revision:"7a6c5c6ab9cb5d3605d21df44c6b17a2"}],{}),e.cleanupOutdatedCaches(),e.registerRoute(new e.NavigationRoute(e.createHandlerBoundToURL("index.html")))});
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
import { USER } from './user.js';
|
import { USER } from './user.js';
|
||||||
|
import { btou } from './utils.js';
|
||||||
|
|
||||||
export const ghApi = async (path, method = 'GET', body = null) => {
|
export const ghApi = async (path, method = 'GET', body = null) => {
|
||||||
const t = USER.githubToken;
|
const t = USER.githubToken;
|
||||||
@@ -22,3 +23,25 @@ export const parseGhUrl = u => {
|
|||||||
repo = repoPart.split('@')[0], path = p.slice(2).join('/').replace(/\/$/, '');
|
repo = repoPart.split('@')[0], path = p.slice(2).join('/').replace(/\/$/, '');
|
||||||
return { owner, repo, branch, path, apiPath: `${owner}/${repo}/contents${path ? '/' + path : ''}` };
|
return { owner, repo, branch, path, apiPath: `${owner}/${repo}/contents${path ? '/' + path : ''}` };
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Fetch a file's text content, transparently handling GitHub's 1MB Contents API
|
||||||
|
// limit. Files >1MB come back from the Contents API with encoding "none" and an
|
||||||
|
// empty `content` field, so we fall back to the Git Blobs API (supports up to 100MB).
|
||||||
|
export const ghGetFileContent = async (info, fileName) => {
|
||||||
|
const meta = await ghApi(`${info.apiPath}/${fileName}?ref=${info.branch}`);
|
||||||
|
if (!meta) { console.warn('[Sune] GH file not found:', fileName); return null; }
|
||||||
|
console.log('[Sune] GH file meta:', { name: fileName, size: meta.size, encoding: meta.encoding, hasContent: !!(meta.content && meta.content.trim()), sha: meta.sha });
|
||||||
|
if (meta.content && meta.encoding === 'base64') {
|
||||||
|
try { return btou(meta.content); } catch (e) { console.error('[Sune] decode (contents) failed:', e); }
|
||||||
|
}
|
||||||
|
// Large file path: Contents API omitted the body, retrieve the raw blob by sha.
|
||||||
|
if (meta.sha) {
|
||||||
|
try {
|
||||||
|
const blob = await ghApi(`${info.owner}/${info.repo}/git/blobs/${meta.sha}`);
|
||||||
|
console.log('[Sune] GH blob:', { size: blob?.size, encoding: blob?.encoding, hasContent: !!(blob?.content && blob.content.trim()) });
|
||||||
|
if (blob && blob.content && blob.encoding === 'base64') return btou(blob.content);
|
||||||
|
} catch (e) { console.error('[Sune] blob fetch failed:', e); }
|
||||||
|
}
|
||||||
|
console.warn('[Sune] Could not retrieve content for', fileName);
|
||||||
|
return null;
|
||||||
|
};
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ import {STICKY_SUNES} from './sticky-sunes.js';
|
|||||||
import {generateTitleWithAI} from './title-generator.js';
|
import {generateTitleWithAI} from './title-generator.js';
|
||||||
import { el } from './dom.js';
|
import { el } from './dom.js';
|
||||||
import { clamp, num, int, gid, esc, positionPopover, sid, fmtSize, asDataURL, imgToWebp, b64, utob, btou, dl, ts, partsToText } from './utils.js';
|
import { clamp, num, int, gid, esc, positionPopover, sid, fmtSize, asDataURL, imgToWebp, b64, utob, btou, dl, ts, partsToText } from './utils.js';
|
||||||
import { ghApi, parseGhUrl } from './github.js';
|
import { ghApi, parseGhUrl, ghGetFileContent } from './github.js';
|
||||||
import { USER } from './user.js';
|
import { USER } from './user.js';
|
||||||
import { md, enhanceCodeBlocks, renderMarkdown } from './markdown.js';
|
import { md, enhanceCodeBlocks, renderMarkdown } from './markdown.js';
|
||||||
import { kbUpdate, kbBind } from './keyboard.js';
|
import { kbUpdate, kbBind } from './keyboard.js';
|
||||||
@@ -58,7 +58,7 @@ let menuThreadId=null;const hideThreadPopover=()=>{el.threadPopover.classList.ad
|
|||||||
function showThreadPopover(btn,id){menuThreadId=id;el.threadPopover.classList.remove('hidden');positionPopover(btn,el.threadPopover);icons()}
|
function showThreadPopover(btn,id){menuThreadId=id;el.threadPopover.classList.remove('hidden');positionPopover(btn,el.threadPopover);icons()}
|
||||||
let menuSuneId=null;const hideSunePopover=()=>{el.sunePopover.classList.add('hidden');menuSuneId=null}
|
let menuSuneId=null;const hideSunePopover=()=>{el.sunePopover.classList.add('hidden');menuSuneId=null}
|
||||||
function showSunePopover(btn,id){menuSuneId=id;el.sunePopover.classList.remove('hidden');positionPopover(btn,el.sunePopover);icons()}
|
function showSunePopover(btn,id){menuSuneId=id;el.sunePopover.classList.remove('hidden');positionPopover(btn,el.sunePopover);icons()}
|
||||||
$(el.threadList).on('click',async e=>{const openBtn=e.target.closest('[data-open-thread]'),menuBtn=e.target.closest('[data-thread-menu]');if(openBtn){const id=openBtn.getAttribute('data-open-thread'),type=openBtn.getAttribute('data-type');if(type==='file'){const u=el.threadRepoInput.value.trim();if(u.startsWith('gh://')){const info=parseGhUrl(u);window.open(`https://github.com/${info.owner}/${info.repo}/blob/${info.branch}/${id}`,'_blank')}return}if(type==='folder'){const u=el.threadRepoInput.value.trim();el.threadRepoInput.value=u+(u.endsWith('/')?'':'/')+id;el.threadRepoInput.dispatchEvent(new Event('change'));return}if(id!==state.currentThreadId&&state.busy){state.controller?.disconnect?.();setBtnSend();state.busy=false;state.controller=null}const th=THREAD.get(id);if(!th)return;if(id===state.currentThreadId){el.sidebarRight.classList.add('translate-x-full');el.sidebarOverlayRight.classList.add('hidden');hideThreadPopover();return}state.currentThreadId=id;clearChat();const u=el.threadRepoInput.value.trim(),prefix=u.startsWith('gh://')?'rem_t_':'t_';let msgs=await localforage.getItem(prefix+id);if(!msgs&&u.startsWith('gh://')){try{const info=parseGhUrl(u),fileName=serializeThreadName(th),res=await ghApi(`${info.apiPath}/${fileName}?ref=${info.branch}`);if(res&&res.content){msgs=JSON.parse(btou(res.content));await localforage.setItem(prefix+id,msgs);th.status='synced';await THREAD.save()}}catch(e){console.error('Remote fetch failed',e)}}state.messages=Array.isArray(msgs)?[...msgs]:[];for(const m of state.messages){const b=msgRow(m);b.dataset.mid=m.id||'';renderMarkdown(b,partsToText(m))}await renderSuneHTML();syncWhileBusy();queueMicrotask(()=>el.chat.scrollTo({top:el.chat.scrollHeight,behavior:'smooth'}));el.sidebarRight.classList.add('translate-x-full');el.sidebarOverlayRight.classList.add('hidden');hideThreadPopover();return}if(menuBtn){e.stopPropagation();showThreadPopover(menuBtn,menuBtn.getAttribute('[data-thread-menu]')?menuBtn.getAttribute('[data-thread-menu]'):menuBtn.getAttribute('data-thread-menu'))}})
|
$(el.threadList).on('click',async e=>{const openBtn=e.target.closest('[data-open-thread]'),menuBtn=e.target.closest('[data-thread-menu]');if(openBtn){const id=openBtn.getAttribute('data-open-thread'),type=openBtn.getAttribute('data-type');if(type==='file'){const u=el.threadRepoInput.value.trim();if(u.startsWith('gh://')){const info=parseGhUrl(u);window.open(`https://github.com/${info.owner}/${info.repo}/blob/${info.branch}/${id}`,'_blank')}return}if(type==='folder'){const u=el.threadRepoInput.value.trim();el.threadRepoInput.value=u+(u.endsWith('/')?'':'/')+id;el.threadRepoInput.dispatchEvent(new Event('change'));return}if(id!==state.currentThreadId&&state.busy){state.controller?.disconnect?.();setBtnSend();state.busy=false;state.controller=null}const th=THREAD.get(id);if(!th)return;if(id===state.currentThreadId){el.sidebarRight.classList.add('translate-x-full');el.sidebarOverlayRight.classList.add('hidden');hideThreadPopover();return}state.currentThreadId=id;clearChat();const u=el.threadRepoInput.value.trim(),prefix=u.startsWith('gh://')?'rem_t_':'t_';let msgs=await localforage.getItem(prefix+id);if((!msgs||!Array.isArray(msgs)||!msgs.length)&&u.startsWith('gh://')){try{const info=parseGhUrl(u),fileName=serializeThreadName(th),text=await ghGetFileContent(info,fileName);if(text){try{msgs=JSON.parse(text);await localforage.setItem(prefix+id,msgs);th.status='synced';await THREAD.save()}catch(pe){console.error('[Sune] Thread JSON parse failed for',fileName,'len',text.length,pe)}}else{console.warn('[Sune] Remote thread returned no content:',fileName)}}catch(e){console.error('[Sune] Remote fetch failed',e)}}state.messages=Array.isArray(msgs)?[...msgs]:[];for(const m of state.messages){const b=msgRow(m);b.dataset.mid=m.id||'';renderMarkdown(b,partsToText(m))}await renderSuneHTML();syncWhileBusy();queueMicrotask(()=>el.chat.scrollTo({top:el.chat.scrollHeight,behavior:'smooth'}));el.sidebarRight.classList.add('translate-x-full');el.sidebarOverlayRight.classList.add('hidden');hideThreadPopover();return}if(menuBtn){e.stopPropagation();showThreadPopover(menuBtn,menuBtn.getAttribute('[data-thread-menu]')?menuBtn.getAttribute('[data-thread-menu]'):menuBtn.getAttribute('data-thread-menu'))}})
|
||||||
$(el.threadList).on('scroll',()=>{
|
$(el.threadList).on('scroll',()=>{
|
||||||
if(isAddingThreads||el.threadList.scrollTop+el.threadList.clientHeight<el.threadList.scrollHeight-200)return;
|
if(isAddingThreads||el.threadList.scrollTop+el.threadList.clientHeight<el.threadList.scrollHeight-200)return;
|
||||||
const c=el.threadList.children.length;
|
const c=el.threadList.children.length;
|
||||||
@@ -178,4 +178,4 @@ const getActiveJar=()=>!el.htmlEditor.classList.contains('hidden')?jars.html:jar
|
|||||||
$(el.copyHTML).on('click',async()=>{try{const jar=getActiveJar();await navigator.clipboard.writeText(jar?jar.toString():'')}catch{}})
|
$(el.copyHTML).on('click',async()=>{try{const jar=getActiveJar();await navigator.clipboard.writeText(jar?jar.toString():'')}catch{}})
|
||||||
$(el.pasteHTML).on('click',async()=>{try{const t=await navigator.clipboard.readText();const jar=getActiveJar();if(jar)jar.updateCode(t)}catch{}})
|
$(el.pasteHTML).on('click',async()=>{try{const t=await navigator.clipboard.readText();const jar=getActiveJar();if(jar)jar.updateCode(t)}catch{}})
|
||||||
|
|
||||||
Object.assign(window,{icons,haptic,clamp,num,int,gid,esc,positionPopover,sid,fmtSize,asDataURL,b64,makeSune,getModelShort,resolveSuneSrc,processSuneIncludes,renderSuneHTML,reflectActiveSune,suneRow,enhanceCodeBlocks,getSuneLabel,_createMessageRow,msgRow,partsToText,addSuneBubbleStreaming,clearChat,payloadWithSampling,setBtnStop,setBtnSend,localDemoReply,titleFrom,serializeThreadName,deserializeThreadName,ensureThreadOnFirstUser,generateTitleWithAI,threadRow,renderThreads,hideThreadPopover,showThreadPopover,hideSunePopover,showSunePopover,updateAttachBadge,toAttach,ensureJars,openSettings,closeSettings,showTab,dl,ts,kbUpdate,kbBind,activeMeta,init,showHtmlTab,showAccountTab,openAccountSettings,closeAccountSettings,getBubbleById,syncActiveThread,syncWhileBusy,onForeground,getActiveJar,imgToWebp,cacheStore,ghApi,parseGhUrl,pullThreads});
|
Object.assign(window,{icons,haptic,clamp,num,int,gid,esc,positionPopover,sid,fmtSize,asDataURL,b64,makeSune,getModelShort,resolveSuneSrc,processSuneIncludes,renderSuneHTML,reflectActiveSune,suneRow,enhanceCodeBlocks,getSuneLabel,_createMessageRow,msgRow,partsToText,addSuneBubbleStreaming,clearChat,payloadWithSampling,setBtnStop,setBtnSend,localDemoReply,titleFrom,serializeThreadName,deserializeThreadName,ensureThreadOnFirstUser,generateTitleWithAI,threadRow,renderThreads,hideThreadPopover,showThreadPopover,hideSunePopover,showSunePopover,updateAttachBadge,toAttach,ensureJars,openSettings,closeSettings,showTab,dl,ts,kbUpdate,kbBind,activeMeta,init,showHtmlTab,showAccountTab,openAccountSettings,closeAccountSettings,getBubbleById,syncActiveThread,syncWhileBusy,onForeground,getActiveJar,imgToWebp,cacheStore,ghApi,parseGhUrl,ghGetFileContent,pullThreads});
|
||||||
|
|||||||
Reference in New Issue
Block a user