mirror of
https://github.com/J3vb/OwnCord.git
synced 2026-09-03 03:50:00 +03:00
* chore(security): stop tracking the private security-finding reports
docs/security-findings/ holds detailed reports for defects that are not yet
fixed. The directory was untracked but not ignored, so any 'git add .' would
have published seven unfixed vulnerability traces to a public repository.
Findings are coordinated through private GitHub Security Advisories
(docs/security.md); only opaque identifiers and safe status belong in tracked
plans.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
* fix(client): repair the two red P0 unit contracts (G-01, G-02)
G-02: noise-suppression-restart stubbed MediaStream with
vi.fn().mockImplementation(arrow), which is not constructible. Vitest 4 threw
'is not a constructor' at the new MediaStream([inputTrack]) call in
noise-suppression.ts before reaching any assertion. Replaced with a real
class; the OC-0277 assertions are unchanged.
G-01: message-list's OC-0217 guard was inverted, not merely stale. It spied on
AbortSignal.prototype.addEventListener and asserted zero abort registrations,
but the leak it names registered row listeners via
element.addEventListener(..., { signal }) — a path that never calls that
prototype method. Measured: the leak produces 0 registrations (test passes),
while the OC-0286 fix rotates a per-window AbortSignal.any and produces 5
across 5 distinct signals (test fails). The guard passed on the bug and failed
on the fix.
It now captures the signal each window's row listeners register against and
asserts the invariant its name always claimed: one signal per rendered window,
a fresh signal per jump, and every superseded window already aborted with
exactly one live. Verified both directions — green on the fix, and
'expected 1 to be 5' with beginRowRender() reverted to rowSignal = ac.signal.
Client suite: 5257 passed, 0 failed (was 5255 passed, 2 failed).
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
* fix(client): make the Playwright suite terminate
The runner finished every test and then never exited, printing no summary — so
the failure read as 'tests never finish' when it was 'process never exits'.
getActiveResourcesInfo() at hang time showed a live ProcessWrap plus several
PipeWrap: the Vite dev server was still running. Playwright's webServer
teardown does not kill it here.
Measured, full suite each time:
npm run dev hangs, tests pass
node node_modules/vite/bin/vite.js hangs, tests pass
reuseExistingServer: false hangs, tests pass
gracefulShutdown SIGTERM/3s hangs, tests pass
npx vite exits, 290 of 293 FAIL
no webServer (pre-started) exits, 293 pass in 33s
npx only appears to fix it: npx exits once Vite is up, Playwright reads that as
the server dying and tears the group down mid-run, so later tests get
ERR_CONNECTION_REFUSED.
globalTeardown now kills the process listening on the dev port, releasing the
runner's handle. The webServer command spawns Vite's entry point directly so
the listening process is Playwright's own child — via 'npm run dev' the npm
process would still hold the handle open. It also reaps servers orphaned by an
interrupted run, which reuseExistingServer would otherwise silently adopt.
An earlier revision used netstat, which is not on PATH in every shell here; the
swallowed ENOENT made the fix look applied while the hang persisted. It now
uses PowerShell on Windows and lsof elsewhere, and warns on failure rather than
failing silently.
npm run test:e2e: exit 0, 293 passed, 37s, reproducible, no orphan listener.
playwright.config.prod.ts carried the same npm-wrapper shape.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
* chore(client): align .nvmrc with the Node version CI uses
Three versions were in play, not two: .nvmrc said 20, CI pins 24, and the
machine the audit was measured on runs 26. A baseline measured against .nvmrc
is not the baseline CI produces, which defeats the point of B0.
Scoped to .nvmrc only. The full single-source-of-truth work — package engines,
contributor docs, release — stays in B1 (RL-17 / C-01).
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
* docs(plans): add the beta audit set and the B0 baseline
The 2026-08-23 audit set has been sitting untracked: repository-health and
repository-layout audits, beta product requirements, requirement traceability,
the issue register, and the B0-B10 roadmap. They are the plan of record for
beta and belong in the repository.
Adds b0-baseline-2026-08-25.md, which supersedes the roadmap's 'current
evidence snapshot'. Every row is marked measured or carried, so nothing is
inherited silently. It also records three audit claims that did not survive
verification:
- G-01 was an inverted guard, not a stale assertion — it passed on the bug
and failed on the fix.
- The Playwright hang matched none of the three hypotheses; the runner could
not kill its own dev server.
- The golangci-lint toolchain failure is refuted: 19 linters run, 0 issues,
verified with -v to rule out the known zero-linters false-green.
Adds b0-dev-branch-protection.sh, which records the applied dev branch
protection and the reasoning behind each setting.
Security detail stays private: the register carries only opaque SEC-* families
and safe closure criteria, per the roadmap's public/private handling policy.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
* chore(graphify): refresh the knowledge graph
Own commit, per CLAUDE.md — the graph payload does not belong in the diff of
the changes that triggered it.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
* docs(plans): add the active-plan index and fix a stale status header (G-04)
Planning documents had no recorded state, so a reader could not tell current
guidance from shipped history. docs/plans/README.md now indexes every plan as
active, partially implemented, design-only, or shipped, and names the source of
truth for each concern so a defect count is never read out of a plan.
Status is recorded in the index rather than by moving or rewriting the
historical plans, so links from audits and commit messages keep resolving.
One real stale claim found and fixed: audit-2026-08-19-remediation.md still
read 'in progress 2026-08-19' while its own phase table showed phases 1-6 done
2026-08-20 (merged 03fcb7d5, PR #1396) with only phase 7 pending. The header
had drifted because the table was updated in place and the header was not.
No plan was found claiming '0 open findings'.
Also records the Step 8 staleness pass in the B0 baseline: all 38 open OC
records still resolve to a live file:line at this commit, so none is superseded
by later work. Adjudicating them individually is bughunt-fix work, not B0.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
* Update graph output files and manifest with new metadata
- Updated graph.html and graph.json with new binary data.
- Modified manifest.json to reflect changes in file modification times and AST hashes for several documents.
- Added new entry for README.md in the manifest with its corresponding metadata.
* docs(plans): close the Docker and coverage leftovers in the B0 baseline
Docker smoke: measured and passing. Image builds at 50.1 MB and boots on :8443
with TLS; docker-smoke.sh exits 0.
Server coverage: re-measured at 74.6% aggregate, confirming the figure carried
from the audit rather than continuing to inherit it.
Two findings from doing it:
ENV-03 — docker-smoke.sh cannot be run from Git Bash on Windows. MSYS path
conversion rewrites the container-internal /chatserver into
'C:/Program Files/Git/chatserver', so docker exec fails 127 and the script
reports 'container never reported healthy within 30s' — indistinguishable from
a real boot regression. MSYS_NO_PATHCONV=1 makes the same script pass. CI is
Linux and unaffected, but Windows is an official contributor platform (RL-20).
The CI Docker job is gated on main, so it is skipped for any PR targeting dev
— a dev-targeted change cannot get Docker evidence from CI at all.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
* chore(graphify): refresh the knowledge graph
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
---------
Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com>
5972 lines
194 KiB
JSON
Generated
5972 lines
194 KiB
JSON
Generated
{
|
|
".claude/workflows/bughunt-fix.harness.mjs": {
|
|
"mtime": 1786711816.4399161,
|
|
"ast_hash": "c64549b30e84a9aff83dc6090707bb1f",
|
|
"semantic_hash": ""
|
|
},
|
|
".claude/workflows/bughunt-fix.js": {
|
|
"mtime": 1786822952.2592442,
|
|
"ast_hash": "8e593d4815266192bf493552539c6011",
|
|
"semantic_hash": ""
|
|
},
|
|
".claude/workflows/bughunt.harness.mjs": {
|
|
"mtime": 1787315994.513591,
|
|
"ast_hash": "07fb3d91c6de63af3063566b0a4216d3",
|
|
"semantic_hash": ""
|
|
},
|
|
".claude/workflows/bughunt.js": {
|
|
"mtime": 1787315994.5145912,
|
|
"ast_hash": "a82f87e4c174088473f6607cee4f613f",
|
|
"semantic_hash": ""
|
|
},
|
|
".githooks/pre-commit": {
|
|
"mtime": 1784528512.6379542,
|
|
"ast_hash": "26c21e013f2a5c9bb1b85cf3499b2001",
|
|
"semantic_hash": ""
|
|
},
|
|
".githooks/pre-push": {
|
|
"mtime": 1784528512.6379542,
|
|
"ast_hash": "43773e67f4416cabbf6c23bc29219b75",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/.oxlintrc.json": {
|
|
"mtime": 1784360728.5111158,
|
|
"ast_hash": "bcb927167e37211fe0e5defb614f7440",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/eslint-rules.js": {
|
|
"mtime": 1786272933.6725202,
|
|
"ast_hash": "43cde0e9afbab20ace7a657a5b38b556",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/eslint.config.js": {
|
|
"mtime": 1786272933.6725202,
|
|
"ast_hash": "ca76729930773843410ee2e80de9105d",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/knip.json": {
|
|
"mtime": 1784819463.1775167,
|
|
"ast_hash": "ea1d89c41661c266c2b5cafc823c1770",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/package.json": {
|
|
"mtime": 1787374278.2391946,
|
|
"ast_hash": "b80410283642a2bed163f7cde634f19c",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/playwright.config.admin.ts": {
|
|
"mtime": 1786170197.4131606,
|
|
"ast_hash": "3e701e60cadcaab94165e1693faee1f7",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/playwright.config.native.ts": {
|
|
"mtime": 1786170197.4131606,
|
|
"ast_hash": "36891bf2825fe96be0325c2e7bb81273",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/playwright.config.prod.ts": {
|
|
"mtime": 1787679075.9573913,
|
|
"ast_hash": "f05b50cd3b34b2ba5e73c392855e5295",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/playwright.config.ts": {
|
|
"mtime": 1787680447.7455137,
|
|
"ast_hash": "2a719ee4664789fa46b6f3485b642f1f",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/public/rnnoise-worklet.js": {
|
|
"mtime": 1784360728.5131173,
|
|
"ast_hash": "234a404b24ab16538efc9a7092b809cc",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/public/vad-worklet.js": {
|
|
"mtime": 1787315994.5401652,
|
|
"ast_hash": "e4024904b181af776b641bed8014d376",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/scripts/strip-appimage-bundled-libs.sh": {
|
|
"mtime": 1785609966.1952133,
|
|
"ast_hash": "2f4d2e23dfe9296f98cfe4e3511c347e",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src-tauri/Cargo.toml": {
|
|
"mtime": 1787374278.2401989,
|
|
"ast_hash": "373cd6ea1f69084adc7604170c24f6dd",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src-tauri/build.rs": {
|
|
"mtime": 1784360728.5161173,
|
|
"ast_hash": "667702979da61fdc96948886b7cd7a33",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src-tauri/src/commands.rs": {
|
|
"mtime": 1787315994.54117,
|
|
"ast_hash": "238231a3da54c8187ceb74c136626f89",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src-tauri/src/constants.rs": {
|
|
"mtime": 1786064189.0699687,
|
|
"ast_hash": "f5df0354409ff9bcbe84c8a6e4d1ff40",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src-tauri/src/credentials.rs": {
|
|
"mtime": 1787315994.54117,
|
|
"ast_hash": "96e976fea27956628c694299eb7e7c5b",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src-tauri/src/dpapi.rs": {
|
|
"mtime": 1785862020.0133624,
|
|
"ast_hash": "175cf91acaae84f3bb877a7e4c26aab5",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src-tauri/src/fallback_crypto.rs": {
|
|
"mtime": 1786170197.4151614,
|
|
"ast_hash": "6e8af22761dbdf8964ae3f1376bbb4b5",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src-tauri/src/http_proxy.rs": {
|
|
"mtime": 1786822952.264749,
|
|
"ast_hash": "32c8dac90812c991e9209130b3b22fa8",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src-tauri/src/lib.rs": {
|
|
"mtime": 1786170290.87699,
|
|
"ast_hash": "f900e177e979f047a35fa2585fb89225",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src-tauri/src/linux_media.rs": {
|
|
"mtime": 1785862020.014362,
|
|
"ast_hash": "8864c7cfbaaa24ea6181db254d02acbb",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src-tauri/src/livekit_proxy.rs": {
|
|
"mtime": 1786272933.6755219,
|
|
"ast_hash": "5ce25b10742bc5f2340495f91ddc75ad",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src-tauri/src/main.rs": {
|
|
"mtime": 1784528512.6409554,
|
|
"ast_hash": "a12b346613ca10b1ffb5232b9af70ed7",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src-tauri/src/ptt.rs": {
|
|
"mtime": 1786170290.87699,
|
|
"ast_hash": "7fd7e7dfac5af610399ed88e2da6c8b2",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src-tauri/src/secret_store.rs": {
|
|
"mtime": 1787315994.54117,
|
|
"ast_hash": "f0fe232c67003f686fc8e1571afcb798",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src-tauri/src/tofu.rs": {
|
|
"mtime": 1787315994.54117,
|
|
"ast_hash": "e3ba7943ec0f218cc7b83e9172aa1e36",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src-tauri/src/tray.rs": {
|
|
"mtime": 1785862020.0163658,
|
|
"ast_hash": "ef5946f63c5be96707a55e5f3bcd5316",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src-tauri/src/update_commands.rs": {
|
|
"mtime": 1787315994.5421755,
|
|
"ast_hash": "9025bd86c1ffe405ee4c969c992dd881",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src-tauri/src/ws_proxy.rs": {
|
|
"mtime": 1786272933.6765206,
|
|
"ast_hash": "148350c54f6c5fddbbd2a6fe67d85fcd",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/AdminActions.ts": {
|
|
"mtime": 1786170197.4171605,
|
|
"ast_hash": "b0d88837e2269e51ee53902f619cd0b6",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/CertMismatchModal.ts": {
|
|
"mtime": 1786170197.4171605,
|
|
"ast_hash": "90ffef1309efcfda7a65a517deaaa007",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/ChannelSidebar.ts": {
|
|
"mtime": 1787374179.457596,
|
|
"ast_hash": "6ff7288f4cbfb184a3c0dddd85d06836",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/ConnectedOverlay.ts": {
|
|
"mtime": 1784367691.8960052,
|
|
"ast_hash": "97f5c4a4dccecbd910490ae89953b870",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/CreateChannelModal.ts": {
|
|
"mtime": 1786170197.41816,
|
|
"ast_hash": "76121bbbfee1a2874684552b319fe8c9",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/DeleteChannelModal.ts": {
|
|
"mtime": 1786694919.0544693,
|
|
"ast_hash": "652ca9ed0b322d224d3b47978d9cacf3",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/DmProfileSidebar.ts": {
|
|
"mtime": 1787374179.457596,
|
|
"ast_hash": "848b6ba47182ec0cce5bc5d869016505",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/DmSidebar.ts": {
|
|
"mtime": 1786694919.0544693,
|
|
"ast_hash": "9d0d74d1c40c5c9070722f738eb2b1d6",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/EditChannelModal.ts": {
|
|
"mtime": 1786170197.41816,
|
|
"ast_hash": "578939150eb08c4c312dd60f16f06d93",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/EmojiAutocomplete.ts": {
|
|
"mtime": 1786170197.4191613,
|
|
"ast_hash": "2e03e6a79fca0bccd5ff24ae7a7d4c5e",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/EmojiPicker.ts": {
|
|
"mtime": 1787374179.458595,
|
|
"ast_hash": "55b19899c652ecfaad7c716ad13d9515",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/GifPicker.ts": {
|
|
"mtime": 1786170197.4191613,
|
|
"ast_hash": "7c5c8abcb8bd85771e17d945b5eae232",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/IncomingCallBanner.ts": {
|
|
"mtime": 1785609966.2027164,
|
|
"ast_hash": "b6f615c22bef516d18388814247b539b",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/InviteManager.ts": {
|
|
"mtime": 1786170197.4191613,
|
|
"ast_hash": "0f71d27163609d7243055a70e4d42b3f",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/MemberList.ts": {
|
|
"mtime": 1787374179.458595,
|
|
"ast_hash": "2b54267f141538399da65c0afed39bb0",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/MentionAutocomplete.ts": {
|
|
"mtime": 1786272933.6785197,
|
|
"ast_hash": "7a7945bd0416fa96bb282034d4c8e9a6",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/MessageInput.ts": {
|
|
"mtime": 1787374179.458595,
|
|
"ast_hash": "e8a1595aa1964fd771ccd330e242d3b8",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/MessageList.ts": {
|
|
"mtime": 1787677584.0872686,
|
|
"ast_hash": "7e6c97785402409dfbb86f2ab93b8898",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/NsfwGate.ts": {
|
|
"mtime": 1785609966.2047222,
|
|
"ast_hash": "6d00f5d0afb92962f9265d50f4cf9f57",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/PinnedMessages.ts": {
|
|
"mtime": 1786170197.421161,
|
|
"ast_hash": "ec62566765bea3526443729002dfcba5",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/QuickSwitchOverlay.ts": {
|
|
"mtime": 1786170197.421161,
|
|
"ast_hash": "defa4106db5621c065b29c38f54ede97",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/QuickSwitcher.ts": {
|
|
"mtime": 1787374179.4595952,
|
|
"ast_hash": "a8276755977dcad149d428a8a1899cbf",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/SearchOverlay.ts": {
|
|
"mtime": 1787374177.6793833,
|
|
"ast_hash": "0dbfa293739bebe7f1f8b6602a5bcb63",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/ServerBanner.ts": {
|
|
"mtime": 1784528512.6429543,
|
|
"ast_hash": "f27d096454d8f0c47006feb97c73341b",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/SettingsOverlay.ts": {
|
|
"mtime": 1787374177.6793833,
|
|
"ast_hash": "430dc81c64a562e28cbe56b8a2aaa9a4",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/StatusPicker.ts": {
|
|
"mtime": 1785609966.2057207,
|
|
"ast_hash": "2c387e0cfddbc6853c20e5c379a2dc33",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/Toast.ts": {
|
|
"mtime": 1786170197.4221609,
|
|
"ast_hash": "00dadf88f854afb6f2062ff2348ed537",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/TypingIndicator.ts": {
|
|
"mtime": 1787315994.5431755,
|
|
"ast_hash": "4c3fb9a3f55ad462b070f6785480f7d4",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/UpdateNotifier.ts": {
|
|
"mtime": 1786822952.265754,
|
|
"ast_hash": "1720ce916cc5eb761c047aed98f22be3",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/UserBar.ts": {
|
|
"mtime": 1787374179.4595952,
|
|
"ast_hash": "1138eb266cc4953879cdb6e577b80ae0",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/UserProfilePopup.ts": {
|
|
"mtime": 1787162777.8120239,
|
|
"ast_hash": "9ab5471e8d4fa5c26a0ac269e897b132",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/VideoGrid.ts": {
|
|
"mtime": 1787315994.5441754,
|
|
"ast_hash": "1661a0911e6b917092bf391fbe76cd7d",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/VoiceWidget.ts": {
|
|
"mtime": 1786822952.265754,
|
|
"ast_hash": "b102be7264e42c06fe3f229f09223036",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/channel-sidebar/context-menu.ts": {
|
|
"mtime": 1787374179.4605956,
|
|
"ast_hash": "469608dd05ec880db73d5a89b3835879",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/channel-sidebar/drag-reorder.ts": {
|
|
"mtime": 1787374179.4605956,
|
|
"ast_hash": "a19c6355e2a29f21e1636072d4abac67",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/channel-sidebar/volume-menu.ts": {
|
|
"mtime": 1787374179.4605956,
|
|
"ast_hash": "df0101a24c786d8871c514fdacb03b3b",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/inline-autocomplete.ts": {
|
|
"mtime": 1786170197.4231608,
|
|
"ast_hash": "a76fd6ce4ddfeb8589752d371c334300",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/message-list/attachments.ts": {
|
|
"mtime": 1787374177.6793833,
|
|
"ast_hash": "965432c92af1fa5cbd9996c051d84ed8",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/message-list/content-parser.ts": {
|
|
"mtime": 1787315994.5441754,
|
|
"ast_hash": "614c7621612b579c2f9bf56ecfd9c687",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/message-list/custom-emoji.ts": {
|
|
"mtime": 1785609966.2087207,
|
|
"ast_hash": "a42b01b8ed54cb905364279587207430",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/message-list/embeds.ts": {
|
|
"mtime": 1786694919.0554686,
|
|
"ast_hash": "8b0e9c50c72a59a5dc36fc94cd570e2b",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/message-list/fenwick.ts": {
|
|
"mtime": 1784367692.0480506,
|
|
"ast_hash": "a41c3b7cf4f7454d8902fc666aa90974",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/message-list/formatting.ts": {
|
|
"mtime": 1787163193.9112887,
|
|
"ast_hash": "226db75ee0e2a7cbbd0a302640a21d5f",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/message-list/markdown.ts": {
|
|
"mtime": 1787315994.5441754,
|
|
"ast_hash": "39213cd52af20b2e0fa95b6d9b93466e",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/message-list/media.ts": {
|
|
"mtime": 1787315994.5451746,
|
|
"ast_hash": "39c532c49df08052ad6f9d744444cc33",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/message-list/reaction-tooltip.ts": {
|
|
"mtime": 1787374177.6803832,
|
|
"ast_hash": "57376771dd5cb35664bafaf69d9fc2e2",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/message-list/reactions.ts": {
|
|
"mtime": 1787315994.5451746,
|
|
"ast_hash": "cc3914083b0ffb8d2c7b52299f298879",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/message-list/renderers.ts": {
|
|
"mtime": 1786716968.8668408,
|
|
"ast_hash": "52ca5b0ded44683a30b85330924eeed5",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/message-list/syntax-highlight.ts": {
|
|
"mtime": 1787315994.5451746,
|
|
"ast_hash": "4a9b59fc8069dc29be3f5f8a37a94993",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/purge-prompt.ts": {
|
|
"mtime": 1785609966.210721,
|
|
"ast_hash": "38a65108d370dddb03ee783cc04caa84",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/settings/AccessibilityTab.ts": {
|
|
"mtime": 1787315994.5451746,
|
|
"ast_hash": "0ee13fb0f95fa0a28ad0be18f7819738",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/settings/AccountTab.ts": {
|
|
"mtime": 1787315994.5461748,
|
|
"ast_hash": "786d1c556c4de820815f89ba5a0f471e",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/settings/AdvancedTab.ts": {
|
|
"mtime": 1786694919.0569718,
|
|
"ast_hash": "1dbfadc0541effd2f18ac0a35279c8f0",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/settings/AppearanceTab.ts": {
|
|
"mtime": 1785609966.2117207,
|
|
"ast_hash": "11060dd97a31b03c1955cb9712a3a129",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/settings/KeybindsTab.ts": {
|
|
"mtime": 1785609966.212721,
|
|
"ast_hash": "6fc31c1f9252455342b75fefe5e40f86",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/settings/LogsTab.ts": {
|
|
"mtime": 1787374177.6803832,
|
|
"ast_hash": "13b49e637d697ac83ed363ecd3184f91",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/settings/NotificationsTab.ts": {
|
|
"mtime": 1785609966.2132287,
|
|
"ast_hash": "f96044c35229966bc83456f9675af3e7",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/settings/TextImagesTab.ts": {
|
|
"mtime": 1784367692.2240717,
|
|
"ast_hash": "d98b3a0a36e06f7a14d47c30339a8abb",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/settings/VoiceAudioTab.ts": {
|
|
"mtime": 1787374177.6803832,
|
|
"ast_hash": "a4737da7f28e7c18fce0bf51652962cd",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/components/settings/helpers.ts": {
|
|
"mtime": 1786822952.2667537,
|
|
"ast_hash": "13f1dfb28895618fcfa9842fb12991cd",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/a11y.ts": {
|
|
"mtime": 1787315994.5461748,
|
|
"ast_hash": "df476b06691dc9d21eb4f5f5e8e078b6",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/admin-panel.ts": {
|
|
"mtime": 1787315994.5461748,
|
|
"ast_hash": "804474787d7dbbe7f43599031c670129",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/api.ts": {
|
|
"mtime": 1787315994.5471745,
|
|
"ast_hash": "3ec70b12ff67f553a26bcffc6b94e146",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/appearance.ts": {
|
|
"mtime": 1786714695.3396616,
|
|
"ast_hash": "a12a32842b07df8f11e9160d602d430a",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/audioElements.ts": {
|
|
"mtime": 1786724121.5584323,
|
|
"ast_hash": "fadace1e8b31131e448cc2c9330e968f",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/audioPipeline.ts": {
|
|
"mtime": 1787315994.5471745,
|
|
"ast_hash": "9b9b15e176dc4d2e3054d6a29ed0f2fe",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/autoIdle.ts": {
|
|
"mtime": 1787315994.5477962,
|
|
"ast_hash": "7c1525be9425b47853d85676d1d7e0e9",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/avatar.ts": {
|
|
"mtime": 1785609966.2152343,
|
|
"ast_hash": "3eae8ce955fd7fd3ba56a4ab9be2685a",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/call-ring.ts": {
|
|
"mtime": 1785609966.216234,
|
|
"ast_hash": "28fadc148706a21716fbc95cada23694",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/cert-reconnect.ts": {
|
|
"mtime": 1786170197.4256673,
|
|
"ast_hash": "e22dad7061b038b9399d141e49b7e6ea",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/channel-mutes.ts": {
|
|
"mtime": 1787374179.4605956,
|
|
"ast_hash": "ad174ef374ea660855f85933a5789738",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/channel-navigation.ts": {
|
|
"mtime": 1786694919.0579758,
|
|
"ast_hash": "8eec8338bf7c5a1886fdf56dbc6824de",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/connectionStats.ts": {
|
|
"mtime": 1786694919.0579758,
|
|
"ast_hash": "009df865711cbb4f7026f7b7b330e5d2",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/constants.ts": {
|
|
"mtime": 1786285344.1520336,
|
|
"ast_hash": "2c21e7ed2aa4d06ad7c82d28c62613d8",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/context-menu.ts": {
|
|
"mtime": 1786694919.0579758,
|
|
"ast_hash": "a9cc3a7ea50256fbc71d340423ca3159",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/credentials.ts": {
|
|
"mtime": 1787244399.200478,
|
|
"ast_hash": "e0c7705dbeacf23cdb6530ce2f94a09c",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/deep-link.ts": {
|
|
"mtime": 1785609966.2172346,
|
|
"ast_hash": "8f69e5cc8b4da45817f1583276146a72",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/deviceManager.ts": {
|
|
"mtime": 1786694919.0579758,
|
|
"ast_hash": "c0a3c789816deacdb2ca95036612b10c",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/dispatcher.ts": {
|
|
"mtime": 1787374179.4615953,
|
|
"ast_hash": "bdf71a4474a889d7415b8a52b75f76f5",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/disposable.ts": {
|
|
"mtime": 1784367692.405736,
|
|
"ast_hash": "a6431a6d51b6ca3fc9c4a73a2b97ab16",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/dom.ts": {
|
|
"mtime": 1784367692.4097362,
|
|
"ast_hash": "7d9d49e0a38bdb8f1d9c0d9da9cef3f9",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/e2eeCrypto.ts": {
|
|
"mtime": 1787315994.5483117,
|
|
"ast_hash": "9bdbda3e6799bca36bcee47e3cced831",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/gifProvider.ts": {
|
|
"mtime": 1784556771.9723556,
|
|
"ast_hash": "516e0afd7f61f72b96529c9f671289b4",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/httpProxy.ts": {
|
|
"mtime": 1786272933.6825192,
|
|
"ast_hash": "78ebfaa760c8710a966d3a5035f1d854",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/icons.ts": {
|
|
"mtime": 1786170197.4276721,
|
|
"ast_hash": "67240a988e95043ae00bc2ee6ec9d5b2",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/identity.ts": {
|
|
"mtime": 1787244306.986045,
|
|
"ast_hash": "abc26297b2cae4147dac17137418cd89",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/livekitDiagnostics.ts": {
|
|
"mtime": 1785323035.0017476,
|
|
"ast_hash": "7dd9b31f0f6665c4cb0cd4bf4b1fc7e6",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/livekitE2EE.ts": {
|
|
"mtime": 1787374179.4615953,
|
|
"ast_hash": "143aac795e545ec2160033f8f8c7615e",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/livekitSession.ts": {
|
|
"mtime": 1787374179.4625947,
|
|
"ast_hash": "f7d681dd8052c3cb7d27d6d1457b811d",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/logPersistence.ts": {
|
|
"mtime": 1787374177.6823823,
|
|
"ast_hash": "d3a399e96f6e490a6cfb6788a2fb3000",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/logger.ts": {
|
|
"mtime": 1785609966.219234,
|
|
"ast_hash": "66f630989b1808cbcdff94b55d731b11",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/logout.ts": {
|
|
"mtime": 1784544118.549647,
|
|
"ast_hash": "10f55a77c07a1be9956a1f1ad388b5ac",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/media-visibility.ts": {
|
|
"mtime": 1786694919.0589752,
|
|
"ast_hash": "1e082501a58169218fa55a786d8aa94f",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/mentions.ts": {
|
|
"mtime": 1787315994.5493462,
|
|
"ast_hash": "447600fc781f0786f260edb0582aa70d",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/message-navigation.ts": {
|
|
"mtime": 1785609966.2202337,
|
|
"ast_hash": "79c0eb6ab0137d29753123c58c693e7d",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/modalFactory.ts": {
|
|
"mtime": 1786170197.4286716,
|
|
"ast_hash": "1c44fcf022ac230a5386ae6c4b067778",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/navigation-guard.ts": {
|
|
"mtime": 1785609966.221234,
|
|
"ast_hash": "bc15e546b2a4185c657ebcbf86df9bf0",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/noise-suppression.ts": {
|
|
"mtime": 1787374179.4625947,
|
|
"ast_hash": "fd2aca8ce813f4bede0b151870d9db6b",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/notifications.ts": {
|
|
"mtime": 1787315994.5493462,
|
|
"ast_hash": "7a0235837f1c5708138f330d256004b9",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/nsfw-gate.ts": {
|
|
"mtime": 1786170290.8819911,
|
|
"ast_hash": "7fbb1c65ccf4b747a7e292772d412ba4",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/os-motion.ts": {
|
|
"mtime": 1784367692.5227587,
|
|
"ast_hash": "ae15e9568fb3bcb0f8f6f930aa7f44cf",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/permissions.ts": {
|
|
"mtime": 1787244083.8812144,
|
|
"ast_hash": "d9d04b16fe4151876474b13c5c47a3dc",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/preferences.ts": {
|
|
"mtime": 1785609966.2227376,
|
|
"ast_hash": "9f2d9cf88955362654093c4194cb36fa",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/profiles.ts": {
|
|
"mtime": 1786694919.0589752,
|
|
"ast_hash": "74391a81d0fb060784c9b32e8985afd4",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/protocolTypes.ts": {
|
|
"mtime": 1787245329.7614684,
|
|
"ast_hash": "86e1650ab453a1a8c5d128fc3d230559",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/ptt.ts": {
|
|
"mtime": 1787315994.549853,
|
|
"ast_hash": "231fac63eee8ebc341f357d54f497980",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/rate-limiter.ts": {
|
|
"mtime": 1787315994.5503705,
|
|
"ast_hash": "56e4bab09e23f70040a687ca1e19da21",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/read-state.ts": {
|
|
"mtime": 1786694919.0589752,
|
|
"ast_hash": "574425e66599ba8f9972e0fbbc6873d3",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/roomEventHandlers.ts": {
|
|
"mtime": 1786711816.4439182,
|
|
"ast_hash": "265dc5ffbcaf3ae185783efa005b6b31",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/router.ts": {
|
|
"mtime": 1784367692.5697083,
|
|
"ast_hash": "eb6d95a55a9e7690ee3f43fbb2020728",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/safe-render.ts": {
|
|
"mtime": 1784367692.5727053,
|
|
"ast_hash": "cbe16ccbf25aad70d5255c9d71a62c0d",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/screenShare.ts": {
|
|
"mtime": 1786822952.2682588,
|
|
"ast_hash": "6f601ee2dbb8afabb3348c4737741a51",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/store.ts": {
|
|
"mtime": 1784367692.5917056,
|
|
"ast_hash": "c26c7b64952761b11f7997ad8aaab350",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/streamPreview.ts": {
|
|
"mtime": 1786694919.0599754,
|
|
"ast_hash": "552e2a72ecd49b74e7179a615127fede",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/themes.ts": {
|
|
"mtime": 1784367692.6067054,
|
|
"ast_hash": "25fededcf7fc308f833dec6de74b36e9",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/toast.ts": {
|
|
"mtime": 1784367692.608705,
|
|
"ast_hash": "8e5005ed9595d9fbf8efae33f002c6fc",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/types.ts": {
|
|
"mtime": 1787374177.6833856,
|
|
"ast_hash": "1c0c0faec9be1e450d7606fa6a2bb9c8",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/updater.ts": {
|
|
"mtime": 1784544118.549647,
|
|
"ast_hash": "bc3293f410986944fc918667a33efe1a",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/userStatus.ts": {
|
|
"mtime": 1785609966.2237444,
|
|
"ast_hash": "c9771e3c4d466c09fee38afc9f089f35",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/window-state.ts": {
|
|
"mtime": 1784885890.259186,
|
|
"ast_hash": "10a39fd22adf759e175e0bfb5a900a14",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/ws.ts": {
|
|
"mtime": 1787315994.5508893,
|
|
"ast_hash": "ecf4c9269cd82947403e42a1a58dc0d9",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/main.ts": {
|
|
"mtime": 1787315994.5514064,
|
|
"ast_hash": "56c829893b11e5f43fcad177cbc26c62",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/pages/ConnectPage.ts": {
|
|
"mtime": 1786694919.0609753,
|
|
"ast_hash": "c7b7fb669d03694c09663f521d292076",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/pages/MainPage.ts": {
|
|
"mtime": 1787374179.4635956,
|
|
"ast_hash": "cd00f24f56188050520093d55f4af547",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/pages/connect-page/LoginForm.ts": {
|
|
"mtime": 1787162533.895344,
|
|
"ast_hash": "863b36deeb39df94f6ebffc911aa4549",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/pages/connect-page/ServerPanel.ts": {
|
|
"mtime": 1787315994.5519207,
|
|
"ast_hash": "48e306b2b47b717c5564fc5ef5dfaf3c",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/pages/main-page/ChannelController.ts": {
|
|
"mtime": 1787374177.6833856,
|
|
"ast_hash": "84c93f18a11058c0d716e192bc7e3a51",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/pages/main-page/ChatArea.ts": {
|
|
"mtime": 1786272933.687523,
|
|
"ast_hash": "ba57a7988df49499e2418e309161ebcf",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/pages/main-page/ChatHeader.ts": {
|
|
"mtime": 1785609966.2267427,
|
|
"ast_hash": "1d0e72ba99960abd7fb76619be46af93",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/pages/main-page/GlobalKeybinds.ts": {
|
|
"mtime": 1785609966.2267427,
|
|
"ast_hash": "5a1f5f5a9e0f4e9a19a0eef7746aa8f1",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/pages/main-page/MemberPickerModal.ts": {
|
|
"mtime": 1785609966.2267427,
|
|
"ast_hash": "07a1d4dde03abf2faac14e3302ae5f53",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/pages/main-page/MessageController.ts": {
|
|
"mtime": 1787374177.6843843,
|
|
"ast_hash": "ab5d543aa0bc0a9c49284144952a7fd1",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/pages/main-page/MessageJump.ts": {
|
|
"mtime": 1786170197.4326718,
|
|
"ast_hash": "5bb1491992735557717b32a0a2906258",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/pages/main-page/OverlayManagers.ts": {
|
|
"mtime": 1786724198.8538706,
|
|
"ast_hash": "14172ac750247fed710618c0472e1dc6",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/pages/main-page/ReactionController.ts": {
|
|
"mtime": 1786694919.061977,
|
|
"ast_hash": "9bfcd96aa1e60e485b503c907ce19e2a",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/pages/main-page/SidebarArea.ts": {
|
|
"mtime": 1787374179.4635956,
|
|
"ast_hash": "ddade8f8f03eb07904428fce08ee57da",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/pages/main-page/SidebarDmHelpers.ts": {
|
|
"mtime": 1785609966.228742,
|
|
"ast_hash": "3e37ddb1e85ec3d857e74d21b5351378",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/pages/main-page/SidebarDmSection.ts": {
|
|
"mtime": 1787315994.5529487,
|
|
"ast_hash": "3b1927811a4dba25d3c5a00818f63d3d",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/pages/main-page/SidebarMemberSection.ts": {
|
|
"mtime": 1785609966.228742,
|
|
"ast_hash": "1e67cf4f71f8374da8df6c5b4a1c1aef",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/pages/main-page/VideoModeController.ts": {
|
|
"mtime": 1787315994.5529487,
|
|
"ast_hash": "d3ff1acbebe6dd292e3f5c5915388be4",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/pages/main-page/VoiceCallbacks.ts": {
|
|
"mtime": 1787374179.4635956,
|
|
"ast_hash": "de958485bbde2afa86dc2f4479b1092a",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/stores/auth.store.ts": {
|
|
"mtime": 1787315994.5529487,
|
|
"ast_hash": "3f54704cf1928772ba4a3b3b0cd4ffaa",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/stores/blocks.store.ts": {
|
|
"mtime": 1787315994.5539527,
|
|
"ast_hash": "66d2298a6b2e92448c50c8e67c31c5b7",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/stores/channels.store.ts": {
|
|
"mtime": 1787315994.5539527,
|
|
"ast_hash": "22fe1c7250977d01cc3f403c6915dc80",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/stores/dm.store.ts": {
|
|
"mtime": 1787374179.4635956,
|
|
"ast_hash": "1f7f04881a387e0e12880d87c004614d",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/stores/emoji.store.ts": {
|
|
"mtime": 1787374177.6843843,
|
|
"ast_hash": "e3e44a07860ef85724d9b9e73496c552",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/stores/members.store.ts": {
|
|
"mtime": 1786716968.869842,
|
|
"ast_hash": "c8528d4e1114a42446a84a7e3b0e47c2",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/stores/messages.store.ts": {
|
|
"mtime": 1787374177.6843843,
|
|
"ast_hash": "99742febf1a1ba07e8e0abd9663657eb",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/stores/ui.store.ts": {
|
|
"mtime": 1784367692.8065376,
|
|
"ast_hash": "9b62f2860abc44fcd1e143b6a6072e5f",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/stores/voice.store.ts": {
|
|
"mtime": 1787315994.554975,
|
|
"ast_hash": "db08847c705feff2100d382607245f89",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/types/jitsi-rnnoise.d.ts": {
|
|
"mtime": 1784367692.816536,
|
|
"ast_hash": "3b369917cd3103f2b4d49f572033defd",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/vite-env.d.ts": {
|
|
"mtime": 1784367692.8175385,
|
|
"ast_hash": "0352474ba2918efe13895edbc3780d94",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/stryker.config.mjs": {
|
|
"mtime": 1784360728.545893,
|
|
"ast_hash": "0b8389545c186b0f947ad369e968e23a",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/browser/smoke.test.ts": {
|
|
"mtime": 1787315994.5554876,
|
|
"ast_hash": "bcd3eff34406eb6db3ee7a1ad5787a0d",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/a11y-smoke.spec.ts": {
|
|
"mtime": 1786170197.4356718,
|
|
"ast_hash": "e8f8679b6ca8792bfd878996d0b267fe",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/admin/admin-panel.spec.ts": {
|
|
"mtime": 1786170197.4366744,
|
|
"ast_hash": "f14fa5499d8c44f25df27d714e97ae04",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/admin/start-server.sh": {
|
|
"mtime": 1786170197.4366744,
|
|
"ast_hash": "0342919e6e5d8b8a63a0037a92f64b9d",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/banners-toasts.spec.ts": {
|
|
"mtime": 1784367692.8255384,
|
|
"ast_hash": "3e0cedcbcdea31893e9559ad8dd75533",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/cert-tofu.spec.ts": {
|
|
"mtime": 1786272933.6895232,
|
|
"ast_hash": "7b40025287182f4ac7b9b07c5cc3055f",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/channel-sidebar.spec.ts": {
|
|
"mtime": 1784367692.8295364,
|
|
"ast_hash": "7f243ba03f70f9027cc59d5d2c508a59",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/channel-switch-messages.spec.ts": {
|
|
"mtime": 1784367692.8335407,
|
|
"ast_hash": "3dbba8d83161f872ed205f247987eebd",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/chat-header.spec.ts": {
|
|
"mtime": 1784367692.8385391,
|
|
"ast_hash": "29a3c7b84ecaaf40af92ddae94f2e759",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/connect-page.spec.ts": {
|
|
"mtime": 1784367692.8455403,
|
|
"ast_hash": "5215d93992db45dbb78056c4aa1d0eec",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/connect-settings.spec.ts": {
|
|
"mtime": 1784367692.8476117,
|
|
"ast_hash": "77398d605c323f8bd1b21f0a5fc320a7",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/connected-overlay.spec.ts": {
|
|
"mtime": 1784367692.8499672,
|
|
"ast_hash": "20ea07fbdbdafbf02161fe43f01c0b0f",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/dm-system.spec.ts": {
|
|
"mtime": 1784367692.8579662,
|
|
"ast_hash": "3018d95e8937a07b9af474f6125542d6",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/emoji-insertion.spec.ts": {
|
|
"mtime": 1784367692.8609674,
|
|
"ast_hash": "c9f61bca66afc13250028958995127c0",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/emoji-voicemod.parity.spec.ts": {
|
|
"mtime": 1785609966.232744,
|
|
"ast_hash": "b344ef0d198d6b357c161e79b693edc9",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/gating-badges.parity.spec.ts": {
|
|
"mtime": 1786170290.8869905,
|
|
"ast_hash": "217c1e48a01eb287904254d65de96b7c",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/health-status.spec.ts": {
|
|
"mtime": 1784367692.8639653,
|
|
"ast_hash": "b7a6cb5b4313eb16d487a41c3aca9e7a",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/helpers.ts": {
|
|
"mtime": 1787315994.5560374,
|
|
"ast_hash": "ac277eaca04f29b05824ff533376360a",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/logout-flow.spec.ts": {
|
|
"mtime": 1786272933.6905227,
|
|
"ast_hash": "cff1ec93398d749b8992c09b03a15e5a",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/main-layout.spec.ts": {
|
|
"mtime": 1784367692.8849647,
|
|
"ast_hash": "870405068a5678032ba26f644a46a4e8",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/member-list.spec.ts": {
|
|
"mtime": 1784367692.888966,
|
|
"ast_hash": "374ff95c552d000767b32cd50a75729d",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/message-actions.spec.ts": {
|
|
"mtime": 1784367692.893967,
|
|
"ast_hash": "765286d2a7d8758a67dfd3362172ea7e",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/message-edit-delete.spec.ts": {
|
|
"mtime": 1784367692.8969662,
|
|
"ast_hash": "664dbead6a639eda5afd07d5c462bbab",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/message-input.spec.ts": {
|
|
"mtime": 1784367692.9019656,
|
|
"ast_hash": "8cb1d0398ab8bb6569a96cf0161154cb",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/message-list.spec.ts": {
|
|
"mtime": 1784367692.9069662,
|
|
"ast_hash": "221fff91b95a26b17e4571bf780edd5f",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/message-send-flow.spec.ts": {
|
|
"mtime": 1784367692.9109674,
|
|
"ast_hash": "b9ccef76a4b71b0bffeaf12d6156f1a5",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/native-fixture-persistent.ts": {
|
|
"mtime": 1784367692.9169679,
|
|
"ast_hash": "9de0731c9702c71dd99a1e4ac7a40398",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/native-fixture.ts": {
|
|
"mtime": 1784367692.9229665,
|
|
"ast_hash": "6e007d873f59235023e1237492af9e7a",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/native/app-layout.spec.ts": {
|
|
"mtime": 1786257848.3350153,
|
|
"ast_hash": "613346adb0bba5d848ae3d5a73ed3b58",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/native/auth-flow.spec.ts": {
|
|
"mtime": 1784367692.9339695,
|
|
"ast_hash": "a251e7e1495882f8b9e077e5db2d037e",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/native/channel-navigation.spec.ts": {
|
|
"mtime": 1784367692.94397,
|
|
"ast_hash": "3eef948eddc410479b5f0ab4358a1d45",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/native/chat-operations.spec.ts": {
|
|
"mtime": 1784367692.9494827,
|
|
"ast_hash": "11f9f014ba1b55f43dfe977ed7bcc6e9",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/native/dm-system.spec.ts": {
|
|
"mtime": 1784367692.9534838,
|
|
"ast_hash": "7b17e07c2e995585e658b49411161aef",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/native/helpers.ts": {
|
|
"mtime": 1784367692.9584832,
|
|
"ast_hash": "4bc7cbbe2dca4f77c1f510bc73b74932",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/native/overlays.spec.ts": {
|
|
"mtime": 1784367692.966483,
|
|
"ast_hash": "0a657d04b10182a51497b1d41abb0401",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/native/reconnection.spec.ts": {
|
|
"mtime": 1784367692.9704833,
|
|
"ast_hash": "910a00efe0dea52a2f95eb1069cee565",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/native/settings-overlay.spec.ts": {
|
|
"mtime": 1784367692.9744833,
|
|
"ast_hash": "f4c5662cd1cb80f8996b4b34a4a77192",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/native/smoke.spec.ts": {
|
|
"mtime": 1784367692.9814825,
|
|
"ast_hash": "507b49719fe1b9ca621808e36d6e79e9",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/native/theme-persistence.spec.ts": {
|
|
"mtime": 1784367692.9874852,
|
|
"ast_hash": "c9eda16b9f68f3813b0b44f807c4fedb",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/native/voice-controls.spec.ts": {
|
|
"mtime": 1784367692.991483,
|
|
"ast_hash": "5273f66ed262b63ce17526543456519c",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/overlays.spec.ts": {
|
|
"mtime": 1784367692.999483,
|
|
"ast_hash": "3e43c18b02b26895e377004ca7996b70",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/reconnection.spec.ts": {
|
|
"mtime": 1784367693.0044827,
|
|
"ast_hash": "05c23a728519a9c519d8d65a145bddbc",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/register-flow.spec.ts": {
|
|
"mtime": 1784367693.0134833,
|
|
"ast_hash": "c59b24662563190de6d59ada39695144",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/reply-flow.spec.ts": {
|
|
"mtime": 1784367693.017484,
|
|
"ast_hash": "148cb0b5efc96a9f9a2f4bb1e873fb4f",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/settings-overlay.spec.ts": {
|
|
"mtime": 1784367693.0274844,
|
|
"ast_hash": "93635cf2e14411a2165ad8dd0afbf7b1",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/sidebar-header.spec.ts": {
|
|
"mtime": 1786170197.4376717,
|
|
"ast_hash": "dec606baad4eef4b6b3ce7c72b398588",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/social.parity.spec.ts": {
|
|
"mtime": 1785609966.233881,
|
|
"ast_hash": "8ea0352f0d89a5f94fffef186138437d",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/theme-persistence.spec.ts": {
|
|
"mtime": 1784367693.0364945,
|
|
"ast_hash": "0a98ad0cdfb89ec1c9c48008860ad985",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/toast.spec.ts": {
|
|
"mtime": 1785609966.2348802,
|
|
"ast_hash": "fef3b3de3c27b185215ff3b9ba048ad9",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/totp-flow.spec.ts": {
|
|
"mtime": 1786170197.4376717,
|
|
"ast_hash": "780a7e1f5b33e7be2c51386f68cfa107",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/typing-indicator-ws.spec.ts": {
|
|
"mtime": 1784367693.0484974,
|
|
"ast_hash": "c5ae519996cdff868d602551f9995831",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/typing-indicator.spec.ts": {
|
|
"mtime": 1784367693.0514982,
|
|
"ast_hash": "2f4795dc07479fdceb5b983fc8c9de79",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/updater.spec.ts": {
|
|
"mtime": 1786170197.4376717,
|
|
"ast_hash": "8f8dc76dd27f07f015e2e797e5dd9f56",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/user-bar.spec.ts": {
|
|
"mtime": 1786473472.046267,
|
|
"ast_hash": "9b5228a4f2654641b67ddda5e4b631f1",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/voice-channel.spec.ts": {
|
|
"mtime": 1785609966.2348802,
|
|
"ast_hash": "8ec3a84f19c107e40a214de63de76069",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/voice-e2ee-verify.spec.ts": {
|
|
"mtime": 1787315994.556556,
|
|
"ast_hash": "fd731cb50aed2ffe19b4edb7dbe6d491",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/voice-lifecycle.spec.ts": {
|
|
"mtime": 1786711816.4459178,
|
|
"ast_hash": "6e0d1d17f83b42671668c121a5c8be7d",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/voice-widget.spec.ts": {
|
|
"mtime": 1787315994.556556,
|
|
"ast_hash": "a503df3260494d41e964f7858511dd2e",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/helpers/fixtures.ts": {
|
|
"mtime": 1784367693.0804982,
|
|
"ast_hash": "60b26bf77b7be633efd02f74f07e2a31",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/helpers/mock-ws.ts": {
|
|
"mtime": 1787315994.556556,
|
|
"ast_hash": "6faa79975ad68b4535ca1c06a2ec184d",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/helpers/test-harness.ts": {
|
|
"mtime": 1784367693.087499,
|
|
"ast_hash": "5ea4cc5207c042815749c3358a65b0ad",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/helpers/test-utils.ts": {
|
|
"mtime": 1785609966.2358818,
|
|
"ast_hash": "f5d3b9f65f16698c975f49dc9adb20b2",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/integration/stores.test.ts": {
|
|
"mtime": 1787315994.557073,
|
|
"ast_hash": "2a4cfa83b5d7db02899c2213167834e1",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/setup.ts": {
|
|
"mtime": 1785323035.0027475,
|
|
"ast_hash": "dd22164fc44fbb26882e0d9fcac06b2c",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/a11y.test.ts": {
|
|
"mtime": 1787315994.5581079,
|
|
"ast_hash": "c07d668a5c95a71ddf51d1fdb6130f12",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/accessibility-tab.test.ts": {
|
|
"mtime": 1787315994.5581079,
|
|
"ast_hash": "bd019e4991d110d03d2714fab333631a",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/account-tab-profile.test.ts": {
|
|
"mtime": 1785609966.236881,
|
|
"ast_hash": "5bda2466d8496acb28621670a7decc21",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/admin-actions.test.ts": {
|
|
"mtime": 1786170197.438674,
|
|
"ast_hash": "ac3ec19c08677f89b504a5f85c297e34",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/admin-panel.test.ts": {
|
|
"mtime": 1787315994.558626,
|
|
"ast_hash": "a7a0ca8d50a7a50d71c8925a26dd9712",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/advanced-tab.test.ts": {
|
|
"mtime": 1786694919.0634804,
|
|
"ast_hash": "37864b8f6910bee0ec8c844cc2f4a2c7",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/api.test.ts": {
|
|
"mtime": 1787374278.2401989,
|
|
"ast_hash": "cf8d347e535a30ac8fc7133ffbb927d3",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/appearance-tab.test.ts": {
|
|
"mtime": 1785609966.2378798,
|
|
"ast_hash": "f20c3b52369a7d92dffeb0445cc47e32",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/attachments-auth.test.ts": {
|
|
"mtime": 1786716968.8721774,
|
|
"ast_hash": "3fa14faf5a4e49b83e6b9b32896711d8",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/attachments-cache.test.ts": {
|
|
"mtime": 1787374278.2401989,
|
|
"ast_hash": "d75dfccb417086951cfb051acf5a66df",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/attachments-media.test.ts": {
|
|
"mtime": 1785609966.2388804,
|
|
"ast_hash": "20f241439f510b18083b6c787d34292d",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/attachments-render.test.ts": {
|
|
"mtime": 1785609966.2388804,
|
|
"ast_hash": "684d98016e3b9433eb66a7e2dc0dfe78",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/audio-elements.test.ts": {
|
|
"mtime": 1786723144.0234675,
|
|
"ast_hash": "f92787d849953e88b84e151420bda5fc",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/audio-pipeline-core.test.ts": {
|
|
"mtime": 1787374278.2401989,
|
|
"ast_hash": "a6406cb9341762835d7797a791aff4d7",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/audio-pipeline-gain.test.ts": {
|
|
"mtime": 1787374278.241701,
|
|
"ast_hash": "7673e923ee742d0a8a3df9c54be52106",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/audio-pipeline-vad-fallback.test.ts": {
|
|
"mtime": 1787374278.241701,
|
|
"ast_hash": "bb5ebb03fd79f4bb580ed7c126552192",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/audio-pipeline-vad-worklet.test.ts": {
|
|
"mtime": 1787374278.241701,
|
|
"ast_hash": "3477e4d69372b732ac58b6a2714f5392",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/auth.store.test.ts": {
|
|
"mtime": 1787315994.5596514,
|
|
"ast_hash": "01ab7c6dc2d15a980c643dad0bcd9daf",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/auto-idle.test.ts": {
|
|
"mtime": 1787315994.5596514,
|
|
"ast_hash": "22848477061ead044da8d5588e467aa0",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/autocomplete-filters.property.test.ts": {
|
|
"mtime": 1785609966.2423854,
|
|
"ast_hash": "083ce31ccfd102886b5185d7ecb53f28",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/avatar.test.ts": {
|
|
"mtime": 1785609966.2423854,
|
|
"ast_hash": "1fef18d8576457e829b4cbfbdccce6ca",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/blocks-store.test.ts": {
|
|
"mtime": 1787315994.5601723,
|
|
"ast_hash": "d71243fef5468cf560ef30979dd1d73d",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/call-ring.test.ts": {
|
|
"mtime": 1785609966.2423854,
|
|
"ast_hash": "e328a2d036d1dfbd543258abdbca4ec9",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/capabilities-scope.test.ts": {
|
|
"mtime": 1786272933.6925232,
|
|
"ast_hash": "950e5f5ab4a54b05c3434506060db959",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/cert-first-use-modal.test.ts": {
|
|
"mtime": 1786170197.4396746,
|
|
"ast_hash": "7d53337acc0819c22e0b6c125e431fd8",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/cert-mismatch-modal.test.ts": {
|
|
"mtime": 1786170197.4396746,
|
|
"ast_hash": "f3b6a78df816f96110f6b9208393e4f7",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/cert-reconnect.test.ts": {
|
|
"mtime": 1786170197.4406717,
|
|
"ast_hash": "7ad26c6348b853dbcb06f50b7a60febd",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/channel-controller.test.ts": {
|
|
"mtime": 1787374177.6853833,
|
|
"ast_hash": "10838802e93ca7312ab6598d4259d780",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/channel-mute-ui.test.ts": {
|
|
"mtime": 1787374179.4645958,
|
|
"ast_hash": "7b4e0cbeca87e9f5b51c676758dce6dc",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/channel-mutes.test.ts": {
|
|
"mtime": 1787374179.4645958,
|
|
"ast_hash": "b4c212ef34ef43af7ff1a293c0e4d9b3",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/channel-navigation.test.ts": {
|
|
"mtime": 1786694919.0644817,
|
|
"ast_hash": "a11ce4f94803f1a2d85b9647797911d5",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/channel-sidebar-read-state.test.ts": {
|
|
"mtime": 1785609966.2443905,
|
|
"ast_hash": "c7d517bc74d9a85cd111bd3101d414df",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/channel-sidebar.test.ts": {
|
|
"mtime": 1787374278.2427056,
|
|
"ast_hash": "a9ddf1785de9edd109f661f3e2de8c14",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/channels.store.test.ts": {
|
|
"mtime": 1786272933.6935232,
|
|
"ast_hash": "c4668dd26a6b481118aca1238b3e72af",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/chat-area.test.ts": {
|
|
"mtime": 1786272933.6935232,
|
|
"ast_hash": "afd76dc920874ad986ee89ae1baa8d15",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/chat-header.test.ts": {
|
|
"mtime": 1784367693.377066,
|
|
"ast_hash": "43961c744637621f8375b3738bf26117",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/chat.test.ts": {
|
|
"mtime": 1785609966.2453911,
|
|
"ast_hash": "abcca75f58e77ff01e23bc780fa8fbc6",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/components/QuickSwitchOverlay.test.ts": {
|
|
"mtime": 1786170197.4416718,
|
|
"ast_hash": "af69c29f0c4f6e36a9cca68f7eaac23e",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/connect-page.test.ts": {
|
|
"mtime": 1787315994.5612087,
|
|
"ast_hash": "a9702dd9c62d64b90311074f5048e520",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/connected-overlay.test.ts": {
|
|
"mtime": 1784367693.431794,
|
|
"ast_hash": "0447d4296f67e72de31d445f94c4d545",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/connection-stats.test.ts": {
|
|
"mtime": 1786694919.0644817,
|
|
"ast_hash": "db0d334d94339152cfa92eec9f39275d",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/content-markdown.test.ts": {
|
|
"mtime": 1787315994.5617259,
|
|
"ast_hash": "b7f3c40469c375cc9b7d6bef1bb85f8d",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/context-menu.test.ts": {
|
|
"mtime": 1786694919.0644817,
|
|
"ast_hash": "a10880371a312891468a57426b0156b0",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/create-channel-modal.test.ts": {
|
|
"mtime": 1787374278.2427056,
|
|
"ast_hash": "d9d6a54aa3abc8b27cbf788cf0e4c8a2",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/credentials.test.ts": {
|
|
"mtime": 1787315994.5617259,
|
|
"ast_hash": "69499f166700cc3144e52d74782dbef6",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/custom-emoji.test.ts": {
|
|
"mtime": 1785609966.2463913,
|
|
"ast_hash": "45b3e3d252aeebfec0b5f3ca1431d6b8",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/deep-link-init.test.ts": {
|
|
"mtime": 1785609966.247391,
|
|
"ast_hash": "854182f804abba4c9a54c94c2a12fb87",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/deep-link.test.ts": {
|
|
"mtime": 1785609966.247391,
|
|
"ast_hash": "60ff455e9097989245d2512fc76e0315",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/delete-channel-modal.test.ts": {
|
|
"mtime": 1787374278.2427056,
|
|
"ast_hash": "9a42d59184e52b2b3051a2e44836d654",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/device-manager.test.ts": {
|
|
"mtime": 1786694919.0654817,
|
|
"ast_hash": "1f99c8af9247c3ea84e861c3eb314791",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/dispatcher.test.ts": {
|
|
"mtime": 1787374179.4655955,
|
|
"ast_hash": "9d6ea74135f6b8325f37e66972111e0a",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/disposable.test.ts": {
|
|
"mtime": 1784367693.5120318,
|
|
"ast_hash": "b5db2a58e6d6788063f25a55ba6b017c",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/dm-groups.test.ts": {
|
|
"mtime": 1787315994.5627623,
|
|
"ast_hash": "6c9da58ae0ad1bb40df7f645cb6387ad",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/dm-profile-sidebar.test.ts": {
|
|
"mtime": 1787374179.4655955,
|
|
"ast_hash": "7d99121c4d7cdf4aeae3a12565919fad",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/dm-sidebar.test.ts": {
|
|
"mtime": 1786694919.0654817,
|
|
"ast_hash": "d7295dfdc4b25f6a76449a6bf8976d1c",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/dm-store.test.ts": {
|
|
"mtime": 1787374179.4665954,
|
|
"ast_hash": "ab364214e5af19e6346a7242c3f5db71",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/dom.test.ts": {
|
|
"mtime": 1784367693.5396264,
|
|
"ast_hash": "d3231aed92fcec647808265721a13e71",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/drag-reorder.test.ts": {
|
|
"mtime": 1787374278.2437046,
|
|
"ast_hash": "66be3a5e76b33501a666f24539eafbfa",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/e2eeCrypto.test.ts": {
|
|
"mtime": 1787315994.5632782,
|
|
"ast_hash": "5236fe375816b4b1ca8efda8f28c4179",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/edit-channel-modal.test.ts": {
|
|
"mtime": 1787374278.2437046,
|
|
"ast_hash": "756694c46173e97135106ccdc1fcbf09",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/embeds.test.ts": {
|
|
"mtime": 1786694919.0669851,
|
|
"ast_hash": "a4df9d7102242b4dc1a64aaad5e7801e",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/emoji-autocomplete.test.ts": {
|
|
"mtime": 1787374278.2437046,
|
|
"ast_hash": "0d73bc2ba30d21be1d608a7eb6bf112e",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/emoji-picker.test.ts": {
|
|
"mtime": 1787374179.4665954,
|
|
"ast_hash": "9bdf8ba83c2f651cc7af3470ff3d1088",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/eslint-rules.test.ts": {
|
|
"mtime": 1786272933.696523,
|
|
"ast_hash": "cf3735e87a3aca0ce017d4c5801d99f0",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/gif-picker.test.ts": {
|
|
"mtime": 1786170197.4456725,
|
|
"ast_hash": "c33628d71034e2d378a8d08d4c32fe13",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/gif-provider.test.ts": {
|
|
"mtime": 1784556771.9733548,
|
|
"ast_hash": "862ae63656bbe2bb56551bb1b6d71250",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/global-keybinds.test.ts": {
|
|
"mtime": 1787374278.2447052,
|
|
"ast_hash": "5a2026f87ca029fe0b5135950b4b9dcf",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/helpers/ws-mocks.ts": {
|
|
"mtime": 1785609966.2503934,
|
|
"ast_hash": "6893099254e9a4f47148bc565391540b",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/http-proxy.test.ts": {
|
|
"mtime": 1786272933.696523,
|
|
"ast_hash": "750dc561cad3881675b6153289ee2a80",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/icons.test.ts": {
|
|
"mtime": 1784885890.2628505,
|
|
"ast_hash": "f69d866b2c0a629c60b497866b347102",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/identity-mismatch-modal.test.ts": {
|
|
"mtime": 1786170197.4456725,
|
|
"ast_hash": "cb7083f10bc0b202b76acaa9d844a9d1",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/identity.test.ts": {
|
|
"mtime": 1787315994.5637898,
|
|
"ast_hash": "9bb4e3e63549e6b3881c60349d35435e",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/invite-manager.test.ts": {
|
|
"mtime": 1786170197.4456725,
|
|
"ast_hash": "c97528ee0c1bd6062abda18adb0677e7",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/keybinds-tab.test.ts": {
|
|
"mtime": 1785609966.2513928,
|
|
"ast_hash": "04dd3483e609b99b8cca89c09d9ca51c",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/livekit-diagnostics.test.ts": {
|
|
"mtime": 1785323035.003748,
|
|
"ast_hash": "2e6457e0e8e697b24add583ad3d473ba",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/livekit-e2ee.test.ts": {
|
|
"mtime": 1787374278.2447052,
|
|
"ast_hash": "8a993819fda6fa14b00dd38c67252195",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/livekit-session.test.ts": {
|
|
"mtime": 1787374278.2457047,
|
|
"ast_hash": "321795b0deb2eca3b109fbe950b30be2",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/log-persistence.test.ts": {
|
|
"mtime": 1787374177.6873834,
|
|
"ast_hash": "8deae573d46417afd4fccfa6d2716ec2",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/logger.test.ts": {
|
|
"mtime": 1785609966.2523916,
|
|
"ast_hash": "e3bbcc3bc49ae5c48ade9f580e828033",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/login-form-totp-reentrancy.test.ts": {
|
|
"mtime": 1786170290.8909905,
|
|
"ast_hash": "8c178fe8c1ee2b86a865fb58fd5b9fd6",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/logout.test.ts": {
|
|
"mtime": 1787374278.2457047,
|
|
"ast_hash": "4ff93247ff5cc7cdfda3aacb92783afe",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/logs-tab.test.ts": {
|
|
"mtime": 1787374278.2457047,
|
|
"ast_hash": "60ec66e64e97fdc3051865197ce8961b",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/main-page.test.ts": {
|
|
"mtime": 1787374179.4685955,
|
|
"ast_hash": "63f8f829866544235087be9a0c923bc6",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/markdown-parser.property.test.ts": {
|
|
"mtime": 1785609966.2534695,
|
|
"ast_hash": "442f78ba00f8725c950eabe17f31038c",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/media-cache.test.ts": {
|
|
"mtime": 1784367693.711176,
|
|
"ast_hash": "98c8a6c90214770df2136aa553ec47cf",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/media-visibility.test.ts": {
|
|
"mtime": 1787374278.246704,
|
|
"ast_hash": "5845dd73be45390b27d59158ae7694c1",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/media.test.ts": {
|
|
"mtime": 1787315994.565848,
|
|
"ast_hash": "21c1e94fb383122b1fc6b32f682ad6ca",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/member-list.test.ts": {
|
|
"mtime": 1787374179.4685955,
|
|
"ast_hash": "75d17e4222bd10ee2773f100345e4b9e",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/member-picker-group.test.ts": {
|
|
"mtime": 1785609966.2534695,
|
|
"ast_hash": "c91b0beef2f5f69c5e34e8743dd6ac8c",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/member-picker-modal.test.ts": {
|
|
"mtime": 1784367693.771703,
|
|
"ast_hash": "e4a21a995d480d7e0b2185941c21a221",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/member-profile-fields.test.ts": {
|
|
"mtime": 1785609966.254472,
|
|
"ast_hash": "d3aed88cbca7fcd9b72d300cd59739cd",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/members.store.test.ts": {
|
|
"mtime": 1786716968.8736806,
|
|
"ast_hash": "2c87c97a99b428a31dcb57a1d63379bc",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/mention-autocomplete.test.ts": {
|
|
"mtime": 1787374278.246704,
|
|
"ast_hash": "582576f23edde9f08c7051d2d3c27e6c",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/mention-emoji-parsing.property.test.ts": {
|
|
"mtime": 1785609966.2554686,
|
|
"ast_hash": "2c3ba475392ce56a72f43bd5f61d1c4b",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/mentions-render.test.ts": {
|
|
"mtime": 1787315994.5668879,
|
|
"ast_hash": "e2c29aa0c94933a6c23616153ea36932",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/message-controller.test.ts": {
|
|
"mtime": 1787374278.246704,
|
|
"ast_hash": "5bbd815b62d7999e5e5a8056c5ad556b",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/message-input.test.ts": {
|
|
"mtime": 1787374179.4685955,
|
|
"ast_hash": "20b1c8ea16517b574a9d92c74966bbf3",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/message-jump.test.ts": {
|
|
"mtime": 1786170197.448672,
|
|
"ast_hash": "6f6a494b9153b0cccc21284102f19a17",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/message-list-media-release.test.ts": {
|
|
"mtime": 1785609966.256469,
|
|
"ast_hash": "9be55997431ef6eb1d6da55e4f81f53b",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/message-list-new-divider.test.ts": {
|
|
"mtime": 1787374177.6873834,
|
|
"ast_hash": "09008da2fd391f5070c3574206b4c5a4",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/message-list.test.ts": {
|
|
"mtime": 1787677629.307052,
|
|
"ast_hash": "075f30e7cfd293f2f431dcb433c038fc",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/messages-store-detached.test.ts": {
|
|
"mtime": 1787374177.688383,
|
|
"ast_hash": "ca469335f728250e54d5ca57f7d10f19",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/messages.store.test.ts": {
|
|
"mtime": 1787374177.688383,
|
|
"ast_hash": "1241c61acd2ea978113883a8836888d0",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/modal-factory.test.ts": {
|
|
"mtime": 1786170197.4496717,
|
|
"ast_hash": "b6d8078eb44237d39bff8f6994f0c84e",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/navigation-guard.test.ts": {
|
|
"mtime": 1785609966.2574692,
|
|
"ast_hash": "7c8be83c114dd29d64bca9201c8dbe0b",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/notifications.test.ts": {
|
|
"mtime": 1787315994.5679474,
|
|
"ast_hash": "043942714bf723d690d8f36c6a8e16c2",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/nsfw-gate.test.ts": {
|
|
"mtime": 1786170290.8919902,
|
|
"ast_hash": "0590971e7f2f38a8979d946a793ca5d2",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/os-motion.test.ts": {
|
|
"mtime": 1787374278.246704,
|
|
"ast_hash": "8892462f735c4dcceebc090228fd5113",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/overlay-managers.test.ts": {
|
|
"mtime": 1786723144.147058,
|
|
"ast_hash": "9d98abb0e042fad24dcfb8e27b522c31",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/permissions.test.ts": {
|
|
"mtime": 1787315994.5684674,
|
|
"ast_hash": "c2c826fb5ea6f785f32b4d027c2ca651",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/pinned-messages.test.ts": {
|
|
"mtime": 1786170197.450672,
|
|
"ast_hash": "a4906da956d68d9c2267e26de0338d30",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/preferences.test.ts": {
|
|
"mtime": 1784367693.915714,
|
|
"ast_hash": "8bde4fb4ddfae4378d8c9469f8c33f17",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/profiles.test.ts": {
|
|
"mtime": 1786694919.068989,
|
|
"ast_hash": "aab36704c27b04c1493ea0ff699059d6",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/ptt.test.ts": {
|
|
"mtime": 1787315994.5689828,
|
|
"ast_hash": "52f489ec8dbc65efd2ee11fedacbb005",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/quick-switcher.test.ts": {
|
|
"mtime": 1787374278.247705,
|
|
"ast_hash": "be92e5bcb9adf802a0531842cb10f7e0",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/rate-limiter.test.ts": {
|
|
"mtime": 1787315994.5694892,
|
|
"ast_hash": "8ac48937e372b0866e205326ac13f785",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/reaction-controller.test.ts": {
|
|
"mtime": 1786694919.0699894,
|
|
"ast_hash": "62e886be45438069cfe2647ce0773af6",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/reaction-tooltip.test.ts": {
|
|
"mtime": 1787374278.247705,
|
|
"ast_hash": "49005e2e6ee01de9eb73de0cf3d1edc0",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/read-state.test.ts": {
|
|
"mtime": 1786694919.0699894,
|
|
"ast_hash": "37c72fcfd81fe6bc348012221598f8a9",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/renderers.test.ts": {
|
|
"mtime": 1787315994.5694892,
|
|
"ast_hash": "976c429d5e30d4428261973628f85da5",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/rnnoise-worklet.test.ts": {
|
|
"mtime": 1784367694.0057337,
|
|
"ast_hash": "c55f7555676ef2d8ccfc8efd43a320f0",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/room-event-handlers.test.ts": {
|
|
"mtime": 1786711816.4479184,
|
|
"ast_hash": "ced914ee3cd635672ae2f16562e65a6e",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/router.test.ts": {
|
|
"mtime": 1784367694.0127351,
|
|
"ast_hash": "57cb5ac120284a2a233ef4162ef4a0fd",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/safe-render.test.ts": {
|
|
"mtime": 1784367694.0177348,
|
|
"ast_hash": "21b6a32a95bdbeb33c83f7e114058c34",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/screen-share-button.test.ts": {
|
|
"mtime": 1787374278.247705,
|
|
"ast_hash": "2d79647cf9aa617e236836369358d1ef",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/screen-share-fps.test.ts": {
|
|
"mtime": 1784528512.6549542,
|
|
"ast_hash": "3700121f51514179f76424804390f9d7",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/screen-share-tracks.test.ts": {
|
|
"mtime": 1787374278.247705,
|
|
"ast_hash": "27a65dea6b83fdf36761fe65dd30e361",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/search-overlay.test.ts": {
|
|
"mtime": 1787374177.6893828,
|
|
"ast_hash": "8e95764026fa3a87f9c636c089e3c820",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/server-banner.test.ts": {
|
|
"mtime": 1784528512.6549542,
|
|
"ast_hash": "34d37e54e461a6168decadf3c018f048",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/server-panel.test.ts": {
|
|
"mtime": 1787315994.5694892,
|
|
"ast_hash": "3e2374d564efb34747d6e84d488b97ac",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/settings-helpers.test.ts": {
|
|
"mtime": 1786822952.2732627,
|
|
"ast_hash": "f99dccc5e957ad0957d24f36056355db",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/settings-overlay.test.ts": {
|
|
"mtime": 1787374177.6893828,
|
|
"ast_hash": "0649bce96181415912ae376f22895dcb",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/sidebar-area.test.ts": {
|
|
"mtime": 1787374179.4701009,
|
|
"ast_hash": "dfb53a6fd120720b35791b07a7d7e00b",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/sidebar-dm-helpers.test.ts": {
|
|
"mtime": 1785609966.2624962,
|
|
"ast_hash": "e68dffced1fdeb2e982e7bb62b0c0d13",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/sidebar-dm-section.test.ts": {
|
|
"mtime": 1787315994.570493,
|
|
"ast_hash": "f743265e034acf9ed84795b961ff54b8",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/sidebar-member-section.test.ts": {
|
|
"mtime": 1785609966.2624962,
|
|
"ast_hash": "4d7ab792c11be691e12945983e28b78f",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/status-picker-custom.test.ts": {
|
|
"mtime": 1785609966.2624962,
|
|
"ast_hash": "a3225dbfcf5723ac6559849349c123a8",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/status-picker-userbar.test.ts": {
|
|
"mtime": 1787374179.4711077,
|
|
"ast_hash": "fe1b2c74ff27a7ed44329930e3fa92d7",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/store.test.ts": {
|
|
"mtime": 1784367694.2183418,
|
|
"ast_hash": "0d562b02b2388424a2951aedc49565e8",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/stored-appearance.test.ts": {
|
|
"mtime": 1785609966.2635014,
|
|
"ast_hash": "0b61c72a9616c7da0b2a9ad71567c865",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/stream-preview.test.ts": {
|
|
"mtime": 1787374278.2487044,
|
|
"ast_hash": "e22a96eed345074e5800c8dcc96bbacc",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/test-harness.test.ts": {
|
|
"mtime": 1784367694.2353444,
|
|
"ast_hash": "a08c2177771ff8a7a465dacecf85e038",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/text-images-tab.test.ts": {
|
|
"mtime": 1784367694.2373452,
|
|
"ast_hash": "d992d0671b524247b985b3ccccf164ce",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/themes.test.ts": {
|
|
"mtime": 1784367694.2433457,
|
|
"ast_hash": "b39fde7e9d3c744d3e215ced3374f075",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/toast-coverage.test.ts": {
|
|
"mtime": 1784367694.2463458,
|
|
"ast_hash": "06451d858a6bfe089f8f5d64e83bbe4a",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/toast.test.ts": {
|
|
"mtime": 1786170197.4536722,
|
|
"ast_hash": "cf3e5e8aaadffb7233767392a6617608",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/totp-settings.test.ts": {
|
|
"mtime": 1787374278.2492087,
|
|
"ast_hash": "7cffb1eabdd81f3b456d80d6a0f297cb",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/types.test.ts": {
|
|
"mtime": 1785609966.264501,
|
|
"ast_hash": "66e02e232a8dd0cfa9b68badf7f21804",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/typing-indicator.test.ts": {
|
|
"mtime": 1787315994.571493,
|
|
"ast_hash": "71ce7ede432d7fe4fbb7a02d98525661",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/ui.store.test.ts": {
|
|
"mtime": 1784367694.2833643,
|
|
"ast_hash": "b29ced7f96312221c5c39ddbbb7effc8",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/update-notifier.test.ts": {
|
|
"mtime": 1786822952.2757704,
|
|
"ast_hash": "e49f908da3ae507a1d3ccca84a2c3487",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/updater.test.ts": {
|
|
"mtime": 1785323035.004748,
|
|
"ast_hash": "b586d982830bcc573dfd87737a38e7c2",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/user-bar.test.ts": {
|
|
"mtime": 1786257837.2302225,
|
|
"ast_hash": "6547cd14037eb0a321a8cf98f8996a20",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/user-profile-popup.test.ts": {
|
|
"mtime": 1787315994.571493,
|
|
"ast_hash": "eb56c35cb1f50a866ca792baea058ae1",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/user-status.test.ts": {
|
|
"mtime": 1785609966.264501,
|
|
"ast_hash": "5a8d26b68a31503b7f07d44510af2d59",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/video-grid.test.ts": {
|
|
"mtime": 1786272933.7026975,
|
|
"ast_hash": "8007f38eda8aa4779d8faa3dc8c5ffc7",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/video-mode-controller.test.ts": {
|
|
"mtime": 1786822952.2757704,
|
|
"ast_hash": "95fc9126793ef3e93a2135c68afaa05f",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/voice-audio-tab.test.ts": {
|
|
"mtime": 1787374278.2492087,
|
|
"ast_hash": "49cad77612fc2c5280e92eb18bf5cdfa",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/voice-callbacks.test.ts": {
|
|
"mtime": 1787374179.4711077,
|
|
"ast_hash": "c08e1cfb5b4524a67b25f70f7f78be07",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/voice-disconnect.test.ts": {
|
|
"mtime": 1786170197.454672,
|
|
"ast_hash": "aab6b5ad6d5b81058763d10d93f355c8",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/voice-widget.test.ts": {
|
|
"mtime": 1786822952.2757704,
|
|
"ast_hash": "1c204fd3eb48bdcc41d7cef0169a5106",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/voice.store.test.ts": {
|
|
"mtime": 1787315994.5724928,
|
|
"ast_hash": "ca31a49d78cf16c2dafd35a2e5401469",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/volume-menu.test.ts": {
|
|
"mtime": 1786272933.7037036,
|
|
"ast_hash": "38fb22cf3c701eabed15373a701cbf09",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/window-state-restore.test.ts": {
|
|
"mtime": 1784885890.264444,
|
|
"ast_hash": "95969fd37997cf8d259f2f373f7de804",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/window-state.test.ts": {
|
|
"mtime": 1784885890.2649674,
|
|
"ast_hash": "6ef8d9dd2be015488ff20350a1479722",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/ws-active-channel.test.ts": {
|
|
"mtime": 1787315994.5724928,
|
|
"ast_hash": "bc7be0bd832c9fb6a3ec5da2ebb54cbd",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/ws-cert.test.ts": {
|
|
"mtime": 1787315994.5724928,
|
|
"ast_hash": "f763a370e3c0ead35f6c89242f6429e5",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/ws-lifecycle.test.ts": {
|
|
"mtime": 1787315994.5724928,
|
|
"ast_hash": "6f4c42b0bcdd0b170471364d7d56ab13",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/ws-messaging.test.ts": {
|
|
"mtime": 1787315994.5739963,
|
|
"ast_hash": "96f70129cf27122684848d5acb175e48",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/ws-reconnect.test.ts": {
|
|
"mtime": 1787315994.5739963,
|
|
"ast_hash": "400a73c55049e7ae90eba86aad44cdc8",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tsconfig.build.json": {
|
|
"mtime": 1787374278.2492087,
|
|
"ast_hash": "f0d45551f840e89463edd1ff214362cc",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tsconfig.e2e.json": {
|
|
"mtime": 1787374278.2492087,
|
|
"ast_hash": "c1b94e40be8d26760b5c5c363c7476a7",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tsconfig.json": {
|
|
"mtime": 1787374278.2492087,
|
|
"ast_hash": "f694340722c94171fb54ba288af1c2b1",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/vite.config.ts": {
|
|
"mtime": 1787374278.2502131,
|
|
"ast_hash": "64f60c7a67ae0edbe4912eec950df473",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/vitest.config.browser.ts": {
|
|
"mtime": 1787374278.2502131,
|
|
"ast_hash": "33409fd37520b44145cf31acda05e954",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/vitest.config.ts": {
|
|
"mtime": 1787374278.2502131,
|
|
"ast_hash": "ded0b67c09fb872b817a1c3357e8b569",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/admin.go": {
|
|
"mtime": 1785609966.2675006,
|
|
"ast_hash": "ef9ee32b9513637d6b9450e3abcc7bec",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/admin_handler_test.go": {
|
|
"mtime": 1785609966.2675006,
|
|
"ast_hash": "75e69dc533f145dd6224cd8064fce1df",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/api.go": {
|
|
"mtime": 1787374177.6893828,
|
|
"ast_hash": "009bbc3579145027d17d089138c88159",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/api_edge_cases_test.go": {
|
|
"mtime": 1785609966.2685008,
|
|
"ast_hash": "dee0a7610e0d0774e670856dabae1dff",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/api_test.go": {
|
|
"mtime": 1787374179.4721074,
|
|
"ast_hash": "a28fc1baed06a588f2d4c1574c67dc56",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/channels_archive_voice_test.go": {
|
|
"mtime": 1787315994.5760002,
|
|
"ast_hash": "04d43fa665ded352d1196607389f2600",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/emoji_section_test.go": {
|
|
"mtime": 1785609966.2685008,
|
|
"ast_hash": "534c56afec9f4ee47eeec35711e78cb4",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/export_test.go": {
|
|
"mtime": 1787374177.690382,
|
|
"ast_hash": "86ba85d0dbd1635ee6da614d16cbd83e",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/handlers_backup.go": {
|
|
"mtime": 1787315994.5770001,
|
|
"ast_hash": "545dd2092667af9003ddc4314282c8ca",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/handlers_backup_test.go": {
|
|
"mtime": 1786822952.2782755,
|
|
"ast_hash": "d34c0121829262356bc9489babb3973f",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/handlers_channel_perms.go": {
|
|
"mtime": 1787315994.5770001,
|
|
"ast_hash": "65617a55f0f9dcc3973ed2ab49a8c8f2",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/handlers_channel_perms_test.go": {
|
|
"mtime": 1787315994.5770001,
|
|
"ast_hash": "6a408eaf6d4c902ec586bd480bb9f579",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/handlers_channel_user_perms_test.go": {
|
|
"mtime": 1787315994.578,
|
|
"ast_hash": "99cbf432078e0bff0e00a8aee41aeb71",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/handlers_channels.go": {
|
|
"mtime": 1787315994.578,
|
|
"ast_hash": "fc6c557e73303691ce2dd2f67b0f171a",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/handlers_channels_test.go": {
|
|
"mtime": 1786822952.2797842,
|
|
"ast_hash": "62cc10fad7be79324ddf50830e2047e6",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/handlers_roles.go": {
|
|
"mtime": 1787315994.578,
|
|
"ast_hash": "a622accdb2013da2bd577854e01c37aa",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/handlers_roles_rename_test.go": {
|
|
"mtime": 1786170290.8959906,
|
|
"ast_hash": "df5de44c237f4f7f3f69f6458ee959a2",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/handlers_roles_test.go": {
|
|
"mtime": 1787315994.578,
|
|
"ast_hash": "34bd06d92f24b54958ba14881a3a20a5",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/handlers_settings.go": {
|
|
"mtime": 1787374179.4721074,
|
|
"ast_hash": "cedb225c238035b08ccd20d58332436a",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/handlers_tokens.go": {
|
|
"mtime": 1786724167.098308,
|
|
"ast_hash": "e0deb7334842c7908c53d727985957d7",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/handlers_users.go": {
|
|
"mtime": 1787315994.578,
|
|
"ast_hash": "8984592d83ef86f8d915225ca21ef0f4",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/handlers_users_broadcast_test.go": {
|
|
"mtime": 1786711816.449421,
|
|
"ast_hash": "174a3288c99d689b2077f3cf5dfc1dda",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/harvest_s5_roles_test.go": {
|
|
"mtime": 1786170197.4596722,
|
|
"ast_hash": "cd42ebb2fe31ff6e06a71cd85c9b6193",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/helpers.go": {
|
|
"mtime": 1786170197.4596722,
|
|
"ast_hash": "43ffa22161c9d783eb31eb2b7d3166cb",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/helpers_internal_test.go": {
|
|
"mtime": 1786170197.4606726,
|
|
"ast_hash": "7b3107d27e8cc3f668f5d437413ab8dc",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/logstream.go": {
|
|
"mtime": 1787315994.578,
|
|
"ast_hash": "77563f15aad6ed5d9e2449d1048134c4",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/logstream_alloc_test.go": {
|
|
"mtime": 1785609966.2725008,
|
|
"ast_hash": "2d61fff9a1dab234a217e82986e327b1",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/logstream_apitoken_test.go": {
|
|
"mtime": 1785609966.273631,
|
|
"ast_hash": "84f4fc0a07ae70b98fcbaa618b3a264f",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/logstream_atomic_test.go": {
|
|
"mtime": 1786170290.8969903,
|
|
"ast_hash": "096585338da20bab46fa2b1fcc1e9fb9",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/logstream_test.go": {
|
|
"mtime": 1786822952.2807894,
|
|
"ast_hash": "0ed7407ab14a88db9978ab13a0929d03",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/main_test.go": {
|
|
"mtime": 1785609966.273631,
|
|
"ast_hash": "b3676e01cdded27dbe205b888197410e",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/middleware.go": {
|
|
"mtime": 1787315994.5795033,
|
|
"ast_hash": "51c2461b51f60dad92460543f3ecc7c8",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/middleware_and_spawn_test.go": {
|
|
"mtime": 1786688194.3904183,
|
|
"ast_hash": "c2e2f6e5ebf6c92fa4dd4c3a2ae0caa5",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/middleware_coverage_test.go": {
|
|
"mtime": 1785609966.274632,
|
|
"ast_hash": "c3fd53f91f832c24d971dddec393ad03",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/multihandler_test.go": {
|
|
"mtime": 1786694919.0729887,
|
|
"ast_hash": "9eade197182ef2d10f0f02b30d83dbf8",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/perm_gates_test.go": {
|
|
"mtime": 1785609966.274632,
|
|
"ast_hash": "164cf388d16c07d652fcd1cca4a4a587",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/perm_grid_test.go": {
|
|
"mtime": 1785609966.2756312,
|
|
"ast_hash": "6857de0f90366c0f8130f4e36449098a",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/setup_handler.go": {
|
|
"mtime": 1787374177.690382,
|
|
"ast_hash": "7632b337c2803704d7dd7a719dd6167e",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/setup_handler_test.go": {
|
|
"mtime": 1787315994.5805073,
|
|
"ast_hash": "8a3a075602cde789db72d5dd304fc155",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/setup_origin_test.go": {
|
|
"mtime": 1785435525.78709,
|
|
"ast_hash": "191c69a70ea6698e46e11cced221cc3e",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/setup_wizard.go": {
|
|
"mtime": 1787315994.5805073,
|
|
"ast_hash": "afa61fdb441d4e9a710660fbc203d63d",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/setup_wizard_test.go": {
|
|
"mtime": 1787315994.5805073,
|
|
"ast_hash": "e4372889aab99e400584e5f32fdf3f07",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/types.go": {
|
|
"mtime": 1786688194.3904183,
|
|
"ast_hash": "0d8658ec81d8f52937c97bb3af0c1d6e",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/update_handlers.go": {
|
|
"mtime": 1787315994.5815072,
|
|
"ast_hash": "956da7e7324fcbcfc9931aa790a3be47",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/update_handlers_test.go": {
|
|
"mtime": 1787315994.5815072,
|
|
"ast_hash": "3eaee0dd1c07300d7b045ee2fd425cc3",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/auth_handler.go": {
|
|
"mtime": 1787315994.5815072,
|
|
"ast_hash": "2b44b6768ff4482e270116d87beb1e85",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/auth_handler_delete_broadcast_test.go": {
|
|
"mtime": 1786170290.8969903,
|
|
"ast_hash": "a3ddf6149c63b38d6ecb99976e822b87",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/auth_handler_test.go": {
|
|
"mtime": 1787315994.58251,
|
|
"ast_hash": "930964ae6fd9f79a29990017ad715eb0",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/avatar_handler_test.go": {
|
|
"mtime": 1786822952.282298,
|
|
"ast_hash": "b8fad9ed1604812538989dcdd94d9edf",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/blocks_handler_test.go": {
|
|
"mtime": 1785323035.0092547,
|
|
"ast_hash": "b7f2fed9b462fda6712579ff369771a8",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/bodycap_test.go": {
|
|
"mtime": 1786170197.462673,
|
|
"ast_hash": "84108f913dcea86eee9581d771aa8e68",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/channel_around_test.go": {
|
|
"mtime": 1785609966.2786326,
|
|
"ast_hash": "b752f65db55983cfe00c3ee134704a48",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/channel_authz_test.go": {
|
|
"mtime": 1784819463.1935248,
|
|
"ast_hash": "6ec92948fb8109707e1f9e946516fa0d",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/channel_handler.go": {
|
|
"mtime": 1785609966.2786326,
|
|
"ast_hash": "4d0d473b85bb0c7865a490b713f1777b",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/channel_handler_test.go": {
|
|
"mtime": 1785609966.2796347,
|
|
"ast_hash": "25491499293025562b63e3c5d5ede593",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/channel_reaction_users_test.go": {
|
|
"mtime": 1785609966.2796347,
|
|
"ast_hash": "dad847f487acc91c336734b3c4bcde2f",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/client_update.go": {
|
|
"mtime": 1784824869.8813639,
|
|
"ast_hash": "6e9cd18616590e26e4a1a873c32f1136",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/client_update_test.go": {
|
|
"mtime": 1784824869.8823678,
|
|
"ast_hash": "44f8bb73d7fd5680097915e1d2e1d9dd",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/clientip_test.go": {
|
|
"mtime": 1787374177.6923816,
|
|
"ast_hash": "cb1256dd4a41bee744a7087bdf784588",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/constants.go": {
|
|
"mtime": 1787245150.7535899,
|
|
"ast_hash": "fa0243e4a3dfd89dfc46d55a553254aa",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/constants_test.go": {
|
|
"mtime": 1787315994.58251,
|
|
"ast_hash": "ef713eed078049ec1841813e9c1f0427",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/contract_test.go": {
|
|
"mtime": 1784819463.1945245,
|
|
"ast_hash": "fee7c2d3e75ad7e3faeb3ca970c5a3c5",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/coverage_push_test.go": {
|
|
"mtime": 1785609966.280632,
|
|
"ast_hash": "b7664fc0b01ea71d094c573691d11cef",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/crs_fs.go": {
|
|
"mtime": 1785609966.280632,
|
|
"ast_hash": "76a538f3ebd8dd3f6b2ad3238efaab02",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/crs_fs_test.go": {
|
|
"mtime": 1785609966.280632,
|
|
"ast_hash": "9bbc168ad6a11cf17873b358872f3b5e",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/diagnostics_handler.go": {
|
|
"mtime": 1787374179.4721074,
|
|
"ast_hash": "906c3ca867143b8507b4f1a7acd5babd",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/diagnostics_handler_test.go": {
|
|
"mtime": 1787374179.4731069,
|
|
"ast_hash": "a493c8085eb2f52a5b61ec3eeca42968",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/dm_group_handler_test.go": {
|
|
"mtime": 1786723143.6337821,
|
|
"ast_hash": "7ae2f8acfcde899de0371750de4b7c78",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/dm_handler.go": {
|
|
"mtime": 1787374179.4731069,
|
|
"ast_hash": "7d5afeec637189b5e85bbcf0a5954a8b",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/dm_handler_test.go": {
|
|
"mtime": 1787315994.5835106,
|
|
"ast_hash": "4bfa29709cd953260768e488174f91d2",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/dm_handler_watermark_voice_test.go": {
|
|
"mtime": 1787315994.5835106,
|
|
"ast_hash": "9d4766c67d6744ceb1f15b06529ad8bb",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/emoji_handler.go": {
|
|
"mtime": 1787315994.5845103,
|
|
"ast_hash": "aa209ca3415e0e17a7958aed75e73c53",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/emoji_handler_test.go": {
|
|
"mtime": 1786694919.073493,
|
|
"ast_hash": "291b763f1832b3d476794bbb41a9ef19",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/export_test.go": {
|
|
"mtime": 1786694919.073493,
|
|
"ast_hash": "d834cbba4e5c53862969fd9fcfc779cc",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/gif_handler.go": {
|
|
"mtime": 1786724930.2442086,
|
|
"ast_hash": "6237007502df8a12559b4ec6dd1888be",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/gif_handler_test.go": {
|
|
"mtime": 1784815680.3627682,
|
|
"ast_hash": "bb77f172fccb0c0572934d5bf4138021",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/image_dimensions_fuzz_test.go": {
|
|
"mtime": 1785609966.2826319,
|
|
"ast_hash": "20af8c4657935bcd2b64fb82c0498e68",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/invite_handler.go": {
|
|
"mtime": 1784885890.2675648,
|
|
"ast_hash": "7d565ae56b0a102bc6e2ec09d4fff762",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/invite_handler_test.go": {
|
|
"mtime": 1784819463.1965263,
|
|
"ast_hash": "1cbd9692867bb6322b10e0ad63cddc90",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/livekit_proxy.go": {
|
|
"mtime": 1785609966.2837522,
|
|
"ast_hash": "de671806c31bb4217d175631f81c65ce",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/livekit_proxy_test.go": {
|
|
"mtime": 1785609966.2837522,
|
|
"ast_hash": "2ef1f9fb0be8e79945239b25f0f72dca",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/livekit_proxy_ws_test.go": {
|
|
"mtime": 1785323035.011255,
|
|
"ast_hash": "dc776d27ba607458c25ad84b115acab2",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/livekit_ratelimit_test.go": {
|
|
"mtime": 1786170197.4646747,
|
|
"ast_hash": "ada07a19c516bfed0602ca9f27e65727",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/logbounds_test.go": {
|
|
"mtime": 1785419820.8543537,
|
|
"ast_hash": "32e35f6efde0ebda8feb77d051a63dca",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/main_test.go": {
|
|
"mtime": 1785609966.2837522,
|
|
"ast_hash": "cc572812e5b4dfaf5af2094dd3ecf8a7",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/metrics_handler.go": {
|
|
"mtime": 1786822952.2833006,
|
|
"ast_hash": "cb05047a15cb5fa21d4f1a6fff977a71",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/metrics_handler_test.go": {
|
|
"mtime": 1786822952.2833006,
|
|
"ast_hash": "6b96964e7d3cd409bdd0fdfe1f956217",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/middleware.go": {
|
|
"mtime": 1787374177.6923816,
|
|
"ast_hash": "ab291089cffc1bafec506adc4d40bc77",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/middleware_test.go": {
|
|
"mtime": 1787374179.4731069,
|
|
"ast_hash": "b599bfd72f5b64a0d280c4124d995c9a",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/plugins_handler.go": {
|
|
"mtime": 1785609966.2847507,
|
|
"ast_hash": "a2fe84adfed4a3ce85c28c1ad829ac5c",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/plugins_handler_test.go": {
|
|
"mtime": 1785609966.2847507,
|
|
"ast_hash": "b4b3cd9b10321bdb132c0dfef518bbb0",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/profile_handler.go": {
|
|
"mtime": 1787315994.5845103,
|
|
"ast_hash": "eb8d56c236bdef826d67e6ce08203743",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/profile_handler_fuzz_test.go": {
|
|
"mtime": 1785609966.2857504,
|
|
"ast_hash": "ef23ac4e0fca42f7a0b5c80ff0183af6",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/profile_handler_identity_key_test.go": {
|
|
"mtime": 1786170290.8989913,
|
|
"ast_hash": "fd6d6c46af1a12f88b33e7fc8770c554",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/profile_handler_test.go": {
|
|
"mtime": 1787315994.5855105,
|
|
"ast_hash": "dd7a23d22ab18fa2ebf9648fcf50e387",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/router.go": {
|
|
"mtime": 1787374177.6933825,
|
|
"ast_hash": "f1ebaa149bd1b16677474d847ed9d211",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/router_test.go": {
|
|
"mtime": 1784815680.4783165,
|
|
"ast_hash": "a1a4794995a2f322aaaf05d6da2e99cd",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/totp_handler.go": {
|
|
"mtime": 1787315994.5855105,
|
|
"ast_hash": "93a2ee1a19fdd195ba498279b16696c4",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/totp_handler_test.go": {
|
|
"mtime": 1787315994.5855105,
|
|
"ast_hash": "563737da77434fe3b76940ee9ecc39e0",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/upload_filename_fuzz_test.go": {
|
|
"mtime": 1785609966.288751,
|
|
"ast_hash": "381777c16456915457139a5f2fbc6be4",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/upload_handler.go": {
|
|
"mtime": 1787315994.5865102,
|
|
"ast_hash": "ed1b6ab3c15e43a5703f252b3e53fbad",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/upload_handler_deleted_message_test.go": {
|
|
"mtime": 1786170290.8989913,
|
|
"ast_hash": "07e22a656ff4b8e0f8a7a37c308d59bb",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/upload_handler_test.go": {
|
|
"mtime": 1787315994.5865102,
|
|
"ast_hash": "22eab1e5552c7b2934a945a93afd2944",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/waf.go": {
|
|
"mtime": 1787315994.5865102,
|
|
"ast_hash": "ba12fd3a1582b4fed7fa28b97682af10",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/waf_crs_test.go": {
|
|
"mtime": 1785609966.2897508,
|
|
"ast_hash": "00b91820f0e8d415cf4643650be2e595",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/waf_test.go": {
|
|
"mtime": 1787315994.5865102,
|
|
"ast_hash": "474b3dbf7a79000c522027a1ace501f8",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/auth/auth.go": {
|
|
"mtime": 1784360728.5923991,
|
|
"ast_hash": "4778e83e2d49459cf3a70b70f5d3ca68",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/auth/constants.go": {
|
|
"mtime": 1784360728.5934007,
|
|
"ast_hash": "00d3588f9b1ac2019b24c33d6f3afd27",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/auth/helpers.go": {
|
|
"mtime": 1785323035.0127585,
|
|
"ast_hash": "48cdf8e4ec4162f1bffb74f722b03067",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/auth/helpers_fuzz_test.go": {
|
|
"mtime": 1785609966.2897508,
|
|
"ast_hash": "f1e76299bf166b83a31f39fe7629cdec",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/auth/helpers_test.go": {
|
|
"mtime": 1785324382.5524359,
|
|
"ast_hash": "3440ec13f96ad85a60ede4b84519942d",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/auth/main_test.go": {
|
|
"mtime": 1785609966.2907503,
|
|
"ast_hash": "615a5f1bc4efc8ec6259b988569b9bba",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/auth/password.go": {
|
|
"mtime": 1785609966.2907503,
|
|
"ast_hash": "0408da24ff4a3d97b5e9b8bfee52d1c0",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/auth/password_fuzz_test.go": {
|
|
"mtime": 1785609966.2907503,
|
|
"ast_hash": "baa80c28e5f4bd0eef84ddf57e19343a",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/auth/password_test.go": {
|
|
"mtime": 1784360728.5934007,
|
|
"ast_hash": "3014a8a67a990d8e2d30d4036c9e06ad",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/auth/ratelimit.go": {
|
|
"mtime": 1787315994.58751,
|
|
"ast_hash": "3757da9f045fc542567df175885df63b",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/auth/ratelimit_cleanup_test.go": {
|
|
"mtime": 1784819463.2005203,
|
|
"ast_hash": "0179ba2d1579609e3ecee8e544482bb6",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/auth/ratelimit_test.go": {
|
|
"mtime": 1785609966.2917514,
|
|
"ast_hash": "01af8a0e1a586d6ae9f0cabff8a95f51",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/auth/resolve.go": {
|
|
"mtime": 1785324382.5524359,
|
|
"ast_hash": "2262a5c97aecea2ddfe3434c8a0720cd",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/auth/resolve_test.go": {
|
|
"mtime": 1785324382.5524359,
|
|
"ast_hash": "c94eddcf62be2a787899a7a6aabb0ca3",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/auth/session.go": {
|
|
"mtime": 1784360728.5943992,
|
|
"ast_hash": "9640b960ae691769a88f0e5ee0ffbe48",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/auth/session_test.go": {
|
|
"mtime": 1784360728.5943992,
|
|
"ast_hash": "9e50fbf852f19e40329230071040cb29",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/auth/tls.go": {
|
|
"mtime": 1784360728.5943992,
|
|
"ast_hash": "dfb1aaef654e77f7fe9a5d31e070d817",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/auth/tls_test.go": {
|
|
"mtime": 1784360728.5953996,
|
|
"ast_hash": "93332545c25facfd34a54a312132c469",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/auth/totp.go": {
|
|
"mtime": 1784360728.5953996,
|
|
"ast_hash": "e98bb8643c7447e24d50011382100cec",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/auth/totp_encrypt.go": {
|
|
"mtime": 1784451000.7596104,
|
|
"ast_hash": "e5ecd9492525c8bfaebd968856cdd678",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/auth/totp_test.go": {
|
|
"mtime": 1784360728.5953996,
|
|
"ast_hash": "a00b2d48c6f13d35805302241d8d2c16",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/config/config.go": {
|
|
"mtime": 1787374177.6933825,
|
|
"ast_hash": "e58ddad8627a121c7d70899a5be32074",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/config/config_test.go": {
|
|
"mtime": 1787374177.6933825,
|
|
"ast_hash": "5558e89425e4e8e80755b00a1d81bc9d",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/config/constants.go": {
|
|
"mtime": 1784450998.9905782,
|
|
"ast_hash": "3a57a90db8489e560455f32314720a7e",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/config/logging_test.go": {
|
|
"mtime": 1784885890.2696805,
|
|
"ast_hash": "d74d2cbb4e26203b621cca3bdbb90cc4",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/config/logvalue.go": {
|
|
"mtime": 1785609966.2917514,
|
|
"ast_hash": "d82139dba01b0e91866ed59266ba48c8",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/config/logvalue_test.go": {
|
|
"mtime": 1784885890.2701988,
|
|
"ast_hash": "d9f3bddcd974a1d085e756adf3994edc",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/config/main_test.go": {
|
|
"mtime": 1784450998.9905782,
|
|
"ast_hash": "2a3dddd642f4e6ed210f8d391ddf1656",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/config/save.go": {
|
|
"mtime": 1787374177.6943817,
|
|
"ast_hash": "3b0c731e76ee95f9d47406a6d8215221",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/config/save_test.go": {
|
|
"mtime": 1787374177.6943817,
|
|
"ast_hash": "21bfdd60861fd437ba34dbed19de7aaf",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/account.go": {
|
|
"mtime": 1787374179.4741068,
|
|
"ast_hash": "7d0f7e8e96077eac506a006fdb9ad273",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/account_test.go": {
|
|
"mtime": 1787374179.4741068,
|
|
"ast_hash": "c7c7ae2bc8d0565e0706220accd656a4",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/admin_queries.go": {
|
|
"mtime": 1787374179.475106,
|
|
"ast_hash": "fba0c603e2c8b9f3e52e5ec773c7252c",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/admin_queries_test.go": {
|
|
"mtime": 1786822952.2868145,
|
|
"ast_hash": "3eabb674738a8de85f5da71f280b4e52",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/apitoken_queries.go": {
|
|
"mtime": 1785324382.5534363,
|
|
"ast_hash": "56aacd91ed1bcb00d6a45843ee4acc41",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/apitoken_queries_test.go": {
|
|
"mtime": 1786170290.8999915,
|
|
"ast_hash": "833e58a882198b98c70bc88c54256bb2",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/attachment_queries.go": {
|
|
"mtime": 1787374179.475106,
|
|
"ast_hash": "94a8d5657d39ba9525972552d95b8344",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/attachment_queries_test.go": {
|
|
"mtime": 1786822952.2868145,
|
|
"ast_hash": "cb21a4356f247046a52e419a96f9fb91",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/attachment_unlink_on_cascade_test.go": {
|
|
"mtime": 1786170290.8999915,
|
|
"ast_hash": "646eb97ac51724457fb22920c0d6ccbc",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/audit.go": {
|
|
"mtime": 1785609966.2938728,
|
|
"ast_hash": "778a664bfd69d655ef75d4a26c69b8b3",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/audit_test.go": {
|
|
"mtime": 1784819463.2025235,
|
|
"ast_hash": "184a8edf3d62d51ed76393c12e8e18f5",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/audit_writer.go": {
|
|
"mtime": 1786170290.8999915,
|
|
"ast_hash": "0bbd13c3151c8c0e38d3284b1ba3ac10",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/audit_writer_test.go": {
|
|
"mtime": 1786170290.9009902,
|
|
"ast_hash": "01220d18629a5b5186f01e14497fde2a",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/auth_queries.go": {
|
|
"mtime": 1787315994.5895102,
|
|
"ast_hash": "c5c3fe050f8679b0e725068f92139465",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/auth_queries_test.go": {
|
|
"mtime": 1786716968.87623,
|
|
"ast_hash": "bb1b460b5347deb98446304d1f3266b4",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/backup_test.go": {
|
|
"mtime": 1786822952.2878141,
|
|
"ast_hash": "19c2a67a6b3652b55f3daff9f995a2ce",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/block_queries.go": {
|
|
"mtime": 1784819463.2035203,
|
|
"ast_hash": "f66615bdd032af9b62727a6a60665f55",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/block_queries_test.go": {
|
|
"mtime": 1785323035.0137622,
|
|
"ast_hash": "bde3c3f673a12f38c1b738968df19f81",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/channel_queries.go": {
|
|
"mtime": 1785609966.2958777,
|
|
"ast_hash": "b9b39993c2df239693cc62992603d24b",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/channel_queries_test.go": {
|
|
"mtime": 1784819463.2035203,
|
|
"ast_hash": "68a190bc33556cb02e599cc7a6ba92d4",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/channel_user_override_queries_test.go": {
|
|
"mtime": 1785609966.2958777,
|
|
"ast_hash": "aa87eb714ae7cd8259e90cdc76980629",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/coverage_boost_test.go": {
|
|
"mtime": 1787374177.6943817,
|
|
"ast_hash": "8b62e0e72b93633795b1e806132af023",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/db.go": {
|
|
"mtime": 1786822952.2883184,
|
|
"ast_hash": "5e8e622074d2b1e86c38802b6908fdd9",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/db_test.go": {
|
|
"mtime": 1786170197.4716723,
|
|
"ast_hash": "c775b8793acdb2d3027d1945add60a7d",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/dbgen/admin.sql.go": {
|
|
"mtime": 1787245329.3028183,
|
|
"ast_hash": "daf1d2268e67357f8a9d8fc682891e93",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/dbgen/apitokens.sql.go": {
|
|
"mtime": 1787245329.3038204,
|
|
"ast_hash": "ddd5f78add33bf5dbbdb545ceb39d322",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/dbgen/attachments.sql.go": {
|
|
"mtime": 1787374179.4761055,
|
|
"ast_hash": "f20e2f4bea44b0d822322babb30e2ea3",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/dbgen/blocks.sql.go": {
|
|
"mtime": 1787245329.3028183,
|
|
"ast_hash": "d24007d421a35c9797cb34df1dac90d6",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/dbgen/channels.sql.go": {
|
|
"mtime": 1787245329.3028183,
|
|
"ast_hash": "509c5553189437f05b931824252f8a51",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/dbgen/db.go": {
|
|
"mtime": 1787245329.3018143,
|
|
"ast_hash": "829a2738ac7c69e94df24468909aa726",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/dbgen/dm.sql.go": {
|
|
"mtime": 1787315994.5895102,
|
|
"ast_hash": "1376581fd20e02acd51a86f2710e6ffa",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/dbgen/emoji.sql.go": {
|
|
"mtime": 1787245329.3028183,
|
|
"ast_hash": "4953d5d9a70d5458d916555a75341bbd",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/dbgen/events.sql.go": {
|
|
"mtime": 1787245329.3038204,
|
|
"ast_hash": "609441ac5829635738516402dba3c0b8",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/dbgen/invites.sql.go": {
|
|
"mtime": 1787245329.3028183,
|
|
"ast_hash": "6f83620a835cea7fb1db5d553d7331e4",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/dbgen/lockouts.sql.go": {
|
|
"mtime": 1787245329.3028183,
|
|
"ast_hash": "11669deef3eff7338e892c04f0d41829",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/dbgen/messages.sql.go": {
|
|
"mtime": 1787374179.4761055,
|
|
"ast_hash": "57add8f1dbd2942e164a5fe88ebb2595",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/dbgen/models.go": {
|
|
"mtime": 1787245329.3018143,
|
|
"ast_hash": "18654355dd681378f1bed236dd29f933",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/dbgen/plugins.sql.go": {
|
|
"mtime": 1787245329.3038204,
|
|
"ast_hash": "bb9da4d98aaa033fb8b41fe22b536f92",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/dbgen/profile.sql.go": {
|
|
"mtime": 1787245329.3018143,
|
|
"ast_hash": "9670dd67a8484c1169c63bc26747f1e2",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/dbgen/querier.go": {
|
|
"mtime": 1787374179.4761055,
|
|
"ast_hash": "2003876c655e42f04df11c2b0f7df18f",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/dbgen/reactions.sql.go": {
|
|
"mtime": 1787245329.3028183,
|
|
"ast_hash": "541f331b1bd333e061693bc7df2493fe",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/dbgen/roles.sql.go": {
|
|
"mtime": 1787245329.3038204,
|
|
"ast_hash": "b7c822c9daa74af6e2dd8904b2fca231",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/dbgen/sessions.sql.go": {
|
|
"mtime": 1787245329.3018143,
|
|
"ast_hash": "b387bbdcf335b4ad56f932784b9b16a2",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/dbgen/users.sql.go": {
|
|
"mtime": 1787374179.4771066,
|
|
"ast_hash": "28a6b866e5584758e52aeeba1f471f92",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/dbgen/voice.sql.go": {
|
|
"mtime": 1787374177.695382,
|
|
"ast_hash": "8987ed235bfb6b35d5afb453ba0a6026",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/dm_group_queries_test.go": {
|
|
"mtime": 1786170290.9019902,
|
|
"ast_hash": "f5536ae18d873628e47d555ffa9d6b0d",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/dm_queries.go": {
|
|
"mtime": 1787315994.5900135,
|
|
"ast_hash": "0f22cfc430c4e662041b16cfcebf9dab",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/dm_queries_test.go": {
|
|
"mtime": 1786694919.0754945,
|
|
"ast_hash": "b1092d78d97d254b842211ef80485ed9",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/emoji_queries.go": {
|
|
"mtime": 1785609966.30088,
|
|
"ast_hash": "914e72d882d8a90d25a09a11ea8ed234",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/emoji_queries_test.go": {
|
|
"mtime": 1785609966.30088,
|
|
"ast_hash": "9d4a9cb26454ddc8ce9df4829b68a1a0",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/errors.go": {
|
|
"mtime": 1784814250.5415194,
|
|
"ast_hash": "5146b8379fe6de2a66034679b2e9627d",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/errors_test.go": {
|
|
"mtime": 1784814250.5466406,
|
|
"ast_hash": "6b50751096301bb468f4b17572335562",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/event_queries.go": {
|
|
"mtime": 1786723478.3980863,
|
|
"ast_hash": "81602a8f7072868265e16cc254e3bc20",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/event_queries_test.go": {
|
|
"mtime": 1785609966.3023875,
|
|
"ast_hash": "e891ecb572840b5d2eda4f6ebaaa8890",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/invite_queries.go": {
|
|
"mtime": 1784819463.2076068,
|
|
"ast_hash": "12718fc0f6cc7f9077e0b219e55ac7ee",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/lockout_queries.go": {
|
|
"mtime": 1784819463.2076068,
|
|
"ast_hash": "5b897ce183dfaae1ec488e77b7fd9db3",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/lockout_queries_test.go": {
|
|
"mtime": 1785323035.0147624,
|
|
"ast_hash": "72267f1fb5df161f319d54d6ceb34842",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/logvalue.go": {
|
|
"mtime": 1784885890.2717576,
|
|
"ast_hash": "4632d07a8d2c3dbaa0496417fbc69b14",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/logvalue_test.go": {
|
|
"mtime": 1784885890.2717576,
|
|
"ast_hash": "ac82d48724c406972d3a50b59fe99e7b",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/main_test.go": {
|
|
"mtime": 1784814250.5415194,
|
|
"ast_hash": "4b495616544673816253479de2d6aeaa",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/mappers.go": {
|
|
"mtime": 1785609966.3023875,
|
|
"ast_hash": "7c1886accf19352585bcf0cbf8744432",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/mention_queries.go": {
|
|
"mtime": 1787374179.4771066,
|
|
"ast_hash": "0c9c8cc9c8b460bc27ce0da15ea3a71d",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/mention_queries_test.go": {
|
|
"mtime": 1787374179.4771066,
|
|
"ast_hash": "03dc3c46fb8991ee8a19fb0c57dd9688",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/message_queries.go": {
|
|
"mtime": 1787374179.478106,
|
|
"ast_hash": "ecc8d2d513e52e4048ad4c6338783d1d",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/message_queries_test.go": {
|
|
"mtime": 1787315994.5910168,
|
|
"ast_hash": "4474716b607748f108cff446f1c63a8e",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/migrate.go": {
|
|
"mtime": 1786822952.2913198,
|
|
"ast_hash": "4c5ae3e8fa66dddb16a5eff733a37b6e",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/migrate_test.go": {
|
|
"mtime": 1786822952.2913198,
|
|
"ast_hash": "83f4bf807c5d801c28a0dd6a07fd7ea2",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/migrate_upgrade_test.go": {
|
|
"mtime": 1787315994.5910168,
|
|
"ast_hash": "7e58c5253293b366e7c2a0b43e6032f4",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/migrated_db_test.go": {
|
|
"mtime": 1785323035.0162654,
|
|
"ast_hash": "4957f2ed0f75027d1cdb1963f6559548",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/models.go": {
|
|
"mtime": 1786822952.2913198,
|
|
"ast_hash": "79e097952b8f7a45f68cc53ac70eb547",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/models_test.go": {
|
|
"mtime": 1785324382.5554368,
|
|
"ast_hash": "302b764eff0d8ecbdfa50376c4cb9352",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/persisted_event.go": {
|
|
"mtime": 1785609966.3053956,
|
|
"ast_hash": "feba7fa5fce68bafbed7c12e9da5f538",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/plugin_queries.go": {
|
|
"mtime": 1787315994.59202,
|
|
"ast_hash": "32ec2aafd2a9552154d27a6df0b820d8",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/plugin_queries_test.go": {
|
|
"mtime": 1787315994.59202,
|
|
"ast_hash": "89e27df00e28c3d217130da3721146c2",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/pool_test.go": {
|
|
"mtime": 1785609966.3053956,
|
|
"ast_hash": "9540ad93c09485c49545be2f2b55bc7d",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/profile_queries.go": {
|
|
"mtime": 1785609966.3063958,
|
|
"ast_hash": "09fb92f09274f04e40f65030d1dab666",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/profile_queries_test.go": {
|
|
"mtime": 1785609966.3063958,
|
|
"ast_hash": "1e3b33748b988ecb8137e1ec70b80fc7",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/queries_ascii_test.go": {
|
|
"mtime": 1785609966.3093948,
|
|
"ast_hash": "b7f61aabb364bc719e0c4b7ffd88a1e8",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/role_crud_queries_test.go": {
|
|
"mtime": 1785609966.3093948,
|
|
"ast_hash": "04be252c5a0099d7c3e0898051f505f2",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/role_invite_queries_test.go": {
|
|
"mtime": 1784819463.2116044,
|
|
"ast_hash": "6648e3e87e9d6b58bc174c0948eef730",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/role_queries.go": {
|
|
"mtime": 1785609966.3093948,
|
|
"ast_hash": "7bc9e95e1fc0d5a00bad01638be21db2",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/sanitize_fuzz_test.go": {
|
|
"mtime": 1786724930.248753,
|
|
"ast_hash": "a51cb822374a92d6c5adff5fba3f726e",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/sanitize_test.go": {
|
|
"mtime": 1784814250.5432084,
|
|
"ast_hash": "f68057b1231f645a06d3a53f00b72329",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/status.go": {
|
|
"mtime": 1785609966.3103952,
|
|
"ast_hash": "1d3a5483fb0e9d84f866e0b83fb4863e",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/status_test.go": {
|
|
"mtime": 1785609966.3103952,
|
|
"ast_hash": "6bce82002e7105d1ea81961c9b1bd01c",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/voice_queries.go": {
|
|
"mtime": 1787374177.6963835,
|
|
"ast_hash": "9eef6907bd413e0dccc6c0bb3ca4bbbe",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/voice_queries_test.go": {
|
|
"mtime": 1786822952.2938256,
|
|
"ast_hash": "7df585947f9f9a8fb113fbbd3ac8c9b5",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/go.mod": {
|
|
"mtime": 1787374278.2512105,
|
|
"ast_hash": "a529a54035978af3cede7be69c832101",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/logctx/logctx.go": {
|
|
"mtime": 1787315994.59402,
|
|
"ast_hash": "1e62752ab3f864ecd35524b7e33b333f",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/logctx/logctx_test.go": {
|
|
"mtime": 1785323035.0172696,
|
|
"ast_hash": "166794341b860073c95b2984d570b036",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/main.go": {
|
|
"mtime": 1787374177.6963835,
|
|
"ast_hash": "2d69f117fc00e1f6721a87f0d1dce070",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/migrations/migrations.go": {
|
|
"mtime": 1784360728.6203997,
|
|
"ast_hash": "2b734a859f6dc3bf7cec7655acd7a178",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/permissions/checker.go": {
|
|
"mtime": 1785609966.3144264,
|
|
"ast_hash": "414a60c859218fa28003f6b2524cc93d",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/permissions/checker_test.go": {
|
|
"mtime": 1785609966.3144264,
|
|
"ast_hash": "7c621aae26af88f91bad846305b69d77",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/permissions/main_test.go": {
|
|
"mtime": 1784814564.595642,
|
|
"ast_hash": "154bff8866dc9ebd7d2dd175fe217daf",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/permissions/permissions.go": {
|
|
"mtime": 1785609966.3154283,
|
|
"ast_hash": "a68842be1d38bd84a84bbe86021ac3d3",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/permissions/permissions_fuzz_test.go": {
|
|
"mtime": 1785609966.3154283,
|
|
"ast_hash": "2804b4f76952076534e123d8bbc1112d",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/permissions/permissions_test.go": {
|
|
"mtime": 1785609966.3154283,
|
|
"ast_hash": "d0684414f2120b64243da9c1a5e1a9dc",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/permissions/user_override_test.go": {
|
|
"mtime": 1785609966.3164277,
|
|
"ast_hash": "19868b09deb028cc5cefb71ad95017fc",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/plugin/audit_closure_test.go": {
|
|
"mtime": 1784557739.5574002,
|
|
"ast_hash": "ee6689215ab8710e73c888d91bae7432",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/plugin/dbstore_test.go": {
|
|
"mtime": 1784528512.6699555,
|
|
"ast_hash": "8c64300429abdf838863ac5b52ad99a2",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/plugin/errors.go": {
|
|
"mtime": 1784557739.5574002,
|
|
"ast_hash": "9fbad13a11b3bd0f35411c8501f46bfb",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/plugin/examples/hello/main.go": {
|
|
"mtime": 1784450998.9915824,
|
|
"ast_hash": "9e95c20a4f5f6c2f15f430b099d6ec8e",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/plugin/host_commands.go": {
|
|
"mtime": 1786694919.077633,
|
|
"ast_hash": "f33b9dff6e0dc72936fda8627b1f72e4",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/plugin/host_events.go": {
|
|
"mtime": 1784557739.5584006,
|
|
"ast_hash": "c2f20b5f118a423f14766d5971a945ea",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/plugin/host_http.go": {
|
|
"mtime": 1784556771.975355,
|
|
"ast_hash": "c0ba1d11f1e37c4c2d3ccd2efd0a691e",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/plugin/host_http_test.go": {
|
|
"mtime": 1784556771.9763548,
|
|
"ast_hash": "4cf614324fb2a0018f3b164b336e228d",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/plugin/host_storage.go": {
|
|
"mtime": 1784557739.5584006,
|
|
"ast_hash": "943f76467cd1119ae773baf9dd871455",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/plugin/host_ui.go": {
|
|
"mtime": 1786170197.4766715,
|
|
"ast_hash": "43acd4536c8c1402a24cb0650122348b",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/plugin/host_ui_test.go": {
|
|
"mtime": 1784450998.992582,
|
|
"ast_hash": "978257aa397dd307072f133caaf512f7",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/plugin/loader.go": {
|
|
"mtime": 1787315994.5950198,
|
|
"ast_hash": "9fcfa967d1ca0e3d1e533d1d86857650",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/plugin/loader_test.go": {
|
|
"mtime": 1787315994.5950198,
|
|
"ast_hash": "77c08c72c0c787b8c48f7c6fa0617ff2",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/plugin/manifest.go": {
|
|
"mtime": 1785324382.5564365,
|
|
"ast_hash": "897429e515a21a0401a721fad7b77f9d",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/plugin/manifest_nottoml.go": {
|
|
"mtime": 1784441396.1953893,
|
|
"ast_hash": "010e422ffeddc75a9caf3ebdfe3f99fa",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/plugin/manifest_relpath_fuzz_test.go": {
|
|
"mtime": 1785609966.3164277,
|
|
"ast_hash": "24d07f6ffb20fdb5ff462fc3cd99908c",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/plugin/manifest_test.go": {
|
|
"mtime": 1784450998.992582,
|
|
"ast_hash": "f9a024d897a9919c7c423ac9d77e8913",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/plugin/manifest_toml.go": {
|
|
"mtime": 1784450998.992582,
|
|
"ast_hash": "d4340daa6666bbeaa54e8daf70a8e820",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/plugin/plugin_test.go": {
|
|
"mtime": 1784557739.5599062,
|
|
"ast_hash": "5da448ae56700756a0a28020678ad23e",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/plugin/pluginstore.go": {
|
|
"mtime": 1784528512.6709552,
|
|
"ast_hash": "ba80253d1b5ef57fc7b8775b3a55f5b8",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/plugin/registry.go": {
|
|
"mtime": 1787374177.6963835,
|
|
"ast_hash": "95374f3b59c705375588c890fca3a245",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/plugin/registry_test.go": {
|
|
"mtime": 1787315994.59602,
|
|
"ast_hash": "2fc4a4219831dce4ee5010ae07e35c0b",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/plugin/sandbox_default.go": {
|
|
"mtime": 1784819463.214606,
|
|
"ast_hash": "fb9bac769873340db68992482ef19364",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/plugin/sandbox_wazero.go": {
|
|
"mtime": 1787315994.59602,
|
|
"ast_hash": "1859e2ec1b6c1d89889910c2fe708a6f",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/plugin/sandbox_wazero_test.go": {
|
|
"mtime": 1787315994.5970194,
|
|
"ast_hash": "c8f9f251c8a8dcc85fd96aec64284551",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/scripts/genprotocol/main.go": {
|
|
"mtime": 1784818312.8805478,
|
|
"ast_hash": "90d89538af6cccf14fad514ba0538a5c",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/scripts/k6/ws-load.js": {
|
|
"mtime": 1786822952.2958245,
|
|
"ast_hash": "d8459061e953d26f79655e5efb27c70d",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/scripts/seed.go": {
|
|
"mtime": 1784819463.2156086,
|
|
"ast_hash": "4b5fc3e75200db7de1e66b235c65720e",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/scripts/toxiproxy/chaos-test.sh": {
|
|
"mtime": 1784360728.7978506,
|
|
"ast_hash": "b5d78e166f341399a869f084be359476",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/scripts/voice-test.sh": {
|
|
"mtime": 1784360728.7978506,
|
|
"ast_hash": "0d85faf5292ecb63d9fe231c523961fc",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/service/archived_channel_readonly_test.go": {
|
|
"mtime": 1786724930.248753,
|
|
"ast_hash": "cba19565ca1808e439b54fbc6eff4ad1",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/service/block.go": {
|
|
"mtime": 1784885890.273867,
|
|
"ast_hash": "befc09de28c9bd3961afc00bc5e97dbb",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/service/block_test.go": {
|
|
"mtime": 1785323035.0182693,
|
|
"ast_hash": "95dd6cd2833dd6b89c9a6b94b3267b5e",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/service/channel.go": {
|
|
"mtime": 1787315994.5970194,
|
|
"ast_hash": "e6d25dd4e926db46cd4c8d4e89b9823c",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/service/channel_presence_test.go": {
|
|
"mtime": 1786170290.90399,
|
|
"ast_hash": "6648f1b91f4e96516882f84285fd4faa",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/service/channel_test.go": {
|
|
"mtime": 1786822952.2968247,
|
|
"ast_hash": "c19d94e80c549d64ca023d1c626708ec",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/service/channel_user_override_test.go": {
|
|
"mtime": 1785609966.3174293,
|
|
"ast_hash": "b9479cc6dbb188f6b8e4e5d7ea018b7d",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/service/datastore.go": {
|
|
"mtime": 1787374177.6973832,
|
|
"ast_hash": "4f6c11807b30b51aa029027ef664daea",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/service/dm.go": {
|
|
"mtime": 1787374179.478106,
|
|
"ast_hash": "b13d9a4a63ad85a312de8ff90d201839",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/service/dm_test.go": {
|
|
"mtime": 1787374179.478106,
|
|
"ast_hash": "d88df2f7ec8845fd1e7ba4d6e7d007c7",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/service/emoji.go": {
|
|
"mtime": 1786822952.2968247,
|
|
"ast_hash": "ba592002366c34175c7f450e23b24066",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/service/emoji_fuzz_test.go": {
|
|
"mtime": 1785609966.3184288,
|
|
"ast_hash": "0c466e3d57ec956c57c3770eafaa2058",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/service/emoji_test.go": {
|
|
"mtime": 1786822952.2968247,
|
|
"ast_hash": "6c1c5d3b9e0179074c87a6e1262e7a55",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/service/harvest_s5_test.go": {
|
|
"mtime": 1786694919.0790014,
|
|
"ast_hash": "b79672d0d46e1e33d09b4a724da20d5b",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/service/invite.go": {
|
|
"mtime": 1784885890.2744055,
|
|
"ast_hash": "f417f174af15db57a31d345e6bbfe6b3",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/service/mentions.go": {
|
|
"mtime": 1787315994.5980198,
|
|
"ast_hash": "3f9e6674a0aaa305b5de7e972ee81170",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/service/mentions_fuzz_test.go": {
|
|
"mtime": 1785609966.319428,
|
|
"ast_hash": "1d507eaf82cf7b2249f7a60b11604d18",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/service/mentions_test.go": {
|
|
"mtime": 1787374179.4796443,
|
|
"ast_hash": "3dff6f1508822206cd0ef36e460cbf38",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/service/message.go": {
|
|
"mtime": 1787374177.6983817,
|
|
"ast_hash": "ccff7dbf0f4d43aefcd64101665519a8",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/service/message_around_test.go": {
|
|
"mtime": 1785609966.3204272,
|
|
"ast_hash": "19ac1e9e749925a918f8e111f99a5b3d",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/service/message_crud.go": {
|
|
"mtime": 1787374179.4796443,
|
|
"ast_hash": "49c92983edef08a21c5d6770faff030c",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/service/message_perms.go": {
|
|
"mtime": 1786724930.2502625,
|
|
"ast_hash": "6c796aff077d89292013feaf821e2899",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/service/message_purge.go": {
|
|
"mtime": 1787374177.6983817,
|
|
"ast_hash": "5b6e3415b13a61915baeaffe46579908",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/service/message_purge_test.go": {
|
|
"mtime": 1785609966.321429,
|
|
"ast_hash": "f3bd3626d13b74dc2e7afdc43319ef34",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/service/message_query.go": {
|
|
"mtime": 1786724930.2512667,
|
|
"ast_hash": "fba58c14ce5ec0b18f9246b8bc5fb91e",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/service/message_reaction_users_test.go": {
|
|
"mtime": 1786722299.6051023,
|
|
"ast_hash": "29b005125ce0c6922ba1698c5d35072f",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/service/message_reactions.go": {
|
|
"mtime": 1787315994.5995228,
|
|
"ast_hash": "a88877b43a52826429d2c678086942d9",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/service/message_test.go": {
|
|
"mtime": 1786694919.0805073,
|
|
"ast_hash": "643937ff13c412cc4d7b9f8a500f3273",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/service/moderation.go": {
|
|
"mtime": 1786822952.2978265,
|
|
"ast_hash": "c34159758f1936f2a52f08c4c862c40a",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/service/moderation_test.go": {
|
|
"mtime": 1786711816.4570463,
|
|
"ast_hash": "bbbf1790c55ce0d78de2b532e6b0d480",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/service/permission.go": {
|
|
"mtime": 1787374177.6993833,
|
|
"ast_hash": "fe7fc2ce80c32dc2228425c504bd6f49",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/service/permission_test.go": {
|
|
"mtime": 1785609966.322934,
|
|
"ast_hash": "d334a375943699e1fb3448520a16fcc3",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/service/profile_fields_test.go": {
|
|
"mtime": 1787315994.5995228,
|
|
"ast_hash": "c166b99a342267bc0a5405923a3f3bf6",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/service/require_channel_access_test.go": {
|
|
"mtime": 1785323035.0202696,
|
|
"ast_hash": "f37772ce28968e75e5e9e28eb05b37aa",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/service/role.go": {
|
|
"mtime": 1787315994.5995228,
|
|
"ast_hash": "a67081e4b480cdbef06c6508819d9f07",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/service/role_test.go": {
|
|
"mtime": 1786170197.4816718,
|
|
"ast_hash": "e19dad4751f4742e26dde622e59cc772",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/service/sanitize_content_fuzz_test.go": {
|
|
"mtime": 1786170197.4816718,
|
|
"ast_hash": "4af0d088611729f49c45110f11a032b6",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/service/sanitize_content_test.go": {
|
|
"mtime": 1786170197.4816718,
|
|
"ast_hash": "bde093ac6c2cb2cebdcae2a99eb05d7f",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/service/seed_test.go": {
|
|
"mtime": 1785609966.3239374,
|
|
"ast_hash": "1a0075a6760b077df1623129e45634d8",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/service/send_advances_read_state_test.go": {
|
|
"mtime": 1786170290.905992,
|
|
"ast_hash": "40acbce950a6c2ae7522e5689dcb7171",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/service/service.go": {
|
|
"mtime": 1785609966.3239374,
|
|
"ast_hash": "acc222d591cc0aac387d8c42b0394790",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/service/user.go": {
|
|
"mtime": 1787374179.4796443,
|
|
"ast_hash": "b6822404623dbf0ed374db94a5805c24",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/service/user_test.go": {
|
|
"mtime": 1784819463.2196097,
|
|
"ast_hash": "b527831b5ad73eed43f2e59ad509b2a6",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/stackutil/stackutil.go": {
|
|
"mtime": 1784885890.2754443,
|
|
"ast_hash": "aae9de3fe1662d15c836d347248bff33",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/stackutil/stackutil_test.go": {
|
|
"mtime": 1784885890.2754443,
|
|
"ast_hash": "502c5b29f076c05fb6d80e54858c4714",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/storage/main_test.go": {
|
|
"mtime": 1784360728.8008506,
|
|
"ast_hash": "2471380cb3db705be482f4c83d06f761",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/storage/storage.go": {
|
|
"mtime": 1786822952.2988355,
|
|
"ast_hash": "c4dc4a584331c55973a1265e4e4abe07",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/storage/storage_filename_fuzz_test.go": {
|
|
"mtime": 1785609966.3259375,
|
|
"ast_hash": "e010724bc8300d79580384296371c094",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/storage/storage_test.go": {
|
|
"mtime": 1786170197.4826715,
|
|
"ast_hash": "c3d814e3d39e3d700b159c53f68770f9",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/storage/validate_filetype_fuzz_test.go": {
|
|
"mtime": 1785609966.3259375,
|
|
"ast_hash": "a783a8ca7f7aa13d72f739c3c09c082d",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/syncutil/mutex.go": {
|
|
"mtime": 1784360728.8028505,
|
|
"ast_hash": "ef0b7f211a96a79c5e252640fc35f60a",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/syncutil/mutex_deadlock.go": {
|
|
"mtime": 1784360728.8028505,
|
|
"ast_hash": "70321bfb70ece07df0511fc580e1ecbe",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/syncutil/mutex_prod.go": {
|
|
"mtime": 1784360728.8028505,
|
|
"ast_hash": "a279c9d749d77bf8cc157f82c4030300",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/telemetry/metrics.go": {
|
|
"mtime": 1786822952.2988355,
|
|
"ast_hash": "78cb0bd374eff8c822c1affba3688be3",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/telemetry/middleware.go": {
|
|
"mtime": 1784360728.8028505,
|
|
"ast_hash": "80c38891bf03c3a1434570ad5c0a8f36",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/telemetry/noop_test.go": {
|
|
"mtime": 1785323035.0202696,
|
|
"ast_hash": "49582c251de851bf810ddff654dbb5f8",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/telemetry/telemetry.go": {
|
|
"mtime": 1784816013.276696,
|
|
"ast_hash": "a9911455bab281a14990ea38e6844229",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/telemetry/telemetry_default.go": {
|
|
"mtime": 1784885890.2754443,
|
|
"ast_hash": "f8f32f00cd18fb56d3cb048678533e35",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/telemetry/telemetry_otel.go": {
|
|
"mtime": 1784885890.2764482,
|
|
"ast_hash": "ac921de74b7593a9c4a2042eadf7a8e0",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/telemetry/telemetry_otel_test.go": {
|
|
"mtime": 1784360728.8038507,
|
|
"ast_hash": "281555b1bb1a7d037e9919723f827429",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/telemetry/telemetry_test.go": {
|
|
"mtime": 1784360728.8038507,
|
|
"ast_hash": "157f8d65d75e93af8962533857a2b93c",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/token_cli.go": {
|
|
"mtime": 1787374177.6993833,
|
|
"ast_hash": "2ed0a7ad189c1a6a40b86c5f6c3882f1",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/updater/assets.go": {
|
|
"mtime": 1785609966.326938,
|
|
"ast_hash": "e6030f656d92ca3a866797220039801f",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/updater/cancelled_caller_test.go": {
|
|
"mtime": 1785419820.8558564,
|
|
"ast_hash": "126f03b7048864f47326400d73e7bdaa",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/updater/container.go": {
|
|
"mtime": 1786170197.4826715,
|
|
"ast_hash": "fc41a2f9673de7f099fc16e24488d010",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/updater/container_test.go": {
|
|
"mtime": 1786170197.4836743,
|
|
"ast_hash": "ef8d78c6277f762bc2ddf796c42a1468",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/updater/coverage_boost_test.go": {
|
|
"mtime": 1784824869.8823678,
|
|
"ast_hash": "ad01598f2787bba7eabe90bf19b31c52",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/updater/download.go": {
|
|
"mtime": 1786170197.4836743,
|
|
"ast_hash": "3bf5770bc58296eaee32e583b9481c17",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/updater/main_test.go": {
|
|
"mtime": 1784450998.9971461,
|
|
"ast_hash": "f8c246c7d06338f707a03c8279a5d525",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/updater/proc_spawner_nix.go": {
|
|
"mtime": 1784450998.9971461,
|
|
"ast_hash": "6b13b5a9a73971518d57116e034d77b6",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/updater/proc_spawner_win.go": {
|
|
"mtime": 1784450998.9971461,
|
|
"ast_hash": "122d1c68660d25d2dfc6e54bbebb4a25",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/updater/release_manifest_test.go": {
|
|
"mtime": 1784824869.8823678,
|
|
"ast_hash": "8e90406b33c74794b7d53f300b4f324c",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/updater/text_asset_cache_test.go": {
|
|
"mtime": 1785324382.557436,
|
|
"ast_hash": "34fff3d0a9544b34e9caa8b053cd61d7",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/updater/updater.go": {
|
|
"mtime": 1786724188.621686,
|
|
"ast_hash": "52005e93093f284ba9601d1846f89d39",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/updater/updater_test.go": {
|
|
"mtime": 1787315994.6005266,
|
|
"ast_hash": "f04a80de2853d3ca67c8f4458919cc58",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/updater/verify.go": {
|
|
"mtime": 1785609966.3279376,
|
|
"ast_hash": "2f3654601612bd5bb3a9d7a292c2dcaf",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/authz_test.go": {
|
|
"mtime": 1785609966.3279376,
|
|
"ast_hash": "e45f06bc2935980fd98de73ed44913ec",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/can_send_ready_test.go": {
|
|
"mtime": 1784819463.22061,
|
|
"ast_hash": "875bd669f83f2b7090bf331cb673ab2a",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/can_send_test.go": {
|
|
"mtime": 1784528512.6759577,
|
|
"ast_hash": "502a30251c927b4e45a90c0a59c7afac",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/channel_flags_ready_test.go": {
|
|
"mtime": 1785609966.3279376,
|
|
"ast_hash": "5a2dd87c10c3068d7eb5f3402d0515e4",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/channel_visibility_agreement_test.go": {
|
|
"mtime": 1785609966.3279376,
|
|
"ast_hash": "6c35cf6078a18f08ed465642d7d260ef",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/client.go": {
|
|
"mtime": 1787374177.7003827,
|
|
"ast_hash": "7c5bbbfb515e267542698e8cd9c2ecc8",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/command.go": {
|
|
"mtime": 1785609966.328938,
|
|
"ast_hash": "ce5dd45c70bd566289012e4f2912966a",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/command_test.go": {
|
|
"mtime": 1785609966.328938,
|
|
"ast_hash": "78eb6d39b67530fd8a290bafea8bfe94",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/coverage_boost2_test.go": {
|
|
"mtime": 1785609966.328938,
|
|
"ast_hash": "aeee555ad8013fcf36dedb15dea72a95",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/coverage_chat_test.go": {
|
|
"mtime": 1785609966.328938,
|
|
"ast_hash": "aa3e28411d1276fed3d2d07719a0621a",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/coverage_helpers_test.go": {
|
|
"mtime": 1785609966.329938,
|
|
"ast_hash": "dfce98146437b34734f5d22c43f9f645",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/coverage_misc_test.go": {
|
|
"mtime": 1785609966.329938,
|
|
"ast_hash": "7dfa668146f5963e2ec5e2cba66a99fe",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/coverage_voice_lifecycle_test.go": {
|
|
"mtime": 1787315994.6015265,
|
|
"ast_hash": "ebf3ffa044992f4bf604bd021d2beeed",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/coverage_voice_test.go": {
|
|
"mtime": 1785609966.330936,
|
|
"ast_hash": "5eaf066d8ecf6259656263ca7de16f25",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/deps.go": {
|
|
"mtime": 1787374177.7003827,
|
|
"ast_hash": "626fc1883f96a5adcdff4bd71d66bf36",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/dm_group_call_test.go": {
|
|
"mtime": 1786170197.4846735,
|
|
"ast_hash": "77d3b8af18c73661e7786db3bf6a54db",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/dm_handlers_test.go": {
|
|
"mtime": 1785609966.330936,
|
|
"ast_hash": "e92ab56dc765a3d12b5c3ca8e5bb9a37",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/emit.go": {
|
|
"mtime": 1787374177.7003827,
|
|
"ast_hash": "0f46df22e562a9222e0d66ffa5f6c5ec",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/emit_seq_order_test.go": {
|
|
"mtime": 1786170197.4856744,
|
|
"ast_hash": "45a9f9cade1160250901807e65e66d15",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/emit_test.go": {
|
|
"mtime": 1785609966.330936,
|
|
"ast_hash": "df477f76e754243801a96a50dc519c59",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/errors.go": {
|
|
"mtime": 1785609966.330936,
|
|
"ast_hash": "8f174c6c5d0bf2b291af48d7fac83ced",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/event.go": {
|
|
"mtime": 1787374177.7013826,
|
|
"ast_hash": "a1a04ac2771700cd273039ba0ed20412",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/event_persister.go": {
|
|
"mtime": 1787374177.7013826,
|
|
"ast_hash": "64e2cd426f916fb7b8ddf46d9d69d49e",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/event_persister_test.go": {
|
|
"mtime": 1787374177.7013826,
|
|
"ast_hash": "fccf7862c43243bf4dfb5cbec26cc411",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/event_pruner.go": {
|
|
"mtime": 1786822952.3003566,
|
|
"ast_hash": "2f76533fa11bfc6e2b939e7f05eadbc8",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/event_pruner_test.go": {
|
|
"mtime": 1786722299.4406817,
|
|
"ast_hash": "e52ed46cfcf6a9fe7f746c845214704f",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/event_test.go": {
|
|
"mtime": 1784819463.2226093,
|
|
"ast_hash": "6b4439a0480037ba30ab759356a8bf01",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/eventstore.go": {
|
|
"mtime": 1786723478.3980863,
|
|
"ast_hash": "ee9d9137c5eb34d80c2b2861a327f441",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/export_test.go": {
|
|
"mtime": 1787374179.4806495,
|
|
"ast_hash": "ae5ab93b8b4bea36d119b316713808da",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/extract_event_type_test.go": {
|
|
"mtime": 1784450999.0021467,
|
|
"ast_hash": "e6c88b94b106d8ad845e524fde7fa27a",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/handler_v2_channel_focus_test.go": {
|
|
"mtime": 1786170290.9079907,
|
|
"ast_hash": "e4707e774a4b1b3e0ef36366ea0221ec",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/handler_v2_mark_read_test.go": {
|
|
"mtime": 1786694919.0815072,
|
|
"ast_hash": "efbc0496e0f0d3335a54221ca6f68828",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/handler_v2_migration_test.go": {
|
|
"mtime": 1787374179.4806495,
|
|
"ast_hash": "d0fb98088fe6ecc550426fc379a682f4",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/handler_v2_ping_test.go": {
|
|
"mtime": 1784450999.0031452,
|
|
"ast_hash": "b263caa543c15691db17004cf03100e2",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/handler_v2_voice_e2ee_offer_test.go": {
|
|
"mtime": 1785324382.559944,
|
|
"ast_hash": "74bd505f54821134e7306e58895915d7",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/handler_v2_voice_e2ee_test.go": {
|
|
"mtime": 1784885890.2774482,
|
|
"ast_hash": "008d74ab65c5d126475d6970250e072f",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/handler_v2_voice_token_test.go": {
|
|
"mtime": 1785323035.024269,
|
|
"ast_hash": "9c2701e3e54f6272bf801cffac3e4b53",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/handlers.go": {
|
|
"mtime": 1787374179.4816494,
|
|
"ast_hash": "256da32c40456260eaeb4dd09e934999",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/handlers_call.go": {
|
|
"mtime": 1786687295.118935,
|
|
"ast_hash": "7c704df37db7c1a6729e264cb2b82964",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/handlers_chat.go": {
|
|
"mtime": 1787374177.702382,
|
|
"ast_hash": "e6078a092c0bedcc85158a65b9e81faa",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/handlers_command.go": {
|
|
"mtime": 1787315994.6035266,
|
|
"ast_hash": "7a2e23bc5e772e5a0e7462cfb6f4e3ba",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/handlers_command_test.go": {
|
|
"mtime": 1786723143.5560343,
|
|
"ast_hash": "c74b1c06c6cc8ed10d42065d783c8201",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/handlers_ping.go": {
|
|
"mtime": 1785609966.3344488,
|
|
"ast_hash": "4899dce827849ede8ff8f16072c0fa90",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/handlers_presence.go": {
|
|
"mtime": 1786170290.9079907,
|
|
"ast_hash": "a2c7d515fc7ebb10602eb2e6d74611b8",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/handlers_reaction.go": {
|
|
"mtime": 1784819463.2246068,
|
|
"ast_hash": "2418a526a4851efe9eb4402ee5db2fff",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/handlers_test.go": {
|
|
"mtime": 1787374179.4816494,
|
|
"ast_hash": "5fc7b9711035bb1c3a1539e913caa212",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/handlers_voice.go": {
|
|
"mtime": 1787374179.4816494,
|
|
"ast_hash": "95591d2c8adda42146a06b51cd18f1c1",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/harvest_s4_internal_test.go": {
|
|
"mtime": 1786822952.3013568,
|
|
"ast_hash": "4660c6d29b0c78ce3406bb5f129993fd",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/harvest_s5_internal_test.go": {
|
|
"mtime": 1786716968.8772302,
|
|
"ast_hash": "7c47c16c34ba0164522f60bf4d123a60",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/hub.go": {
|
|
"mtime": 1787374179.4826498,
|
|
"ast_hash": "36b71322a5e6eb8b570294f7186289f4",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/hub_broadcast.go": {
|
|
"mtime": 1787374177.703383,
|
|
"ast_hash": "98196c33ec3cd96d74b240b6c60dd16b",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/hub_broadcast_test.go": {
|
|
"mtime": 1787315994.6045265,
|
|
"ast_hash": "5eba16f7258411278268548ac2e95157",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/hub_channel_meta_test.go": {
|
|
"mtime": 1785609966.3364482,
|
|
"ast_hash": "b67bfb4415cded085eea57c3134f97c5",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/hub_emoji_test.go": {
|
|
"mtime": 1785609966.3364482,
|
|
"ast_hash": "87aa0e0148afd26029acd2f0b27a17ed",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/hub_events.go": {
|
|
"mtime": 1785609966.3364482,
|
|
"ast_hash": "d7d58f8129149cb56e69c68adb66b120",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/hub_livekit.go": {
|
|
"mtime": 1785609966.3374505,
|
|
"ast_hash": "b0b6c771582542a753dc10037ad148e8",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/hub_register_race_test.go": {
|
|
"mtime": 1786170290.9089901,
|
|
"ast_hash": "eb16093858006eafb520c1987422c4fd",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/hub_register_test.go": {
|
|
"mtime": 1786170197.488674,
|
|
"ast_hash": "e09b7d85bd80d56f610a38aff4f91e7f",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/hub_roles_test.go": {
|
|
"mtime": 1785609966.3374505,
|
|
"ast_hash": "8a06089e2945a5ba36ebd974dfc34e32",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/hub_seedseq_test.go": {
|
|
"mtime": 1784450999.0056558,
|
|
"ast_hash": "8b5c7653867f056e7ee12c3282d10e85",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/hub_sweep.go": {
|
|
"mtime": 1787315994.605029,
|
|
"ast_hash": "cc5d990c06b09f851e6724d92d130501",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/hub_sweep_test.go": {
|
|
"mtime": 1786718975.738458,
|
|
"ast_hash": "755d26808eecc0283325b733cbdcb720",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/hub_test.go": {
|
|
"mtime": 1786170290.90999,
|
|
"ast_hash": "2869ced172cb9212e31a3481bd7e67a3",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/hub_visibility_watermark_test.go": {
|
|
"mtime": 1786694919.0830126,
|
|
"ast_hash": "fe1a4b89005ddbc9d094f7be958116ea",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/livekit.go": {
|
|
"mtime": 1786822952.303357,
|
|
"ast_hash": "5af68b5a7564fbff793c0ba425fcdf66",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/livekit_client_test.go": {
|
|
"mtime": 1785323035.0262718,
|
|
"ast_hash": "e5337ff160d3a1de7d5a186eedab2543",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/livekit_download.go": {
|
|
"mtime": 1787315994.6055317,
|
|
"ast_hash": "caa098ad526908e0ee20757064fa7bae",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/livekit_download_test.go": {
|
|
"mtime": 1785609966.3394477,
|
|
"ast_hash": "5d3c057d48687eaa06f52747707ce5a4",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/livekit_process.go": {
|
|
"mtime": 1787315994.6055317,
|
|
"ast_hash": "6308c626884feeb703ee8f07c89e0798",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/livekit_test.go": {
|
|
"mtime": 1787315994.6055317,
|
|
"ast_hash": "c0cd40b190f7bf85f41758ae1e3552e8",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/livekit_webhook.go": {
|
|
"mtime": 1787315994.6055317,
|
|
"ast_hash": "51873dafff5718b8ca01846c05aa55d0",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/livekit_webhook_fuzz_test.go": {
|
|
"mtime": 1785609966.3394477,
|
|
"ast_hash": "bee138f1bc6f5b8ceb17320548b07c49",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/livekit_webhook_joined_test.go": {
|
|
"mtime": 1787315994.6070616,
|
|
"ast_hash": "a865cdad975966f88fe5fa576bd032d3",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/load_soak_test.go": {
|
|
"mtime": 1787315994.6070616,
|
|
"ast_hash": "deb3a0c003aa2e00cbbfbf5f3d38ef19",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/main_test.go": {
|
|
"mtime": 1784450999.0076542,
|
|
"ast_hash": "84bdd4bdb4381289d49422ceaae1952a",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/mentions_ready_test.go": {
|
|
"mtime": 1787374177.704384,
|
|
"ast_hash": "6a3ed22a9a1901366f1baff64a02ee6d",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/message_types.go": {
|
|
"mtime": 1787245329.7609656,
|
|
"ast_hash": "0ca9ab7223520a386fb1bb083187101e",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/messages.go": {
|
|
"mtime": 1787374177.704384,
|
|
"ast_hash": "3cb11dce1d092e8e2a858c88e0592e59",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/messages_test.go": {
|
|
"mtime": 1787374177.704384,
|
|
"ast_hash": "8febd876ffec43b988cdff80c16c77be",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/origin.go": {
|
|
"mtime": 1785324382.559944,
|
|
"ast_hash": "b67061bdb26c43de7fc993681fc4f7a9",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/origin_test.go": {
|
|
"mtime": 1784450999.0086546,
|
|
"ast_hash": "de56113a9e9bf05896514fbc8e1224b5",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/perm_cache_test.go": {
|
|
"mtime": 1785609966.3414493,
|
|
"ast_hash": "15f2b8accbe8cb588cf373b29599a08d",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/presence_invisible_test.go": {
|
|
"mtime": 1786822952.3048604,
|
|
"ast_hash": "6eb2ab6ca0d045e961575816bd66f60a",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/protocol_contract_test.go": {
|
|
"mtime": 1786170197.4916735,
|
|
"ast_hash": "5a20f791dcb2b0300438155a3b924e5c",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/pubsub.go": {
|
|
"mtime": 1787315994.6080654,
|
|
"ast_hash": "df66b08f9bae240e67bed7102e812955",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/pubsub_test.go": {
|
|
"mtime": 1786170197.4926746,
|
|
"ast_hash": "32a5317601b6ec287b35ebdc74bd0ae6",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/reconnect_active_channel_test.go": {
|
|
"mtime": 1786822952.3048604,
|
|
"ast_hash": "20bbd3ef02ebb6072889bfd7306bb35e",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/reconnect_db_test.go": {
|
|
"mtime": 1786822952.3048604,
|
|
"ast_hash": "ef193c7106b1a591f45eba305715e8c7",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/reconnect_pruned_prefix_test.go": {
|
|
"mtime": 1786822952.3058617,
|
|
"ast_hash": "860c7873953ae5b5e985bde545477fba",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/reconnect_voice_supplement_test.go": {
|
|
"mtime": 1786822952.3058617,
|
|
"ast_hash": "be96043277fe77e254ec513035fbcc45",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/registry.go": {
|
|
"mtime": 1784885890.2794478,
|
|
"ast_hash": "ee202afa2a19d688976ba2b095508852",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/registry_test.go": {
|
|
"mtime": 1785609966.342449,
|
|
"ast_hash": "ec9b36eae26c0ed763877980e0fe65c7",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/ringbuffer.go": {
|
|
"mtime": 1787315994.6095686,
|
|
"ast_hash": "c1373c10ac63fadc1c2a2235c75c33c6",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/ringbuffer_test.go": {
|
|
"mtime": 1786170197.4936736,
|
|
"ast_hash": "6b28046234aeae8d1cb8dc93b2fb79dc",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/serve.go": {
|
|
"mtime": 1787374179.4836493,
|
|
"ast_hash": "8e10a769bce656e74df53bb0118677d7",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/serve_auth.go": {
|
|
"mtime": 1787315994.6105726,
|
|
"ast_hash": "704f2b4a553a98b2657714ff3e068c74",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/serve_failed_handshake_teardown_test.go": {
|
|
"mtime": 1787374177.706383,
|
|
"ast_hash": "4ccc07923697c868fd34456795bf482c",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/serve_pumps.go": {
|
|
"mtime": 1787315994.6105726,
|
|
"ast_hash": "9a270c7a278a8558d44a62b4d18d4efe",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/serve_pumps_priority_test.go": {
|
|
"mtime": 1786170290.9119904,
|
|
"ast_hash": "8d3ef740eb8c99ef59fc1339b2fa3b0b",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/serve_ready.go": {
|
|
"mtime": 1787315994.6105726,
|
|
"ast_hash": "4d7ca4ab6b44efe5b20b31e710ad48d3",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/serve_ready_dm_voice_test.go": {
|
|
"mtime": 1786170290.91299,
|
|
"ast_hash": "55ae24137790e7b4ab841af64cc8c131",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/serve_test.go": {
|
|
"mtime": 1787315994.611576,
|
|
"ast_hash": "3b4c4ee7ddfbff437295499acc5cdf31",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/topic_rate_limiter.go": {
|
|
"mtime": 1787315994.611576,
|
|
"ast_hash": "a44adf8a012881d14320a7b871618a9f",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/topic_rate_limiter_test.go": {
|
|
"mtime": 1785323035.0283253,
|
|
"ast_hash": "42f4be93a2bbca13ac10652128241d81",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/voice_audience_test.go": {
|
|
"mtime": 1787315994.611576,
|
|
"ast_hash": "97f0797fe9fce47d3da2855f933d9f1a",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/voice_broadcast.go": {
|
|
"mtime": 1785609966.343572,
|
|
"ast_hash": "91b7f8be3971a6df352f00ea60ac1e93",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/voice_controls.go": {
|
|
"mtime": 1787315994.611576,
|
|
"ast_hash": "f7c46b7cec03c0ef8a0ef2cbfd1f5c47",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/voice_dm_access_test.go": {
|
|
"mtime": 1786724930.2532673,
|
|
"ast_hash": "6a86a6921ba9e03444e646c758d968f6",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/voice_e2ee.go": {
|
|
"mtime": 1787374179.4836493,
|
|
"ast_hash": "b4b722e2bf820b998e98f5e1d92ef82d",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/voice_e2ee_test.go": {
|
|
"mtime": 1785609966.3445716,
|
|
"ast_hash": "f935cca1c222e1e64d4044c1c4dfa67a",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/voice_handlers_test.go": {
|
|
"mtime": 1787315994.611576,
|
|
"ast_hash": "ab10967e848f0f6c56a64d35b7313cb3",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/voice_join.go": {
|
|
"mtime": 1787374179.4846494,
|
|
"ast_hash": "7d4a84359aa6b4e7047c6e6677cb30c5",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/voice_keyholder_test.go": {
|
|
"mtime": 1787374177.706383,
|
|
"ast_hash": "8be2b25c1c37d00137ba47fcca2be646",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/voice_leave.go": {
|
|
"mtime": 1787374177.706383,
|
|
"ast_hash": "d00a552f3d3d19070de94714758ce07d",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/voice_moderation.go": {
|
|
"mtime": 1787374179.4846494,
|
|
"ast_hash": "0138b150160e56720886ab2d5c5d02ea",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/voice_moderation_test.go": {
|
|
"mtime": 1787374179.4846494,
|
|
"ast_hash": "dd87f95cc213565f234fbaa60a563373",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/voice_perm_stale_test.go": {
|
|
"mtime": 1784819463.2291172,
|
|
"ast_hash": "1ebe17b9d1e932dd14f12d163f57bef0",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/wait_helpers_test.go": {
|
|
"mtime": 1785609966.3465717,
|
|
"ast_hash": "b1cae1c8854943f431397f3d955da9a5",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/ws_integration_test.go": {
|
|
"mtime": 1787315994.613579,
|
|
"ast_hash": "fc96d2292815b80c2837a2bd4811b801",
|
|
"semantic_hash": ""
|
|
},
|
|
"package.json": {
|
|
"mtime": 1784528512.6869571,
|
|
"ast_hash": "f9096ec0587c96f172d8fd33148f6357",
|
|
"semantic_hash": ""
|
|
},
|
|
"tools/mcp-introspect/index.mjs": {
|
|
"mtime": 1785324382.5629444,
|
|
"ast_hash": "3d42255dcbe9fae7c839e2a214b83700",
|
|
"semantic_hash": ""
|
|
},
|
|
"tools/mcp-introspect/package.json": {
|
|
"mtime": 1785429699.265496,
|
|
"ast_hash": "b99a209acdb1eb2a7d60519ddf95fad6",
|
|
"semantic_hash": ""
|
|
},
|
|
".claude/skills/bughunt-run/SKILL.md": {
|
|
"mtime": 1787315994.513591,
|
|
"ast_hash": "2d6e4727d0e3f95637d701c96ff42183",
|
|
"semantic_hash": ""
|
|
},
|
|
".claude/skills/ci-check/SKILL.md": {
|
|
"mtime": 1786822952.2592442,
|
|
"ast_hash": "decec7ac2aca19e9a46cbb8cb218d27f",
|
|
"semantic_hash": ""
|
|
},
|
|
".claude/skills/db-change/SKILL.md": {
|
|
"mtime": 1786694919.051983,
|
|
"ast_hash": "a4afa186e33c15fdac59015aab3d09be",
|
|
"semantic_hash": ""
|
|
},
|
|
".claude/skills/protocol-change/SKILL.md": {
|
|
"mtime": 1786170197.4091551,
|
|
"ast_hash": "495f84a73a7fcca7d3f13ffbde3d649c",
|
|
"semantic_hash": ""
|
|
},
|
|
".github/ISSUE_TEMPLATE/bug_report.md": {
|
|
"mtime": 1784360728.5061123,
|
|
"ast_hash": "46b54561928fdec530c4bf8add1c3912",
|
|
"semantic_hash": ""
|
|
},
|
|
".github/ISSUE_TEMPLATE/config.yml": {
|
|
"mtime": 1784360728.5061123,
|
|
"ast_hash": "0abd2ef9a1998a3ee60679b202f86817",
|
|
"semantic_hash": ""
|
|
},
|
|
".github/ISSUE_TEMPLATE/feature_request.md": {
|
|
"mtime": 1784360728.5061123,
|
|
"ast_hash": "b06bd536e8c2669247d05a3c26bdff04",
|
|
"semantic_hash": ""
|
|
},
|
|
".github/PULL_REQUEST_TEMPLATE.md": {
|
|
"mtime": 1786170197.4101565,
|
|
"ast_hash": "d7e5a6c5b755a5fba99cb9e3cf456e1f",
|
|
"semantic_hash": ""
|
|
},
|
|
".github/dependabot.yml": {
|
|
"mtime": 1786473472.0432675,
|
|
"ast_hash": "b4123f477f35e1aec262f849e36889cf",
|
|
"semantic_hash": ""
|
|
},
|
|
".github/workflows/ci.yml": {
|
|
"mtime": 1787374278.2376938,
|
|
"ast_hash": "8f86ca3f87f3c167f8a6e9a1b0b7e184",
|
|
"semantic_hash": ""
|
|
},
|
|
".github/workflows/claude.yml": {
|
|
"mtime": 1787315994.5150943,
|
|
"ast_hash": "c96990110756ae4e706cec439b881510",
|
|
"semantic_hash": ""
|
|
},
|
|
".github/workflows/release.yml": {
|
|
"mtime": 1787374278.2376938,
|
|
"ast_hash": "420415072dc3f843c37bdabf095d4827",
|
|
"semantic_hash": ""
|
|
},
|
|
"CHANGELOG.md": {
|
|
"mtime": 1786894298.5006545,
|
|
"ast_hash": "62a7a08203da1b5c2098c7baedb600b8",
|
|
"semantic_hash": ""
|
|
},
|
|
"CLAUDE.md": {
|
|
"mtime": 1787315994.519639,
|
|
"ast_hash": "be8af23d92b9322ba5d8bcca1ee997af",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/CLAUDE.md": {
|
|
"mtime": 1787374278.2376938,
|
|
"ast_hash": "33b6cd6fca15ec2d34507a3e61d08bff",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/index.html": {
|
|
"mtime": 1784360728.5111158,
|
|
"ast_hash": "41829e93308c5c5ebcc9e411d4c33ff5",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/E2E-ISSUES.md": {
|
|
"mtime": 1786170197.4356718,
|
|
"ast_hash": "116d295fd71b1c01e06ec88e30d02afc",
|
|
"semantic_hash": ""
|
|
},
|
|
"README.md": {
|
|
"mtime": 1786894298.5051625,
|
|
"ast_hash": "dd36185201d13b6adbe5972487b75e96",
|
|
"semantic_hash": ""
|
|
},
|
|
"SECURITY.md": {
|
|
"mtime": 1785420322.9763165,
|
|
"ast_hash": "be0cd95bf6d7e2bf92f599ded93e61c8",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/.golangci.yml": {
|
|
"mtime": 1787315994.5750003,
|
|
"ast_hash": "a3fe368f6b7ab217c0a40dca3112a4ac",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/.gremlins.yaml": {
|
|
"mtime": 1784360728.579399,
|
|
"ast_hash": "7dcd2e46388cb94ffed493fac89c27b0",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/CLAUDE.md": {
|
|
"mtime": 1787315994.5750003,
|
|
"ast_hash": "0b980062556c27f60b327afdded9d6ed",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/static/index.html": {
|
|
"mtime": 1787374177.691382,
|
|
"ast_hash": "59940e53c86e2a26d361c06298148a07",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/docker-compose.otel.yml": {
|
|
"mtime": 1784360728.6164007,
|
|
"ast_hash": "6d3391d09eb8535ccd730b5d9414cbde",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/docker-compose.yml": {
|
|
"mtime": 1786822952.294826,
|
|
"ast_hash": "f11c17a5068e869ff6d0df3a88a7ade7",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/plugin/examples/hello/README.md": {
|
|
"mtime": 1784557739.5574002,
|
|
"ast_hash": "233ec8cb0190709dddaa2ee1d839d82e",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/prometheus.dev.yml": {
|
|
"mtime": 1784360728.7968504,
|
|
"ast_hash": "1d74b2df1e5b9eebeb61b8ea4f1d49b1",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/sqlc.yaml": {
|
|
"mtime": 1784451000.7663448,
|
|
"ast_hash": "2e32f0edf78e404a6a6dc681010f76bf",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/updater/server_update_public_key.txt": {
|
|
"mtime": 1784441396.1963894,
|
|
"ast_hash": "4e8a3eb35f2d3acd35079c3d2779f572",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/api.md": {
|
|
"mtime": 1787315994.613579,
|
|
"ast_hash": "b4ed3d455cca95c960e3e78be097c7cb",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/architecture/README.md": {
|
|
"mtime": 1786170197.4991794,
|
|
"ast_hash": "ce39a3635df043eade53ad676a5acc8a",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/architecture/client.md": {
|
|
"mtime": 1786170197.4991794,
|
|
"ast_hash": "51a5720165d8798df1321d23f2598d49",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/architecture/data-model.md": {
|
|
"mtime": 1786170197.5001805,
|
|
"ast_hash": "45afc254365ab35172b8de80b02372a3",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/architecture/server.md": {
|
|
"mtime": 1786170197.5001805,
|
|
"ast_hash": "b43e008b407c2158fa6fbc99dd49018b",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/architecture/system-overview.md": {
|
|
"mtime": 1786822952.309367,
|
|
"ast_hash": "7bb79d109516f650433535355458bb1e",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/architecture/ux/README.md": {
|
|
"mtime": 1786170197.5001805,
|
|
"ast_hash": "e653f69ca3ed4f79fb2f3e910bc7afeb",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/architecture/ux/channels-members-dms.md": {
|
|
"mtime": 1787315994.613579,
|
|
"ast_hash": "a90e624e50ae459826ce9de919c74393",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/architecture/ux/connection-and-auth.md": {
|
|
"mtime": 1786170197.5011806,
|
|
"ast_hash": "4c4419b843f1e3040f032675cb6d727d",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/architecture/ux/messaging.md": {
|
|
"mtime": 1786170197.5011806,
|
|
"ast_hash": "31ebac7fd0879066633b79f3b7fb82c2",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/architecture/ux/settings-and-admin.md": {
|
|
"mtime": 1786170197.5011806,
|
|
"ast_hash": "b3bdcf4dbdf6b87aa530ed445fad9d09",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/architecture/ux/voice-and-e2ee.md": {
|
|
"mtime": 1786170197.5021806,
|
|
"ast_hash": "4588c4ff9dd4952d431afa2933176792",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/architecture/voice-e2ee.md": {
|
|
"mtime": 1786170197.5021806,
|
|
"ast_hash": "fc717b29c65c641437250534daf1770d",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/architecture/websocket.md": {
|
|
"mtime": 1786170197.5021806,
|
|
"ast_hash": "fbcdd193655a8b461f4a9506a1b61a67",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/audit-2026-04-07.md": {
|
|
"mtime": 1786170197.5021806,
|
|
"ast_hash": "23590385857a7832a2145452fceb80c1",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/audit-2026-07-19.md": {
|
|
"mtime": 1786170197.5031805,
|
|
"ast_hash": "25ac2ad9aef5b74f1beabbd0d70f2f31",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/audit-2026-08-04-docs-and-coverage.md": {
|
|
"mtime": 1786170197.5031805,
|
|
"ast_hash": "72d64abd760b034e1798a1d2f1c232fe",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/audit-2026-08-04.md": {
|
|
"mtime": 1786170197.5031805,
|
|
"ast_hash": "13d31583cbc3ee4c806f9f2ff949f56c",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/audit-test-coverage-2026-07-25.md": {
|
|
"mtime": 1786170197.5041842,
|
|
"ast_hash": "80e40b3cfe2c2fb1ac63594fca4e0c1f",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/client-architecture.md": {
|
|
"mtime": 1784528512.6849573,
|
|
"ast_hash": "d27472b453a2e03e77e5c30da7315482",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/contributing.md": {
|
|
"mtime": 1786170197.5041842,
|
|
"ast_hash": "5004adec480ea50835d9c4f74d300f8a",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/credential-storage.md": {
|
|
"mtime": 1786170197.5041842,
|
|
"ast_hash": "07cf405f4c4a135d67276bc6f3331e6c",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/deployment.md": {
|
|
"mtime": 1787315994.6150818,
|
|
"ast_hash": "5f3c70a20d9702bb6d446dea3677aa11",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/livekit-setup.md": {
|
|
"mtime": 1785609966.3485713,
|
|
"ast_hash": "d8be7260d71fe4b54f72602ec715fbde",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/mcp-introspect.md": {
|
|
"mtime": 1786170197.5051816,
|
|
"ast_hash": "a25135a4de76e1c429f24fd0544bd3d6",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/plans/audit-2026-07-19-decisions.md": {
|
|
"mtime": 1786170197.5051816,
|
|
"ast_hash": "dbd20c971158a0bee9166ed297119542",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/plans/bug-detection-improvements.md": {
|
|
"mtime": 1787315994.6150818,
|
|
"ast_hash": "04b22927b528b636e441eebbe7a2e35e",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/plans/channel-visibility-unification.md": {
|
|
"mtime": 1786170197.5051816,
|
|
"ast_hash": "9fa6221f25dcff3273477bd710b2842f",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/plans/discord-parity.md": {
|
|
"mtime": 1787315994.6160855,
|
|
"ast_hash": "6daec8aa1b0a6d3bdc41e887228ece37",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/plans/http-tofu-proxy.md": {
|
|
"mtime": 1786170197.5061817,
|
|
"ast_hash": "62fecd3a36b295b14ae2f5b417b02165",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/plans/permission-middleware-consolidation.md": {
|
|
"mtime": 1786170197.5061817,
|
|
"ast_hash": "1b8104cae50e5b13e0354fd068e475a4",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/plans/security-hardening-remediation.md": {
|
|
"mtime": 1786170197.5061817,
|
|
"ast_hash": "ee9ec3cc08cf2724288a26d4c2981ca1",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/plans/security-scan-2026-07-22-remediation.md": {
|
|
"mtime": 1787315994.6160855,
|
|
"ast_hash": "e4d80833cf4a11d92f9c9c99d71fd564",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/plans/slash-commands.md": {
|
|
"mtime": 1786170197.5071836,
|
|
"ast_hash": "3612c2976e8d3cf39eacb4dfc0bf99f7",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/plans/sqlc-adoption.md": {
|
|
"mtime": 1786170197.5071836,
|
|
"ast_hash": "bce8feadabe4575bee88c04d773f1f86",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/plans/tauri-capability-narrowing.md": {
|
|
"mtime": 1786170197.5071836,
|
|
"ast_hash": "0fd64fd217554bffac1660f855434f25",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/plans/v2-dispatch-migration.md": {
|
|
"mtime": 1786170197.5071836,
|
|
"ast_hash": "21f61bd5277cd56f0dec9503987d9d55",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/port-forwarding.md": {
|
|
"mtime": 1784360728.8198516,
|
|
"ast_hash": "81de47e670cc70c1ecabac18a748dc40",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/protocol.md": {
|
|
"mtime": 1787374177.7073822,
|
|
"ast_hash": "c3707ea10c170dcc6787fa5262953687",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/quick-start.md": {
|
|
"mtime": 1786894298.5236897,
|
|
"ast_hash": "200e25fc19842e3b90f5abf81e2ae502",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/schema.md": {
|
|
"mtime": 1787315994.6160855,
|
|
"ast_hash": "d6925e6c2fae669ab67c81f7a9c3e992",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/security.md": {
|
|
"mtime": 1786170197.5091827,
|
|
"ast_hash": "ba01e2cb2043e586f137a6f75a361960",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/server-configuration.md": {
|
|
"mtime": 1787315994.6160855,
|
|
"ast_hash": "052c941290461eb4ee928901a2f4a8fa",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/tailscale.md": {
|
|
"mtime": 1786822952.3103688,
|
|
"ast_hash": "257ff9457b920e5ba4f5b341642017d4",
|
|
"semantic_hash": ""
|
|
},
|
|
"tools/mcp-introspect/README.md": {
|
|
"mtime": 1785324382.561944,
|
|
"ast_hash": "6a11a9e8c63f197954953cfa7725ba02",
|
|
"semantic_hash": ""
|
|
},
|
|
".github/images/Admin_Panel.png": {
|
|
"mtime": 1784360728.5071156,
|
|
"ast_hash": "67c0262dc7f0ae87c165825ec7160822",
|
|
"semantic_hash": ""
|
|
},
|
|
".github/images/Client.png": {
|
|
"mtime": 1784360728.5071156,
|
|
"ast_hash": "0dfdd7e7b563a835b4d71f3b31b37e09",
|
|
"semantic_hash": ""
|
|
},
|
|
".github/images/loginpage.png": {
|
|
"mtime": 1784360728.509115,
|
|
"ast_hash": "17ede8557d313810042da5a2aef7316c",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src-tauri/icons/128x128.png": {
|
|
"mtime": 1784360728.5164378,
|
|
"ast_hash": "76d0848d0d033931676bdbaa674c3180",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src-tauri/icons/128x128@2x.png": {
|
|
"mtime": 1784360728.5164378,
|
|
"ast_hash": "1980c417a1cb2090cf7b527dd5033b4a",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src-tauri/icons/32x32.png": {
|
|
"mtime": 1784360728.517441,
|
|
"ast_hash": "4194ad3d99fee4f9f097043338576470",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src-tauri/icons/icon.png": {
|
|
"mtime": 1784360728.517441,
|
|
"ast_hash": "1980c417a1cb2090cf7b527dd5033b4a",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src-tauri/icons/oc-logo.svg": {
|
|
"mtime": 1784360728.517441,
|
|
"ast_hash": "eeef790515f6908d64546e52e6f7f14e",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/assets/KLIPY Light with logo.svg": {
|
|
"mtime": 1784360728.5205014,
|
|
"ast_hash": "5c5c70c24fd470dc6483e38056b39f77",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/queries/sqlite/admin.sql": {
|
|
"mtime": 1784360728.6123993,
|
|
"ast_hash": "0feb8b53817b92a19a67943706ed54d6",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/queries/sqlite/apitokens.sql": {
|
|
"mtime": 1786170290.90299,
|
|
"ast_hash": "3754e44abb0385d30086c94d00add5f5",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/queries/sqlite/attachments.sql": {
|
|
"mtime": 1787374179.478106,
|
|
"ast_hash": "53bcc07ff1286be9d4bb81fa62bbb6f7",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/queries/sqlite/blocks.sql": {
|
|
"mtime": 1785609966.3063958,
|
|
"ast_hash": "91b2a930298d1bba199fbde8f6246d65",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/queries/sqlite/channels.sql": {
|
|
"mtime": 1785609966.3073957,
|
|
"ast_hash": "7c6df0f5a02a7d0b313e1304dd0dbc1c",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/queries/sqlite/dm.sql": {
|
|
"mtime": 1787315994.59202,
|
|
"ast_hash": "906370fca55300b79cf3d8966cec3ec9",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/queries/sqlite/emoji.sql": {
|
|
"mtime": 1785609966.3073957,
|
|
"ast_hash": "8d2dd3fecce32711c136eb49bd4bdd50",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/queries/sqlite/events.sql": {
|
|
"mtime": 1784360728.6133997,
|
|
"ast_hash": "bce3a6f3a94288ad57a6723ff73283c4",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/queries/sqlite/invites.sql": {
|
|
"mtime": 1784360728.6133997,
|
|
"ast_hash": "8455efeba4081ea27327e69f5c3d1bde",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/queries/sqlite/lockouts.sql": {
|
|
"mtime": 1784360728.6133997,
|
|
"ast_hash": "2353fce9b51ad317b74928ad3ce6a6e2",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/queries/sqlite/messages.sql": {
|
|
"mtime": 1787374179.478106,
|
|
"ast_hash": "927bbdf5e9e0ac4df6e32b5cfb9d2cab",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/queries/sqlite/plugins.sql": {
|
|
"mtime": 1784819463.2106068,
|
|
"ast_hash": "3274746b33a05b369118d3680775d479",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/queries/sqlite/profile.sql": {
|
|
"mtime": 1785609966.308393,
|
|
"ast_hash": "1af5b57a0919abfd90efe36c9d34d665",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/queries/sqlite/reactions.sql": {
|
|
"mtime": 1785609966.308393,
|
|
"ast_hash": "92b9336d57a0d2f56d81cafe422a1393",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/queries/sqlite/roles.sql": {
|
|
"mtime": 1785609966.308393,
|
|
"ast_hash": "1683b499a640135e7e7b689de19b3171",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/queries/sqlite/sessions.sql": {
|
|
"mtime": 1786822952.2923195,
|
|
"ast_hash": "94d3970ea02173a876ac047b1b71745a",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/queries/sqlite/users.sql": {
|
|
"mtime": 1787374179.478106,
|
|
"ast_hash": "28943615e0f0a5b8f0e0e5bdb4eb7d8c",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/queries/sqlite/voice.sql": {
|
|
"mtime": 1787374177.695382,
|
|
"ast_hash": "fedf744977ca440acc54df7fb7b519b1",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/migrations/001_initial_schema.sql": {
|
|
"mtime": 1784360728.617402,
|
|
"ast_hash": "fda010abe8f16f311e1bcdc0e204d71e",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/migrations/002_voice_states.sql": {
|
|
"mtime": 1784360728.617402,
|
|
"ast_hash": "f9b2013e25d85ed73091954030bd0b3f",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/migrations/003_audit_log.sql": {
|
|
"mtime": 1784360728.6183994,
|
|
"ast_hash": "838b0ddafdbcdc253d7cd093f98a8392",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/migrations/004_voice_optimization.sql": {
|
|
"mtime": 1784360728.6183994,
|
|
"ast_hash": "1c5f3e1d47a8a5c128a8148b97b4d8a0",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/migrations/005_fix_member_permissions.sql": {
|
|
"mtime": 1784360728.6183994,
|
|
"ast_hash": "6ed0914371f810048331e311f34ca349",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/migrations/006_channel_overrides_index.sql": {
|
|
"mtime": 1784360728.6183994,
|
|
"ast_hash": "27830c1180c0146bd3014d5a778418ef",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/migrations/007_member_video_permissions.sql": {
|
|
"mtime": 1784360728.6183994,
|
|
"ast_hash": "33e77e8be68f641d1aae4aa1a9478387",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/migrations/008_attachment_dimensions.sql": {
|
|
"mtime": 1784360728.6183994,
|
|
"ast_hash": "fa45fd6a8ba1269fbbcd841232709764",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/migrations/009_dm_tables.sql": {
|
|
"mtime": 1784360728.6194005,
|
|
"ast_hash": "683de6fc29cf731d626a2d35f42eea9d",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/migrations/010_attachment_uploader.sql": {
|
|
"mtime": 1784360728.6194005,
|
|
"ast_hash": "5dea55e0e6681b204ad148d5aa471c78",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/migrations/011_rate_lockouts.sql": {
|
|
"mtime": 1784360728.6194005,
|
|
"ast_hash": "4c74fed8d4e1fb36c1c99cbcfda60796",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/migrations/012_user_blocks.sql": {
|
|
"mtime": 1784360728.6194005,
|
|
"ast_hash": "5b6aec303e3233c8b5d05359327dfedd",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/migrations/013_channel_type_constraint.sql": {
|
|
"mtime": 1784360728.6194005,
|
|
"ast_hash": "1210f4ac3c0a262d76d9c238f85350eb",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/migrations/014_events_table.sql": {
|
|
"mtime": 1784360728.6194005,
|
|
"ast_hash": "36e18358203e9dac15ec5bd70ad8a889",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/migrations/015_plugins.sql": {
|
|
"mtime": 1784360728.6194005,
|
|
"ast_hash": "47d9a11a63c2f41a90f47a9f2b016880",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/migrations/016_announcement_channel_type.sql": {
|
|
"mtime": 1784528512.6699555,
|
|
"ast_hash": "f77802b869f16cfc3783c8647d8d7d97",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/migrations/017_user_identity_key.sql": {
|
|
"mtime": 1784885890.2733488,
|
|
"ast_hash": "bcdf68998082e62cad014fba888ce8b2",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/migrations/018_api_tokens.sql": {
|
|
"mtime": 1785324382.5564365,
|
|
"ast_hash": "a42c8fe8105137f5df4e1459af7c8ffd",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/migrations/019_perf_indexes.sql": {
|
|
"mtime": 1785609966.3123946,
|
|
"ast_hash": "302a14748b5e22928115d66b46104e7d",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/migrations/020_drop_redundant_indexes.sql": {
|
|
"mtime": 1785609966.3123946,
|
|
"ast_hash": "2c45023ecf14ae87a75909e3b64df47d",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/migrations/021_voice_server_moderation.sql": {
|
|
"mtime": 1785609966.3123946,
|
|
"ast_hash": "9cf02bc0e98e20aa9c48452035de806c",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/migrations/022_message_mentions.sql": {
|
|
"mtime": 1785609966.3123946,
|
|
"ast_hash": "f259e8e062c8da08db78dcf0e32a4ec6",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/migrations/023_role_management.sql": {
|
|
"mtime": 1785609966.3123946,
|
|
"ast_hash": "80917c6dc6e6ef4cf86631079bd00cfb",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/migrations/024_channel_user_overrides.sql": {
|
|
"mtime": 1785609966.3134277,
|
|
"ast_hash": "e798a7a117f624d162648a203c8417ab",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/migrations/025_channel_nsfw.sql": {
|
|
"mtime": 1785609966.3134277,
|
|
"ast_hash": "0f2ad4a767965300143b7c0b2a99c1a1",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/migrations/026_emoji_mime.sql": {
|
|
"mtime": 1785609966.3134277,
|
|
"ast_hash": "80482d2d91b39462d033ff55ae2c7425",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/migrations/027_user_profile_fields.sql": {
|
|
"mtime": 1785609966.3134277,
|
|
"ast_hash": "9b97fc517702c6c6c2808eb4de699565",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/migrations/028_group_dms.sql": {
|
|
"mtime": 1785609966.3134277,
|
|
"ast_hash": "97ccb814d00655ec59e5bdd2b4556e51",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/migrations/029_drop_sounds_table.sql": {
|
|
"mtime": 1786170197.4766715,
|
|
"ast_hash": "229412c59907dd80e1e7255acb505cd1",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/migrations/030_attachments_unlink_on_message_delete.sql": {
|
|
"mtime": 1786170290.90399,
|
|
"ast_hash": "4a26640258a95a45f866277c8e9edf24",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/dm_handler_visibility_ctx_test.go": {
|
|
"mtime": 1786694919.073493,
|
|
"ast_hash": "64b022be8c871902b348f36e122b21a9",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/gif_handler_internal_test.go": {
|
|
"mtime": 1786711816.4504263,
|
|
"ast_hash": "1c4f55c476c29b4cb99fd453c09baf32",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/router_delete_account_broadcast_test.go": {
|
|
"mtime": 1786711816.452042,
|
|
"ast_hash": "351abacccc3a6c12e5aebd9736650f56",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/main_test.go": {
|
|
"mtime": 1787315994.5950198,
|
|
"ast_hash": "6ab52ce1a82d172b78ea1db7a7f197c6",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/plugin/host_commands_race_test.go": {
|
|
"mtime": 1786694919.077633,
|
|
"ast_hash": "def2136c72b124de4ab7a50f885236df",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/plugin/registry_upgrade_default_test.go": {
|
|
"mtime": 1786694919.0780015,
|
|
"ast_hash": "7941dcc45d6927e0e0767920ff0fd9b0",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/service/message_crud_test.go": {
|
|
"mtime": 1786716968.8772302,
|
|
"ast_hash": "42618d051bac459731faae0c0d0be0aa",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/service/message_reactions_test.go": {
|
|
"mtime": 1786722299.6061025,
|
|
"ast_hash": "0980824f8cc044506cc2e4ff89be4c01",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/handler_focus_revoke_race_test.go": {
|
|
"mtime": 1787374177.702382,
|
|
"ast_hash": "7a06ebbbdeeb20969b756f8b07227af9",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/handlers_chat_fallback_test.go": {
|
|
"mtime": 1786694919.0815072,
|
|
"ast_hash": "18f92b91a184e41e2c52d3e01206bc36",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/serve_ready_own_voice_test.go": {
|
|
"mtime": 1786694919.0840168,
|
|
"ast_hash": "6096abc67507f595ff5de12a64d1f501",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/serve_reconnect_double_teardown_test.go": {
|
|
"mtime": 1786822952.3068633,
|
|
"ast_hash": "0c3fda87992812d7bf88fe1417e347fa",
|
|
"semantic_hash": ""
|
|
},
|
|
".claude/skills/task-observer/SKILL.md": {
|
|
"mtime": 1786694919.051983,
|
|
"ast_hash": "366ed55719bdacd4df80857ccd63a893",
|
|
"semantic_hash": ""
|
|
},
|
|
".claude/skills/task-observer/references/environments.md": {
|
|
"mtime": 1786694919.051983,
|
|
"ast_hash": "8a0a65cbaca9a4d81295fc0d910a3932",
|
|
"semantic_hash": ""
|
|
},
|
|
".claude/skills/task-observer/references/skill-authoring.md": {
|
|
"mtime": 1786694919.0529828,
|
|
"ast_hash": "8a97c8fa206114c47de8192504000a1a",
|
|
"semantic_hash": ""
|
|
},
|
|
".claude/skills/task-observer/references/weekly-review.md": {
|
|
"mtime": 1786694919.0529828,
|
|
"ast_hash": "53c0ebe5a3f35b1c6b8fdc7f5a9c3300",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/presence.ts": {
|
|
"mtime": 1787315994.549853,
|
|
"ast_hash": "974e14b73fb539843dc1d1c46f23543e",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/appearance-high-contrast.test.ts": {
|
|
"mtime": 1786716968.8721774,
|
|
"ast_hash": "7706ff96a342ff1ea8826c2ba752b31c",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/auth-store.test.ts": {
|
|
"mtime": 1786722299.264578,
|
|
"ast_hash": "470604f241a27dcfa246abc510efe305",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/base-font-size-css.test.ts": {
|
|
"mtime": 1786716968.8721774,
|
|
"ast_hash": "7a9d38f65c2eb03f00b6edaf4a1fa781",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/login-form-totp-retry.test.ts": {
|
|
"mtime": 1786718132.7723181,
|
|
"ast_hash": "8606308e6534ab66811c19926ec09486",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/login-form-totp-success-latch.test.ts": {
|
|
"mtime": 1786822952.2722626,
|
|
"ast_hash": "f3653873aa7288ba1a39045da51d7a48",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/main.test.ts": {
|
|
"mtime": 1787315994.565848,
|
|
"ast_hash": "6a6d93210240ca4752da7e71bd4d944d",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/message-list-optimistic-height-key.test.ts": {
|
|
"mtime": 1786822952.2732627,
|
|
"ast_hash": "7cd4a22aba03e63032a5bb6eed915c6e",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/tauri-conf-webview2-args.test.ts": {
|
|
"mtime": 1786722300.001337,
|
|
"ast_hash": "1bb60889803399b35043943bd34a17c1",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/video-grid-track-muted-css.test.ts": {
|
|
"mtime": 1786722299.7891116,
|
|
"ast_hash": "650133adabde31af4b301415d333662e",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/backup_maintenance.go": {
|
|
"mtime": 1786822952.2767713,
|
|
"ast_hash": "a1ca1b05a39a7bfaedeedf65740782ed",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/backup_maintenance_test.go": {
|
|
"mtime": 1786822952.2767713,
|
|
"ast_hash": "8120a72fce6f764a23ef35b3bc1e1ed5",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/handlers_users_atomic_test.go": {
|
|
"mtime": 1786822952.2797842,
|
|
"ast_hash": "73d4f770bc94b60364d1a445986d97f1",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/setup_limiter_reap_test.go": {
|
|
"mtime": 1786722299.7440948,
|
|
"ast_hash": "11c36c78133fe27e4ef539cd23a1552d",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/dm_handler_rename_participant_lookup_test.go": {
|
|
"mtime": 1786822952.2833006,
|
|
"ast_hash": "d95a6962b358103597ccbab1862eaad3",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/filestore.go": {
|
|
"mtime": 1786822952.2833006,
|
|
"ast_hash": "c767c4e9a595a69249b77dfbdc4919d8",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/health_test.go": {
|
|
"mtime": 1786822952.2833006,
|
|
"ast_hash": "6f162891d88c8da1dbf4a775e4d64cd9",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/router_livekit_process_test.go": {
|
|
"mtime": 1786822952.2848105,
|
|
"ast_hash": "7d9150dbdb6d001402dc09efbaf691a4",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/router_totp_key_fatal_test.go": {
|
|
"mtime": 1786822952.2848105,
|
|
"ast_hash": "d8ad132b7a85226044c4c253b0163961",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/auth/ratelimit_persist_test.go": {
|
|
"mtime": 1787315994.58751,
|
|
"ast_hash": "eff5e95d728a0273f20b6592fc8d4d68",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/config/unknown_keys_test.go": {
|
|
"mtime": 1786822952.2858152,
|
|
"ast_hash": "b7d8d3f20582d90b8181a20da2db3268",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/lockfile.go": {
|
|
"mtime": 1787315994.5900135,
|
|
"ast_hash": "8e66ee9bb1af952720899a83a74f18ec",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/lockfile_other.go": {
|
|
"mtime": 1786822952.2903197,
|
|
"ast_hash": "5d2de3d8845bedc3bfa0a0532ac937f5",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/lockfile_test.go": {
|
|
"mtime": 1786822952.2903197,
|
|
"ast_hash": "136243b0c7aa7cc35502cc81a34c0720",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/lockfile_unix.go": {
|
|
"mtime": 1786822952.2903197,
|
|
"ast_hash": "4772b490905bf535d6670ca11ff0739d",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/lockfile_windows.go": {
|
|
"mtime": 1786822952.2903197,
|
|
"ast_hash": "09ecae36a7e5b65a65422943a23e5cf7",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/open_shared_test.go": {
|
|
"mtime": 1786822952.2913198,
|
|
"ast_hash": "5a12bc60ba71ffd42bc1f939be7a8b10",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/session_expiry_test.go": {
|
|
"mtime": 1787315994.59202,
|
|
"ast_hash": "06f98de06fd6939dffa9bbb5fb29217b",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/sql_router_test.go": {
|
|
"mtime": 1786822952.2928233,
|
|
"ast_hash": "c145e2daa623fe85ab86d3edc37115ed",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/diskutil/diskutil.go": {
|
|
"mtime": 1786822952.2938256,
|
|
"ast_hash": "16d8ffb142205ac1702c141796670429",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/diskutil/free_other.go": {
|
|
"mtime": 1786822952.2938256,
|
|
"ast_hash": "163e7efe5e60c33ea936592c5a200114",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/diskutil/free_unix.go": {
|
|
"mtime": 1786822952.2938256,
|
|
"ast_hash": "5e38871e3842899b5203b315db084da2",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/diskutil/free_windows.go": {
|
|
"mtime": 1786822952.2938256,
|
|
"ast_hash": "8155a57a59894b5b4f6f5a4319f351a2",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/migrations/031_sessions_expiry_index.sql": {
|
|
"mtime": 1786822952.2958245,
|
|
"ast_hash": "9d70338e795308a6a92cc21b3f60797b",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/service/channel_focus_writeskip_test.go": {
|
|
"mtime": 1786822952.2958245,
|
|
"ast_hash": "0ab71f1d7959ae58f104b3c9cdd7b18f",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/service/message_perms_test.go": {
|
|
"mtime": 1786722299.9202008,
|
|
"ast_hash": "34694038e78de27c66ea822ccfc73f60",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/service/permission_stats_test.go": {
|
|
"mtime": 1786822952.2983303,
|
|
"ast_hash": "c3feac4f31cb7923436ef3236cc2271f",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/storage/errio_test.go": {
|
|
"mtime": 1786822952.2983303,
|
|
"ast_hash": "31b9f1edc7b957d6966ba62deae709bf",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/updater/release_singleflight_test.go": {
|
|
"mtime": 1786723144.1260204,
|
|
"ast_hash": "f9559662393a38efc4846828794b2603",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/conn_cap_test.go": {
|
|
"mtime": 1786822952.2993531,
|
|
"ast_hash": "e97d6e39164a2d646a6cbcf91457eadd",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/emit_presence_priority_test.go": {
|
|
"mtime": 1786822952.2993531,
|
|
"ast_hash": "4b1231f638637f633bb3c50a370ab832",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/event_presence_test.go": {
|
|
"mtime": 1786822952.3003566,
|
|
"ast_hash": "bb18837449e886b54ea64d44ace44b04",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/graceful_stop_ctx_test.go": {
|
|
"mtime": 1786822952.3013568,
|
|
"ast_hash": "cba3b5adfb63fc769d0d182c45eb199a",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/hub_refresh_visibility_race_test.go": {
|
|
"mtime": 1786822952.3023574,
|
|
"ast_hash": "339747368303c004b4525157c40c3c2d",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/hub_sweep_oc_findings_test.go": {
|
|
"mtime": 1787315994.6055317,
|
|
"ast_hash": "e891a6d377a920c6ff72c1cc507fcab3",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/observability_test.go": {
|
|
"mtime": 1786822952.303357,
|
|
"ast_hash": "f928e611dd70c60ad19c2743883839d8",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/oc_0023_screenshare_video_limit_test.go": {
|
|
"mtime": 1786822952.3043568,
|
|
"ast_hash": "64ac371cabd2f0ec44991866adf0ab9d",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/presence_coalesce_drop_test.go": {
|
|
"mtime": 1786822952.3043568,
|
|
"ast_hash": "626cb3700cf433d7a535c9c30112fdeb",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/presence_coalesce_test.go": {
|
|
"mtime": 1786822952.3043568,
|
|
"ast_hash": "587e5148694ed251ed5f6b3e9ea1a642",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/reconnect_interior_gap_test.go": {
|
|
"mtime": 1786822952.3048604,
|
|
"ast_hash": "2a4ac8b7ae9fe77778f0398da43e6f34",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/reconnect_visibility_race_test.go": {
|
|
"mtime": 1786822952.3058617,
|
|
"ast_hash": "50622666ff5f2b4bde63daad952f9b47",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/serve_pumps_reconnect_race_test.go": {
|
|
"mtime": 1786716968.8797328,
|
|
"ast_hash": "0884a5a02e784501a837423a174e94e9",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/serve_ready_error_propagation_test.go": {
|
|
"mtime": 1786716968.8807368,
|
|
"ast_hash": "b7f4b073615418935e51f63e2dc5cff8",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/voice_join_token_race_test.go": {
|
|
"mtime": 1786822952.3083656,
|
|
"ast_hash": "46d2eeb24bba32ce96bd83232005d5c2",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/voice_moderation_deafen_race_test.go": {
|
|
"mtime": 1786822952.3083656,
|
|
"ast_hash": "61dc5eabc3f2e3a371c37b063f6a9bd9",
|
|
"semantic_hash": ""
|
|
},
|
|
".github/workflows/load-baseline.yml": {
|
|
"mtime": 1786822952.2612462,
|
|
"ast_hash": "f63e4b27d0ab57c00ad038b8dd8aef1f",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/plans/infrastructure-roadmap.md": {
|
|
"mtime": 1786822952.3103688,
|
|
"ast_hash": "94066cffdbca5d92b0220381357fff97",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src-tauri/capabilities/default.json": {
|
|
"mtime": 1786272933.6755219,
|
|
"ast_hash": "72fd589daf6497717ac840ef00c9660f",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/plugin/examples/hello/plugin.json": {
|
|
"mtime": 1784557739.5584006,
|
|
"ast_hash": "bdf9b835ac2e05602839d0ceb9a9b6d0",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/protocol-schema.json": {
|
|
"mtime": 1786170197.508181,
|
|
"ast_hash": "98858de1d31ba62f7d0b036816f97123",
|
|
"semantic_hash": ""
|
|
},
|
|
".superpowers/render-ledger.mjs": {
|
|
"mtime": 1787315994.518129,
|
|
"ast_hash": "3d5c3ebe9d7f033462f07a0e14e3916e",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/scripts/docker-smoke.sh": {
|
|
"mtime": 1786894298.5156758,
|
|
"ast_hash": "d8865e6f64a34c5bafb61e56d478b588",
|
|
"semantic_hash": ""
|
|
},
|
|
".superpowers/FINDINGS.md": {
|
|
"mtime": 1787475158.2190628,
|
|
"ast_hash": "d1b13603c1f0508cccaf267111916d1c",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src-tauri/tauri.conf.json": {
|
|
"mtime": 1786894298.5036547,
|
|
"ast_hash": "f05bbc86946be8157b818eb83315c87f",
|
|
"semantic_hash": ""
|
|
},
|
|
".superpowers/findings-ledger.json": {
|
|
"mtime": 1787475158.2240584,
|
|
"ast_hash": "a375ce7a17d27b0056c17a85b67faa9e",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/src/lib/hostValidation.ts": {
|
|
"mtime": 1787315994.5483117,
|
|
"ast_hash": "f901a59a6a6cf99d1b0b70b2a9136ddc",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/types/jsdom.d.ts": {
|
|
"mtime": 1787315994.5575886,
|
|
"ast_hash": "5dfaa7f07a51a030a949005a9a5b4315",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/admin-static-channel-perms.test.ts": {
|
|
"mtime": 1787315994.558626,
|
|
"ast_hash": "aa429b5e82dc759731500e136716abb3",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/components/TypingIndicator.test.ts": {
|
|
"mtime": 1787315994.5606904,
|
|
"ast_hash": "8b719d503c4fc8ba91e60e01e2c0c4d7",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/host-validation.test.ts": {
|
|
"mtime": 1787315994.5637898,
|
|
"ast_hash": "bc2af4556995e07f441731dfbf6db250",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/msg-actions-bar-focus-css.test.ts": {
|
|
"mtime": 1787315994.5679474,
|
|
"ast_hash": "10836f188624f2c93935b444576500f4",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/presence-sender.test.ts": {
|
|
"mtime": 1787315994.5684674,
|
|
"ast_hash": "bec8abb89882d58ad4398d8e0ed4a445",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/reactions-keyboard.test.ts": {
|
|
"mtime": 1787315994.5694892,
|
|
"ast_hash": "16b964aa49bea3be48a50971e21f2518",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/addrinuse.go": {
|
|
"mtime": 1787315994.5750003,
|
|
"ast_hash": "3770113b2e6291f4b6884fdb454298ca",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/addrinuse_test.go": {
|
|
"mtime": 1787315994.5750003,
|
|
"ast_hash": "04121cde1355b095be4291923be422ff",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/addrinuse_unix.go": {
|
|
"mtime": 1787315994.5760002,
|
|
"ast_hash": "baab1fee65fdf7bce40cc8c3701f54b3",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/addrinuse_windows.go": {
|
|
"mtime": 1787315994.5760002,
|
|
"ast_hash": "b39ed0fcb588d116a611805b84e0d6c8",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/hub_wiring_test.go": {
|
|
"mtime": 1787315994.578,
|
|
"ast_hash": "f3d21ee31f23159db7d527a4e131d0ab",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/restart.go": {
|
|
"mtime": 1787315994.5795033,
|
|
"ast_hash": "e6e3a91caaa11ad77c1188b1cfb23fc2",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/restart_guard_test.go": {
|
|
"mtime": 1787315994.5795033,
|
|
"ast_hash": "04ea712036ea33fb31b0b34116a67b9e",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/auth/totp_encrypt_test.go": {
|
|
"mtime": 1787315994.58751,
|
|
"ast_hash": "c133e8d4fd84eade5bf48a6abd65d541",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/oc_0081_video_cap_own_row_test.go": {
|
|
"mtime": 1787315994.5910168,
|
|
"ast_hash": "d80093257aa106df473018b5a542e7d3",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/invariants/invariants.go": {
|
|
"mtime": 1787315994.5930202,
|
|
"ast_hash": "b930c430aaf6e8808a61dc14bc202b6c",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/invariants/invariants_test.go": {
|
|
"mtime": 1787315994.59402,
|
|
"ast_hash": "e49e675f6ab20df485b9fc3982d7199b",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/invariants/syncutil_locks.go": {
|
|
"mtime": 1787315994.59402,
|
|
"ast_hash": "c6f29dc7f72537f45b057c1d380d1815",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/invariants/syncutil_locks_test.go": {
|
|
"mtime": 1787315994.59402,
|
|
"ast_hash": "ed36c95dc02699299d69838ff7fe315c",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/listen_retry.go": {
|
|
"mtime": 1787315994.59402,
|
|
"ast_hash": "dd6282eaa38edbfb1f6b6171e745a068",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/restart.go": {
|
|
"mtime": 1787315994.5970194,
|
|
"ast_hash": "221d45f86d2919acfcb423cb68705bcb",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/restart_test.go": {
|
|
"mtime": 1787315994.5970194,
|
|
"ast_hash": "e6d5da02a1dd2bbdadda6237da9d5171",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/updater/supervisor.go": {
|
|
"mtime": 1787315994.6005266,
|
|
"ast_hash": "6864be0c783637b816d0a3367c8d3385",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/updater/supervisor_test.go": {
|
|
"mtime": 1787315994.6005266,
|
|
"ast_hash": "865f24d474e8abf344fced235c601dfd",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/emit_presence_others_priority_test.go": {
|
|
"mtime": 1787315994.6015265,
|
|
"ast_hash": "c33be9a9300f3ca57e79bf2474206dae",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/emit_presence_self_priority_test.go": {
|
|
"mtime": 1787315994.6015265,
|
|
"ast_hash": "a4cfdd5cd1286e4508cf04e41138df50",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/handlers_command_gate_test.go": {
|
|
"mtime": 1787315994.6035266,
|
|
"ast_hash": "72eb3cbd4f263f1ca0175326a039aa7c",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/livekit_procattr_linux.go": {
|
|
"mtime": 1787315994.6055317,
|
|
"ast_hash": "d80f07de7c6abf501e323ebf82e09138",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/livekit_procattr_linux_test.go": {
|
|
"mtime": 1787315994.6055317,
|
|
"ast_hash": "d2a4641107103f21f089fc74455882d8",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/livekit_procattr_other.go": {
|
|
"mtime": 1787315994.6055317,
|
|
"ast_hash": "22f0fab9cf1806c7b6c5fb37df9c559b",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/oc_0006_video_stream_count_test.go": {
|
|
"mtime": 1787315994.6070616,
|
|
"ast_hash": "b7488b490a64b6f444a22d813fad8ac1",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/oc_0012_cleanup_keyholder_test.go": {
|
|
"mtime": 1787315994.6070616,
|
|
"ast_hash": "c26144c9be7ce4fe0e7827cde0853ab1",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/oc_0058_member_unban_broadcast_test.go": {
|
|
"mtime": 1787315994.6070616,
|
|
"ast_hash": "06f085b4aed9a0b7ab938faa686eab2f",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/oc_0090_deleted_channel_audience_test.go": {
|
|
"mtime": 1787315994.6080654,
|
|
"ast_hash": "20cd8832ba3be87be91fa89e3f1423da",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/oc_0172_voice_join_getchannelvoicestates_error_test.go": {
|
|
"mtime": 1787315994.6080654,
|
|
"ast_hash": "68ca27c50e5b9687ed0f79ce5f1b37f8",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/presence_coalesce_flush_race_test.go": {
|
|
"mtime": 1787315994.6080654,
|
|
"ast_hash": "da0ed96ee90f1af9564ba249492ec59f",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/reconnect_fallback_channel_leak_test.go": {
|
|
"mtime": 1787315994.6095686,
|
|
"ast_hash": "abe4689e64d3b80a46dacfd72ac16f58",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/serve_handshake_write_deadline_test.go": {
|
|
"mtime": 1787315994.6105726,
|
|
"ast_hash": "3849f661be6b1f9e5a4e7caeb6bdf2aa",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/serve_ready_dm_status_test.go": {
|
|
"mtime": 1787315994.6105726,
|
|
"ast_hash": "c14ce3084f8743a91fc8e58324485be1",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/voice_rate_limits_test.go": {
|
|
"mtime": 1787315994.6125793,
|
|
"ast_hash": "83f610aa9d9393c2937bc35feaaee175",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/audit-test-coverage-2026-08-19.md": {
|
|
"mtime": 1787315994.6150818,
|
|
"ast_hash": "4ac7efc93eeacb9052586f9f47601cfa",
|
|
"semantic_hash": ""
|
|
},
|
|
".claude/settings.json": {
|
|
"mtime": 1787315994.513591,
|
|
"ast_hash": "738882db20f8c5b64daeaa6ed3e72975",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/AccessibilityTab.test.ts": {
|
|
"mtime": 1787374278.2401989,
|
|
"ast_hash": "c03ecc3605c42b686158540d7aa905dd",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/audio-pipeline-vad-worklet-teardown.test.ts": {
|
|
"mtime": 1787374278.241701,
|
|
"ast_hash": "cfd7c25afd5366583bace4eee5fba799",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/vad-worklet-timing.test.ts": {
|
|
"mtime": 1787315994.571493,
|
|
"ast_hash": "94a256d1b869f1509c474adc9e22b0dc",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/middleware_db_error_test.go": {
|
|
"mtime": 1787315994.5795033,
|
|
"ast_hash": "6dad7abc96766f6d4e4bf53804d95580",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/dm_handler_block_context_test.go": {
|
|
"mtime": 1787315994.5835106,
|
|
"ast_hash": "a6203183acd5e6f48ecec758617dc955",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/dm_handler_create_notify_test.go": {
|
|
"mtime": 1787315994.5835106,
|
|
"ast_hash": "dea04ddf1759852fb5e8af98b68a2001",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/oc_0211_session_recheck_dberr_test.go": {
|
|
"mtime": 1787315994.6080654,
|
|
"ast_hash": "7fe348c41c34dcb64ab0517f7259384b",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/oc_0219_voice_join_rollback_unsubscribe_test.go": {
|
|
"mtime": 1787315994.6080654,
|
|
"ast_hash": "c30e765b28f5c05078583a759bcfbe2a",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/oc_0222_reconnect_status_order_test.go": {
|
|
"mtime": 1787315994.6080654,
|
|
"ast_hash": "2aae775dad0f868cef9a1d2cd2c16f1a",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/oc_0237_service_error_internal_test.go": {
|
|
"mtime": 1787315994.6080654,
|
|
"ast_hash": "daef1bb7b7fa2c4bb583e63376f9b295",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/role_reassign_handshake_test.go": {
|
|
"mtime": 1787315994.6095686,
|
|
"ast_hash": "3307643d41b1769296187dfbc77e7eee",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/audit-2026-08-19.md": {
|
|
"mtime": 1787315994.613579,
|
|
"ast_hash": "f727af4066fe601abbb91b6f37b69640",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/plans/audit-2026-08-19-remediation.md": {
|
|
"mtime": 1787681881.467493,
|
|
"ast_hash": "d195e5f29ce1da5cf819ed9bf11daa84",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/attachments-ipv6-host.test.ts": {
|
|
"mtime": 1787374177.6853833,
|
|
"ast_hash": "f154045dc28b3a089177665a7e3c1820",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/message-list-prepend-scroll-anchor.test.ts": {
|
|
"mtime": 1787374177.6873834,
|
|
"ast_hash": "6fb6edf61de79c35b40280244ac4ccc0",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/setup_clientip.go": {
|
|
"mtime": 1787374177.690382,
|
|
"ast_hash": "5492d5547427cd9dce1ccf52560c9677",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/setup_clientip_test.go": {
|
|
"mtime": 1787374177.690382,
|
|
"ast_hash": "59247ee2a6bed7d771e7d5c9a4ec3aef",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/admin/setup_owner_orphan_test.go": {
|
|
"mtime": 1787374177.691382,
|
|
"ast_hash": "ba72cd5f0cba9395fe55c86cc734102d",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/plugin/registry_enable_race_test.go": {
|
|
"mtime": 1787374177.6973832,
|
|
"ast_hash": "ce32cf9cda9a0247cc0008ea6bcc2e66",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/plugin/registry_zip_rollback_test.go": {
|
|
"mtime": 1787374177.6973832,
|
|
"ast_hash": "373db9fa6c10989c45f3eec666c2f01a",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/service/user_postcommit_ctx_test.go": {
|
|
"mtime": 1787374177.6993833,
|
|
"ast_hash": "7c28c674abc4444bcfe5940daec4f933",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/emit_typing_dm_priority_test.go": {
|
|
"mtime": 1787374177.7013826,
|
|
"ast_hash": "650896bcd7b9f4bfcbe41f218e74a488",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/oc_0252_0269_0272_test.go": {
|
|
"mtime": 1787374177.7053838,
|
|
"ast_hash": "f27602f0790bad807917eac07fc3de2c",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/oc_0267_voice_join_rollback_leaver_test.go": {
|
|
"mtime": 1787374177.7053838,
|
|
"ast_hash": "4c753aa69966f88bc6450ac97e0b1126",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/oc_0270_voice_join_resume_incomplete_test.go": {
|
|
"mtime": 1787374177.7053838,
|
|
"ast_hash": "af8d61670889c9ed964a91fc287f768f",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/message-list-row-listener-leak.test.ts": {
|
|
"mtime": 1787374179.4685955,
|
|
"ast_hash": "5a6ad4f2c6453b661ba53226eb3d6d4a",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/unit/noise-suppression-restart.test.ts": {
|
|
"mtime": 1787677273.8526669,
|
|
"ast_hash": "24adbd03c9de64abe3df0869698d5390",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/api/dm_handler_presence_test.go": {
|
|
"mtime": 1787374179.4731069,
|
|
"ast_hash": "178405d2e1d4d16802da5770d55f5d7c",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/attachment_orphan_softdelete_test.go": {
|
|
"mtime": 1787374179.475106,
|
|
"ast_hash": "3cbbecabbbd1340d16d7dd8e1b8e4236",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/db/count_users_without_totp_test.go": {
|
|
"mtime": 1787374179.475106,
|
|
"ast_hash": "29f7f399ca28093db2df42593323495f",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/service/user_postcommit_readerror_test.go": {
|
|
"mtime": 1787374179.4806495,
|
|
"ast_hash": "7379c1e2e4b45b45c73705d4b7c82b64",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/oc_0276_voice_e2ee_resync_test.go": {
|
|
"mtime": 1787374179.4826498,
|
|
"ast_hash": "a4e52cf534ee47dd07334be6cf356bbd",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/oc_0298_apply_connect_status_test.go": {
|
|
"mtime": 1787374179.4826498,
|
|
"ast_hash": "23db976267460cf30cfd022750b7033e",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/oc_0299_refresh_snapshot_role_test.go": {
|
|
"mtime": 1787374179.4826498,
|
|
"ast_hash": "4efd22a44b2dfb1536903a863dfb99ce",
|
|
"semantic_hash": ""
|
|
},
|
|
"Server/ws/oc_0302_pending_mod_flags_transfer_test.go": {
|
|
"mtime": 1787374179.4826498,
|
|
"ast_hash": "a5fb5a398f57ae453e1a778447c08097",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/.claude/settings.local.json": {
|
|
"mtime": 1787679067.8054585,
|
|
"ast_hash": "2173c4505a11b9c6e4c16b7c9bb6b7c6",
|
|
"semantic_hash": ""
|
|
},
|
|
"Client/tauri-client/tests/e2e/global-teardown.ts": {
|
|
"mtime": 1787680865.5704248,
|
|
"ast_hash": "68f60f8ff871057aee63f8e813f254e1",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/plans/b0-dev-branch-protection.sh": {
|
|
"mtime": 1787681445.4251657,
|
|
"ast_hash": "fa5fc5fa5c7f031681283d63cdf07470",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/audit-2026-08-23-repository-health.md": {
|
|
"mtime": 1787494372.0207314,
|
|
"ast_hash": "424f7648e41f710a015d99c6c5c049d8",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/audit-2026-08-23-repository-layout.md": {
|
|
"mtime": 1787494273.40985,
|
|
"ast_hash": "4b36fce2100ea3cd57fe81f616b2fbfe",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/plans/b0-baseline-2026-08-25.md": {
|
|
"mtime": 1787682500.136333,
|
|
"ast_hash": "d51567658e0bd27bc8265d3464d03216",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/plans/beta-product-requirements-2026-08-23.md": {
|
|
"mtime": 1787494273.3761857,
|
|
"ast_hash": "30d40fa62d41c9ef8a3e29598a87d7aa",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/plans/beta-requirements-traceability-2026-08-23.md": {
|
|
"mtime": 1787494273.594238,
|
|
"ast_hash": "aa9e767f7ac04b2990839b55ca3b358b",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/plans/repo-health-issue-register-2026-08-23.md": {
|
|
"mtime": 1787494273.477049,
|
|
"ast_hash": "8eb081fa6b652a1d888aaac433b629d6",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/plans/repo-health-roadmap-2026-08-23.md": {
|
|
"mtime": 1787494273.5659218,
|
|
"ast_hash": "654c5dd6e06767af7cd3a4b5f8d335f5",
|
|
"semantic_hash": ""
|
|
},
|
|
"docs/plans/README.md": {
|
|
"mtime": 1787681873.978382,
|
|
"ast_hash": "2ccde857b78f53592c50cdad51f456fb",
|
|
"semantic_hash": ""
|
|
}
|
|
} |