Synch PR#108
Closed
h4ck32n4u75 wants to merge 26 commits into
Closed
Conversation
refactor(router): change access modifier for destroy method refactor(sound): update access modifiers in SoundManager class refactor(sync): rename method for clarity in SyncManager class test(rf-front-end): update tests to reflect constructor changes test(router): add destroy method test and fix window.location mock test(draggable-html-box): add tests for DraggableHtmlBox functionality test(save-progress-toast): add comprehensive tests for destroy method test(sound-manager): add extensive tests for SoundManager functionality test(sync-manager): add tests for SyncManager with mock dependencies test(progress-save-manager): add tests for ProgressSaveManager functionality
feat(character): ✨ add character enum and avatars feat(assets): ✨ add guide image and intro audio files chore: ✨ update .gitignore to include notes
feat(sound): ✨ add method to check if custom audio is playing chore(webpack): update asset copying to include character assets
…er progress feat(scenario-selection): ✨ add campaign context to scenario selection refactor(router): ♻️ update routing to support campaign and scenario navigation refactor(scenario-manager): ♻️ streamline scenario data handling and imports fix(styles): 🐛 improve layout and responsiveness of campaign and scenario pages
Created AI_MODE_DESIGN.md to formally introduce SR-AI
Addressed critical issue with supabase-client.ts
Owner
|
@h4ck32n4u75 I'll get this merged after work today. |
Owner
|
I merged it into the dev branch. |
Collaborator
Author
|
Thanks may I have the SB invite again please the token expired but I will keep an eye out for the next one and am ready to push over the next four days to get some major progress. Hope all is well on your side. |
Owner
|
@h4ck32n4u75 sent. Looking forward to it. This week is super busy for me but hoping to get plenty done this weekend. Got a bit derailed redoing the interface, but I think it was worth it to launch with an interface that better resembles a real ops center vs a students lab (which will be a later campaign). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Getting caught up and starting security patching as well.
const getCookie = (name: string): string | null => {
try {
// Escape the cookie name to prevent regex injection
const escapedName = escapeRegExp(name);
const pattern = new RegExp(
(^| )${escapedName}=([^;]+), 'u');const match = pattern.exec(document.cookie);