Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
920674b
feat(game001): add V5 protocol evidence and contamination foundation
DTALEX66 Jul 12, 2026
c2a221b
feat(game001): replace baked-HUD art and integrate night-shift music
DTALEX66 Jul 12, 2026
0359d54
chore: remove unused assets and document project cleanup
DTALEX66 Jul 12, 2026
638aa80
chore(android): stop tracking reproducible staging assets
DTALEX66 Jul 12, 2026
d2ba171
fix(game001): show complete elevator CCTV frame
DTALEX66 Jul 12, 2026
31c8a7e
fix(game001): fit CCTV art into the fixed monitor viewport
DTALEX66 Jul 12, 2026
d603ff2
docs(game001): audit V5 night protocol baseline
DTALEX66 Jul 12, 2026
8efcfb3
feat(game001): add investigation tools
DTALEX66 Jul 12, 2026
375491a
feat(game001): add identity verification
DTALEX66 Jul 12, 2026
6827d97
feat(game001): add event chains
DTALEX66 Jul 12, 2026
2cd61d7
feat(game001): add V5 investigation content
DTALEX66 Jul 12, 2026
02af7ba
feat(game001): add contamination system
DTALEX66 Jul 12, 2026
f59b5bd
feat(game001): add high-risk consequences and debrief
DTALEX66 Jul 12, 2026
0bb222c
feat(ui): import V5 CCTV visual handoff
DTALEX66 Jul 12, 2026
3ec1a3c
fix(build): isolate bundled module scopes
DTALEX66 Jul 12, 2026
fa632fe
feat(build): inject deterministic V5 content
DTALEX66 Jul 12, 2026
2f1d16d
feat(game001): add rollback-safe V5 night state
DTALEX66 Jul 12, 2026
d4aa96c
feat(game001): schedule V5 night shifts
DTALEX66 Jul 12, 2026
0f737c0
feat(game001): add V5 protocol and camera tabs
DTALEX66 Jul 12, 2026
9635572
feat(game001): add V5 tools and dynamic actions
DTALEX66 Jul 12, 2026
1195305
feat(game001): complete V5 night interaction flow
DTALEX66 Jul 12, 2026
517a0ec
fix(game001): align V5 portrait layouts
DTALEX66 Jul 12, 2026
e188e95
test(game001): capture V5 portrait runtime
DTALEX66 Jul 12, 2026
fb398dd
test(game001): capture V5 identity state
DTALEX66 Jul 12, 2026
d70e5fc
test(game001): capture V5 high-risk state
DTALEX66 Jul 12, 2026
5dde00b
test(game001): capture V5 protocol query state
DTALEX66 Jul 12, 2026
33a5d07
test(game001): capture V5 debrief state
DTALEX66 Jul 12, 2026
ce5e37f
fix(douyin): persist release AppID in project config
DTALEX66 Jul 12, 2026
91b7aaa
feat(game001): differentiate V5 audio haptics
DTALEX66 Jul 13, 2026
2b8e816
fix(game001): complete identity round resolution
DTALEX66 Jul 13, 2026
62b7559
docs: define MINIGAME execution boundary
DTALEX66 Jul 27, 2026
886d7e6
feat(game001): wire event chains into night runtime
DTALEX66 Jul 27, 2026
ef8f35c
fix(game001): preserve event chain history in debrief
DTALEX66 Jul 27, 2026
4932e35
feat(game001): upgrade V5 CCTV visual fidelity
DTALEX66 Jul 27, 2026
8c4eb52
fix(game001): restore CCTV night-watch atmosphere
DTALEX66 Jul 27, 2026
d3e20b0
feat(game001): complete V5 night protocol runtime
DTALEX66 Jul 27, 2026
9639f82
docs(game001): record V5 full-chain verification
DTALEX66 Jul 27, 2026
f2e2bc5
ci: correctly assert release check fail-closed
DTALEX66 Jul 27, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,13 @@ jobs:
run: node scripts/validate-skins.mjs

- name: Release check (should fail-closed on placeholders)
run: node scripts/check-release-readiness.mjs; code=$?; if [ $code -eq 1 ]; then echo "release check correctly failed-closed on placeholders"; exit 0; fi; exit $code
run: |
set +e
node scripts/check-release-readiness.mjs
code=$?
set -e
if [ "$code" -eq 1 ]; then
echo "release check correctly failed-closed on placeholders"
exit 0
fi
exit "$code"
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@ dist/
*.log
.env
.tmp/
.tmp-chrome*/
tmp/
test-output/
coverage/
MINIGAME_V4_Starter_Pack.zip
android-minigame/
android-webview/app/src/main/assets/assets/
android-webview/app/src/main/assets/
.tools/
.gradle/
android-webview/.gradle/
Expand Down
2,906 changes: 0 additions & 2,906 deletions android-webview/app/src/main/assets/game.js

This file was deleted.

182 changes: 0 additions & 182 deletions android-webview/app/src/main/assets/index.html

This file was deleted.

Loading
Loading