Skip to content

lll#13

Merged
B3ni15 merged 152 commits intomasterfrom
dev
Nov 6, 2025
Merged

lll#13
B3ni15 merged 152 commits intomasterfrom
dev

Conversation

@B3ni15
Copy link
Copy Markdown
Member

@B3ni15 B3ni15 commented Nov 6, 2025

No description provided.

B3ni15 added 30 commits August 25, 2025 17:07
- Updated `fake_async` from version 1.3.2 to 1.3.3
- Updated `leak_tracker` from version 10.0.8 to 11.0.1
- Updated `leak_tracker_flutter_testing` from version 3.0.9 to 3.0.10
- Updated `leak_tracker_testing` from version 3.0.1 to 3.0.2
- Updated `test_api` from version 0.7.4 to 0.7.6
- Updated `vector_math` from version 2.1.4 to 2.2.0
- Updated Dart SDK constraint from ">=3.7.2 <4.0.0" to ">=3.8.0-0 <4.0.0"
- Added new logo asset located at `assets/logo.png`
…cluding API integration and shared preferences for token storage
…ons; refactor MainApp to use NotificationProvider
…er; adjust NotificationProvider alignment in the notification service
…vent state updates after disposal, improve toast positioning, and add scaling animation for better user experience.
…ns and improve base URL handling with debug logging.
…les, AndroidManifest, and resource files for app setup.
- Added SharedPreferences to manage user authentication state.
- Modified main function to check for an existing auth token and navigate to the HomeScreen if present.
- Updated MainApp to conditionally render HomeScreen or LoginScreen based on authentication status.
- Enhanced API service to normalize base URL and path when constructing request URIs, improving robustness.
- Added debug logging for API requests to include base URL and path information.
B3ni15 and others added 25 commits November 4, 2025 21:40
…t; add CryptoService for end-to-end encryption handling; implement DeviceService for device ID storage and retrieval.
…e handling; refactor HKDF usage in CryptoService for better clarity and performance
…sture handling; refactor ChatScreen to utilize TapGestureHandler for touch interactions
…message loading logic for improved user experience
…Screen for safe area insets and improved scrolling behavior
- Created modules.xml to define project modules
- Added vcs.xml to configure version control system as Git
Added the GNU General Public License version 3 to the project.
@github-advanced-security
Copy link
Copy Markdown
Contributor

This pull request sets up GitHub code scanning for this repository. Once the scans have completed and the checks have passed, the analysis results for this pull request branch will appear on this overview. Once you merge this pull request, the 'Security' tab will show more code scanning analysis results (for example, for the default branch). Depending on your configuration and choice of analysis tool, future pull requests will be annotated with code scanning analysis results. For more information about GitHub code scanning, check out the documentation.

@B3ni15
Copy link
Copy Markdown
Member Author

B3ni15 commented Nov 6, 2025

@codex

@chatgpt-codex-connector
Copy link
Copy Markdown

Summary

Testing

  • Not run (workflow change only).

View task →

Copy link
Copy Markdown

@chatgpt-codex-connector chatgpt-codex-connector bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment on lines +88 to +94
this.ws.onmessage = (event) => {
try {
const message: WebSocketMessage = JSON.parse(event.data);
this.handleMessage(message);

// Notify message listeners
this.messageListeners.forEach(listener => listener(message));
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Avoid double-dispatching WebSocket messages

ws.onmessage calls handleMessage(message) and then immediately iterates messageListeners again. handleMessage already forwards all non typing events to the same listeners, so most messages are emitted twice and handlers like chat UI updates will run twice per server event. Drop one of these dispatches so every message is delivered exactly once.

Useful? React with 👍 / 👎.

@B3ni15 B3ni15 merged commit 99d8840 into master Nov 6, 2025
2 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants