forked from phihag/bup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TODO
1962 lines (1495 loc) · 55.6 KB
/
TODO
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
PaulP display
snapshot test for scoresheet -> svg
custom background from bts doesn't work with international
btde: sponsor true/false
btde: more data fields
show when next game where score would be (test w/ CourtSpot)
+tdemo for an international tournament?
show country in onmyright for international events!
temporarily disable if 3 rallies with <2s each
more men on setupsheet
greyish with transparency -> Jannick
correct with long player names (=> SMS Paul)
fix tests for mark
new display multi-court tiles
greyish with long names
-> Paul
font size on eventsheet mac
translations_table: import
import flemish, see email
test color change with bts during match
sync now_on_court with display, if only one then show it
umpire nationality on scoresheet
editmode if no sides: just assume something
check: retransmit not automatic after error with BTS?
hide referee stuff in focus mode
promoted to main draw
red cross for injury
Jörg + Conni
tournament display mode with handschuhmacher on 1024 should never scroll
dmode tournament_overview
show receivers during server dialog
benedikt
fix displaymode bwfplayersonly
doc flemish, test
btsh: language from bts
20s overlay
fix league overlay display!
(Strehse / Moszinky)
default to minimal UI on tablets
courtspot do not accept score from a loaded game
cli to download
https://www.turnier.de/sport/league/match?id=915EE244-50FD-429B-B7C8-C02CDB0B3AA1&match=154
fix export
export players from file
multiline scoresheet notes @RLW / default
international: show receiver (plain without)
dmode simplified stripes (Marcus)
Spieler A
21 12
23 5
Spieler B
main UI
colors
make color
bolden names (|| color: #000;) (->Patrick Schober)
bg0 + bg1 for international (&clean&bwf)
dblv upload
https://newbluefx.com/products/titling/titler-pro/ (Marcus)
andreasP old Chrome
fix jersey colors Berlin + Neuhausen
read + check umpire minreq
Stephan Irsen Background
setupsheet: space for one more male name
PaulP 3G-Formular!
export copy URL
rlmdemo, check dm_style=streamcourt
print ansage
fix transmission of results (bundesliga)
This match URL points to TSV Neuhausen-Nymphenburg - 1. BC Sbr.-Bischmisheim, but expected TSV Neuhausen-Nymphenburg - 1.BC Sbr.-Bischmisheim
fix transmission of results (missing players)
use github actions instead of travis CI
udo voigt: Switch between two modes
tournament or league?
CP first, at one event
BTP
earliest October, September 4th
english doc for bts
25s delay clock (BC)
reason for card: buttons
red card: call referee
long notes in scoresheet
preselection of notes?
Chris RTMP color of stream
Paul Puschmann mail
btde "Turnier"
check alfi sending
Quittung fix logos!
Quittung Fährkosten => Bene Voigt
Corona beiblatt
reveal.css better installation from zip
new logos (see mails!)
pronounce Markheidenfeld
setupsheet: always blank lines
import https://www.turnier.de/sport/teammatch.aspx?id=B3510C02-5438-4B68-B55F-4A2B86B6BF26&match=167 fails
NLA new sheet (see email)!
fill out xlsx corona form
refmode wrong league_code?
Miller, Hukriede testliga
update score displays, test with various devices
stats: Größter Rückstand
eventstats => Luis La Rocca
buli readd Spielordnung => Reinhard
CourtSpot: do not transmit if older than 1 hour (-> Michael / Reinhard)
allow transmission if name is slightly different
check ads, court_count is not defined
courtspot: should not show HD1/DD initially
name colors?
daniel Wolf email:
BVM fix logo
dmode update top+list colors configurable
fix reveal.js download
error in xlsx: use proper promises!
test tde transmission
copy beuel umpire receipt form
dmodes stream
streamcourt should be fullsize
bundesliga
test with
OBS
wireshark
Air:Solo & friends
android version of that
-> ChrisK
dmode marius (see mail)
btde fix location
stream scale
fix (rlw?) scoresheet scaling!
bup new onestream
test with Live:Air Solo
pdf of buli eventsheet check font size in chrome
test größte Führung in stats WTF
Uncaught ReferenceError: court_count is not defined" error
make tests green
update docs ticker
----------------
stream test court1/court2
allow URL parameter for scale
test dm_style=stream documented
doc obs / streaming setup
dmode Marius Mail
order should not show adding (should be to only)
d fix top+list
check all styles gone
wake lock API
remove sclive from doc
support Mainz-Zahlbach
go through all displaymodes and check that they set their background
displaymode error and many details look broken!
onmyright: bold right, and change to that
import https://www.turnier.de/sport/league/match?id=1EE9AE51-2B4E-41A0-9815-381422DC24EC&match=112
airbadminton scoring
bup new forms buli 2020/2021
script to init a Pi
---------------------
displaymode support teamcolor background everywhere
map §2.1.4 (@ DBV RLT only reference countries in German if at least one non-DE)
better error message on 404 from bbt
display like https://www.youtube.com/watch?v=ZfKacJsxHUs
fix itests, pentf
d hohenlimburg onlyplayers logo background
pronounce TSV Freystadt
test turnier.de import
btde support (002) NRW-Oberliga Nord
Berliner Brauereien: light blue
pass user+password as URL parameters
https://github.com/phihag/bup/issues/20
color edits in dmode on ios
cs check server/receiver all the time
cs test going back after selecting something
VisualReality endpoint service
d unify clean+international?
order: Pause + Space
bup order wrong colors if triple problem
#mo deleting a match should not reset new match inputs
cs ignore players of upper teams
mouse is visible upon boot
make gamestats printable
bts -> go to gamestats
benedikt border around receiver
pia problems with using manual
pronounce Sbr-Bischmisheim
reload court list while showing
janine fix export
fix servedemo
8 buttons should fit on small tablets with default settings
more space on setupsheet (see bcb)
setupsheet always show top 4 in doubles
test the sht out of manual edits
rlmdemo check export_url
d 2court with details
open minreqs in new tab
focus option should show court text
docker without dev dependencies!
displaymode: hide cursor
bts: retirement not transmitted correctly
giantscore: depend on side
allow sending notes to display
fix itests & enable itests on travis
update Announcement to Jens'
d error message if no contact for minutes
tde_export allow switch firstname <-> lastname
logo hamburg horner tv in umpire payment
d autosize team names when nothing on Court -> Maximilian
CourtSpot do not default matches -> Maximilian
presentation sheet with players & umpires
women before men
doubles before singles
lower-ranked before higher-ranked
d export URL for Stephan
update single-match demo (en)
d in only views: different placeholder
order: + teamnames, + backup players
d print player definitions (who plays, doubles before singles, ascending, women first)
huawei tablets font smaller
courtspot: should not show server when none set
update logo stcbw
selectevent
stcbw courtspot display looks funny
umpire cost form: add fixed
d bup-like overview display
btde: use test/ from test installation
export should export version:2
tde_import import players
add support for RLSO (see stash)
fix NLA result sheet (scale_svg)
gothaer
init module
http://localhost/test/Gothaer/spiel.php
http://localhost/test/Gothaer/grafik.php
transmit to localhost:8090
{"layout":11,"layout_var1":"420","periodeanzeigen":"","insert":true,"saetze_heim":"0","saetze_heim_arr":["0"],"spiele_heim":"1","name_kurz_heim":"","name_lang_heim":"TV Refrath","logo_heim":"","logo_gast":"","saetze_gast":"0","saetze_gast_arr":["0"],"spiele_gast":"0","name_kurz_gast":"","name_lang_gast":"BW Wittorf?","spielername_heim":"c","spielername_gast":"c","aufschlag":"gast","kleineuhr":"","timeout1":"","event1":"","timeout2":"","event2":"","timeout_mitte":""}
init screen with logos, a little bit btde-like
refmode option to distrust this referee
test for all colors to match ^#[0-9a-f]{6}$
d/teamscore: team bg color
d/teamscore: logos
receipt should not list (001) Regionalliga
tde_export: backup players
shell script to download (including cached)
tde_import: fix player import
Janine check Bischmisheim player sheet
update btde mock
sclive: names are not correct
sclive: can we inject names?
onlyscore: double digits not looking good at 5 games
sclive show server/receiver
2court should have differnet defualt text
courtspot a server is highlighted initially, should not be that way!
2courts: order change does not work
refmode is nigh unusable
missing location etc. in csde:
btde login detection does not work
focus mode should hide referee mode UI + Login as..
bldemo: setupsheet looks funny in PDF in Chrome
courtspot: check that it does not send if team is different (BVM1 after BVM2)
btde: test login required
aufstellung: doubles incorrect!
cursor still visible on rpi
d: stripes: orientation
doc fields
add in demo (if necessary)
check with bts
check with courtspot
close https://github.com/phihag/bup/issues/14
docker
finish dockerfile
document in README
gh bug reports!
update international demo player names
improve stats:
mouseover to see state?
click on time for relative time
button to go to (end of) stats?
show undo as text?
relay scoring?
dmode tournament_overview: option to hide done matches
battery watch
leave match button
correctly transmit resignation/walkover
dmode empty: court larger
dmode like international but with discipline
new dmode: international with discipline
tdemo_inprogress (for national + international)
d 2courts with players
import from clipboard
https://developers.google.com/web/updates/2019/07/image-support-for-async-clipboard?utm_source=feed&utm_medium=feed&utm_campaign=updates_feed
show nationality in choice of server / receiver
at international tournaments: show nationality on match buttons
allow BWF without flags
rename internal stuff team0_serving, player0even
disable changing of courts during match
add a debug option to send all source code files, also via referee mode
and compare them to what the referee mode gets
check for memory leaks, especially after hours of errors
firefox bug: dmode click anywhere, then cannot go out
show battery at bottom?
referee mode for tournaments
tournamentsoftware
"Mannschaft" hat aufgegeben
ad: clock until (with text)
create video of progress (to embed) -> bc MrArc2
add new module
add button
import library
test pronunciation two nationalities
international tournament demo
countries in server / receiver selection dialog
remove gewonnen von mit
remove go_fullscreen_wrapper?
show umpire name in top left in bts
correctly sync walkover
doc: pin windows https://support.google.com/android/answer/6118421?hl=en-GB
bup: check fonts & sizes in tournament displays
dads
option to change order
option to finish after video
22 order optimization -> Peter Veit
rules https://education.bwfbadminton.com/airbadminton/how-to-play
font https://www.facebook.com/maria.sonne.315/posts/2187941424620170?__xts__%5B0%5D=68.ARByWvRIEUOfg-wSLrE8Q1Dx5mXn2dnFQSaUljff2NoE5wIExA0tcGcQDfVRtLVoI67KmBMBAcIb6h6Ahe89AqmZwHOYJ6Dl5DFjtsXuevcod2lcQ9eJGWD6zW2XKGtOLMIpLDWDjRWOcxuQI1cYOiIn6OrXzdQJEFcdVdkgmDB86erRUVLPZIo2BHgbPj5mJBxp7cmFLpkBQ0mEvX7T6VAOowLGP80GEIRKgcPqXTjrxnBRNCIiMiPd5ounr2T3bpt6O340kBarDAWyqRpXVnr-tijPAJf1tTCOrGGFDdIiCA01wIhHVIrSjmzbbPiHH2sYZVEYi97IRkdlYnCRf8Si0tXVYublOrDs_8zQX3h5k-83HOrsDf70&__tn__=-R
colors in Aktuelle Liste
Tim double colors
Tim two colors for ogoing on top right
redesign ads
d add a button to reset colors
dads automatic background color
shortcut w to go through ad modes
shortcut shift+w to disable ads
Aufgabe automatisch als Text eintragen
Wartezeit in Werbung
CourtSpot order not saved (save order, then reload, during match)
logo gladbaecker FC
refmode in CourtSpot without Internet
Wipperfeld #b90a1e
error in refmode when going back from match start(Aufruf nicht vor NaN:NaN)
hard-code locations (so we don't have to download all the time)
.score_counting needs border
ad as text
refmode animate wait time
refmode 2-11 shown instead of 11-2 on win?
refmode protect against ongoing match when changing match (warning)
https://www.turnier.de/sport/teammatch.aspx?id=95E4D9B3-8ECF-4B90-AC3E-3187852F20FD&match=100
better error message
bug morten
spell djk teut st tönis
team pronouncements: strip 1
can't save on firefox (on bts laptop)
setupsheet in refmode
shoe color
order printout without colors!
< GH issues
Stammspieler not black
color offset by machine
add to home screen nicer
refmode should preview display
fix Incorrect team names: This match URL points to 1. BC Sbr.-Bischmisheim 2 - TSV
Neuhausen-Nymphenburg [A], but expected 1. BC Sbr.-Bischmisheim 2 - TSV Neuhausen-Nymphenburg",
suggestion morten
add a service worker
improve changing colors with team color from refmode
add player tde
default tde account number
try receipt Hohenlimburg
Doppelrangliste
-> msg Bischmisheim
remove Object.values
greyish autoscale long names
background on start display
press announcement to become transparent
trigger export via refmode
run through all tests
Pause/upcoming match Display
courtspot dont default server / receiver
courtspot dont default matches
team colors in stats
dont gray out Stamm-Ersatzspieler
fix tests
start integration tests
demo mode (with red demo)
Referee Mode: Time of next play after going back from choice (is shownas NaN)
check stammspieler ersatz
background colors bg in field view
Support 5 sets to 11 sudden death
PBL counting (sudden death at 15)
Ersatzspieler eintragen!
PWA native web app
Syntax 38: font stack
referee team bg colors
Ansageblatt DD GD-W DE 1HD 2HD GD-H 2HE 1HE
fonts in various displays (test with one)
courtspot server false
Schiedsrichterzettel unten -> Markus
virtuelle Anzeige lokal rendern
turnier.de-upload: automatically fix small typos, first-/lastname
Bundesliga: BWF timing?
test RLM
exception icon: show something else but R
team bg colors in singles
team bg colors in court view
team bg colors also for other than teamcourt
ask before syncing after entering in game
refmode note should not change court
Safari drucken
contact scoreboardlive.se
d greyish in colors, like CourtSpot
bup Neuhausen Misha Zilberman
https://www.facebook.com/hanskristianvittinghus/photos/a.10152176145076206/10156684530746206/
bldemo should not refresh all the time!
strike "nicht dem allgemeinen Stand der Technik entsprechen"
fullscreen on top
remove option to ask for fullsceen
update logo sterkrade
d greyish colorful
Enter umpire name in minreq sheet
update NRW satzungen & Ordnungen
urlexport: support players from lower teams
Fehler Markus Schwendtner: manual swapping
BWF-Einspielregeln, Michael Pütz
urlexport: Jan Felix vs Jan Matulat (-> Joachim Resch)
Referee Mode: players on court when match assigned to court assigned
mail with changes in announcements
shorten #referee_mode to #ref
test import RLN
https://gruppe-nord.net/download/satzung-und-ordnungen-der-gruppe-nord-stand-31-08-2018/?wpdmdl=372
Jan: Referee Mode Werbung
Feldauswahl mit Tastatur => Jan
improve display before start
hardcode color trittau + sterkrade
ticker from b.aufschlagwechsel.de
show rest time if available
btde: detect empty 200
btde: before teammatch: switch pages
before game: if logos include them
separate umpire and user view
referee mode: umpire changes not saved
fix import RLN (use VRL)
+verkürzt DBV https://www.badminton-nrw.de/index.php?id=123&tx_ttnews%5Btt_news%5D=3143&cHash=60f0a49addb275c2f5892c1bb692882e
greyish on Pi with double-digits: text too large
@refrath
check Pi beamer overscan etc.
invert colors display
@sterkrade
check tablet
firefox print scoresheets
can't change displays @btde?
bup add display before
with bts: incorrectly shows server in second game start
tournament display: increase font size
bldemo: check double
bug: side change at game end not happening after manually editing sides in the beginning!
low battery warning
better fullscreen button on tablets + smartphones
test import RLN
test import RLW
test import OLN
test import KK
update NRW Satzungen
send mail to everybody
Vorname Nachname @tde_export -> Björn Wüpping
shot clock -> Morten
display as iframe: suppress menu, suppress click
bup &ro mode (no saving settings, no loading settings, no menu, ...) -> Dieter
document ro
various dmode changes -> Dieter
multi-color team config
add bts to table
add sterkrade colors: yellow-black
support nation team names (when nation competition then prefer player's nation names)
bts: at beginning player marked before server determined
show nations in green main display when nation competition is set
fix integration tests
Feld Display at tournaments: larger and show tournament
Rückschläger anzeigen?
Anzeige mit Mannschaftsspielstand
Anzeige hochkant 1 Feld
Anzeige hochkand 2 Felder
ad: countdown until game with icons
bup-courtspot: initial servers wrong in display?
button to delete stored matches
option to not talk about court
battery driven bup backups: add hostapd emergency configuration script
Spielreihenfolge: Show team names and date
bup: double color displays
document wirecast: webanzeige
make bup doc printable
some basic english doc in README
document demodhcpd + hostapd
hosted remote-controlled windows app
search for bup / badmintonticker / referee mode
controllable via referee mode
if only one found connect to that automatically after 30s or so, and save
go fullscreen
build a linux app too
tool to set up raspberry pi SD card
swap exceptions:
1. yellow, red, black
2. UVR
3. RCO
check whether we use broetli compression for static assets
make settings ro?
dmode show error message when errors for longer than 30s
dmode Siegerfoto with logos instead/on top of team names
dmode automatically switch to Siegerfoto after end
dmode half display
dmode realistic court(s)
buphub kill conns earlier
implement timeout
improve login
test displaymode login
dmode when logged out: does it show the form?
player import in rlw should include backup players
blue btde dmode?
umpire pro dmode but with time
Anzeige mit Seiten (wie für Schiedsrichter)
-> Markus Schwendtner
shuttle stats
btde-mock: 2 requests if not logged in (should be one)
selectevent module
download database automatically (lock to prevent multi-download)
use download_lib in debmlist
download 5 most likely (and leagues + matches therein)
start via most likely
start via league
start via URL input
start from export file
manual event creation
if courtspot: ask for passcode
allow on referee
checkbox on referee: store event permanently (do not load from clients)
ticker to courtspot from referee
serviceover
-> Benedikt
resume: warning if local copy is ahead of remote match
-> Olli
disable bupabfrage when going into match
tunnel error reports through courtspot
displaymode: add spacing option
check reload button graphic on Firefox etc.
doc f11 (+Android +iOS) -> Markus Schwendtner
check main design on iPad mini -> Markus Schwendtner
resignation/card: auto-write text
write a test for this
save inputted umpire names (for CourtSpot)
-> Ulf
-> Benedikt
courtspot: save inputted backup_players / listed_players
-> Tim Bambach
refmode: save inputted backup_players
eventsheet: extra_data: going back should not destroy values
stats: add team name to graph
stats: + game points / match points
-> Tim Bambach
stats: improve printing
d teamscore only logos
d teamscore with small won matches
tx allow selecting resignation
teamcourt/international: also color game
2court: game in color as well, and discipline grey
eventsheet: handle 404
order @wdmu19
tournament optimization
UI for probabilistic optimization
webworker?
support locked
tests
-> Günter Klützke
-> Peter Veit
find uused CSS rules
separate settings and main screen
import tournament name (example: https://www.turnier.de/sport/tournament.aspx?id=DB5AB88F-98B5-4B52-B10E-D256C7B8A8B4)
https://www.turnier.de/sport/tournament.aspx?id=DB5AB88F-98B5-4B52-B10E-D256C7B8A8B4 : no spaces behind match names please
ajax: implement timeout
autosend export upon change from unfinished to finished
urlexport: add player from lower team
option to store passwords
btde login via refmode
eventsheet: sign!
store signatures in CourtSpot
store signatures with referee mode
send via mail: set up server
-> mail Arno Schley
2courts with low resolution
support i18n da
test cs order in detail
-> Ulf
d shortsets [see pic]
d a nice modern overview of all matches, similar to tim
d halfcourt (for bundesliga finals)
-> iframe with fullscreen
-> Ulf
dads in intervals -> Jan
refmode redesign UI for change dialogs
refmode highlight if R pressed
refmode make more efficient
refmode if new event show diffs
refmode remove flickers
refmode verify that push mode is not active by default
refmode use WebRTC
referee to remote-control the match -> Jörg Hupertz (like Visual Reality)
tde_import: aufgegeben (https://www.turnier.de/sport/teammatch.aspx?id=107D0FC0-C153-4EAF-A39D-EBAECB424B16&match=230)
stats graph: include team name
remove svg2pdf.parse_color in favor of utils.parse_rgb
remove scoresheet._svg_el in favor of svg_utils.el
drop eventutils.make_empty_matches
eventsheet: modern svg2pdf: print and PDF buttons right on the page
eventsheet: modify DIRECT* family to go to es_preview immediately
eventsheet: handle error when failing to download template
test back and F5 everywhere in referee mode
check that btde send export sends event
import from b.aufschlagwechsel.de
switch from appcache to service worker
test that updating works in Chrome
test that updating works in Firefox
test that updating works in Safari
btde: urlexport should go to aufschlagwechsel.de outside dev
turnier.de report with injury and btde
jticker:
login
delete function for old versions
turnier.de: use aufschlagwechsel.de
-> msg Johannes
receipts: autocalc distance
http proxy for distance (using google maps API)
link to google maps if hall location present (or better, autocalc)
turnier.de support field names in RLW
refmode: visible warning if no crypto.subtle
use correct setupsheet in referee mode as well (see existing logic)
check editevent (apparantly calls list_events)
setupsheet fails in referee mode
do not use bare ajax.req. Instead, use network.request
minreqs: esc fails ($visible?)
minreqs: back fails ($visible?)
use network.request to communicate with tde_export
jticker: urlexport should to to aufschlagwechsel.de all the time
referee mode: anderer Status für "Spiel auf dem Tablet geladen"?
esc fails in Mindestanforderungen-verein
btde: guess turnier.de URL
referee mode: ask before someone joins
order in referee mode: tablets first please
referee mode: query netstats
referee mode: reset netstats
referee mode: timeout earlier
refmode:
make settings a pop-up dialog
redesign left side: 1 or 2 lines, configure button
redesign fullscreen interface
big button on top
automatically if going out of fullscreen (for example turning off A88X tablets)
de-jqueryfy show
remove all uiu.$ invocations
de-jquerify network.request
1. rename to $request