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
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ Furthermore it fixes some layout flaws of the official OpenShock Frontend like h
22
22
You can also log in on multiple OpenShock instances at once. ShockAlarm will show all shockers from all instances seamlessly at a glance!
23
23
24
24
## Other information
25
-
-I cannot guarentee that all features work with all possible configurations. I try to make them work with each other but sometimes I miss them. For example a random intensity won't work with the shock confirmation dialog. However a hard limit will.
25
+
I cannot guarentee that all features work with all possible configurations. I try to make them work with each other but sometimes I miss them. For example a random intensity won't work with the shock confirmation dialog. However a hard limit will.
26
26
27
27
### Not supported in Web Version
28
28
Everything with websockets is currently not supported due to authentication problems with websockets. This includes:
@@ -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
128
+
-[ ] Implement login V2 (how am I supposed to reliably extract sideKeys for turnstile on any OpenShock instance)
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)
Copy file name to clipboardExpand all lines: lib/screens/shockers/individual/shockers.dart
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -279,6 +279,7 @@ class ShockerScreenState extends State<ShockerScreen> {
279
279
List<Control> controls = [];
280
280
int highestDuration =0;
281
281
for (Shocker s in shockers ??AlarmListManager.getInstance().getSelectedShockers()) {
282
+
if(s.paused) continue;
282
283
Control c = s.getLimitedControls(type, AlarmListManager.getInstance().settings.useSeperateSliders && type ==ControlType.vibrate ? s.controls.getRandomVibrateIntensity() : s.controls.getRandomIntensity(), s.controls.getRandomDuration());
0 commit comments