You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -125,7 +125,7 @@ You can download a Portable version (zip file) from the [releases](https://githu
125
125
-[x] Add global limit for self.
126
126
-[x] Stop live playback when changing type
127
127
-[x] Make sure text in popups is scrollable so it can be read completely
128
-
-[] Implement login V2 (how am I supposed to reliably extract sideKeys for turnstile on any OpenShock instance)
128
+
-[x] Implement login V2 (Android only currently)
129
129
-[ ] Implement Shares V2 (once officially declared done in backend and implementation in official frontend exists. Can't make sense of the api rn without explenation)
- Switched login to LoginV2 on Android. Linux and Windows will follow. This means cloudflare turnstile has been added to the app. It can be disabled in the settings.
3
+
- When logging out a loading indicator is now shown
"Login failed", "Check server, email and password");
589
-
}
590
-
},
591
-
child:Text("Login"))
592
-
],
593
-
);
594
-
});
530
+
builder: (context) =>LoginPopup());
595
531
}
596
532
597
533
@@ -1045,6 +981,31 @@ class _SettingsScreenState extends State<SettingsScreen> {
1045
981
})
1046
982
],
1047
983
),
984
+
Row(
985
+
mainAxisAlignment:MainAxisAlignment.spaceBetween,
986
+
children: [
987
+
Row(
988
+
children: [
989
+
Text("Login without cloudflare"),
990
+
IconButton(
991
+
onPressed: () {
992
+
InfoDialog.show("What does this mean?",
993
+
"ShockAlarm uses the V2 login api of OpenShock by default which requires cloudflare turnstile to be embedded for bot detection. By activating this you can switch back to the V1 login api which does not require this but may not be available on all OpenShock instances.");
0 commit comments