Claude/main bugs review nd8dax#42
Merged
Merged
Conversation
- Captcha URL regex only matched login.vk.com/localhost:PORT, so when the local kernel logs the auth URL on 127.0.0.1:PORT instead, the captcha dialog never triggered. Regex and WebView domain whitelist now accept 127.0.0.1 as well. - Flag switches (VLESS, UDP, DTLS, etc.) only updated in-memory state and were lost on restart unless the user pressed "СОХРАНИТЬ ИЗМЕНЕНИЯ" afterwards. Toggling now saves the config immediately.
Adds a workflow that builds and uploads a release APK on every push to main/this branch. Signing uses a static test keystore committed to the repo (app/ci-release.keystore.jks) instead of the default auto-generated debug key, so the signature stays identical across builds/runners and users can update the app without a reinstall. This keystore is for CI/testing only, not Google Play distribution.
Real kernel log format is "CAPTCHA_SOLVE|<mode>|<url>|<token>", and the URL's host is id.vk.ru (VK ID), not login.vk.com — the previous regex only knew about login.vk.com/localhost/127.0.0.1, so the whole line was ignored and the captcha dialog never opened. Also the old \S* capture would have swallowed the trailing "|<token>" into the captured URL since it doesn't stop at "|". Now parses the CAPTCHA_SOLVE-prefixed line directly (stopping at the next "|"), with the domain-list match kept only as a fallback.
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.
No description provided.