diff --git a/.idea/dictionaries/ericf.xml b/.idea/dictionaries/ericf.xml
index bc8ce22b..d1931465 100644
--- a/.idea/dictionaries/ericf.xml
+++ b/.idea/dictionaries/ericf.xml
@@ -1436,6 +1436,7 @@
indstr
inet
inext
+ inferable
infileb
infilename
infilepath
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c05c3c0f..dbb2c41d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -93,6 +93,8 @@
(fix #614). Thanks heLlow-step-sis!
- Fixes an issue where CTF flag return counters could get stuck (fix #584).
Thanks SoK05 and Dliwk!
+- In cases where there's no browser available, the v2 account sign-in URL can
+ now be tapped to copy it (Thanks vishal332008!).
### 1.7.27 (build 21282, api 8, 2023-08-30)
diff --git a/ballisticakit-cmake/.idea/dictionaries/ericf.xml b/ballisticakit-cmake/.idea/dictionaries/ericf.xml
index 3a0a675e..d97854ef 100644
--- a/ballisticakit-cmake/.idea/dictionaries/ericf.xml
+++ b/ballisticakit-cmake/.idea/dictionaries/ericf.xml
@@ -865,6 +865,7 @@
includelines
indata
inet
+ inferable
infoset
infotxt
inides
diff --git a/src/assets/ba_data/python/bauiv1lib/account/v2proxy.py b/src/assets/ba_data/python/bauiv1lib/account/v2proxy.py
index 7219823c..51d48061 100644
--- a/src/assets/ba_data/python/bauiv1lib/account/v2proxy.py
+++ b/src/assets/ba_data/python/bauiv1lib/account/v2proxy.py
@@ -238,8 +238,7 @@ class V2ProxySignInWindow(bui.Window):
if bui.clipboard_is_supported():
bui.clipboard_set_text(link)
bui.screenmessage(
- bui.Lstr(resource='copyConfirmText'),
- color=(0, 1, 0)
+ bui.Lstr(resource='copyConfirmText'), color=(0, 1, 0)
)
def _done(self) -> None: