forked from smeea/vdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGES.json
1303 lines (1303 loc) · 61.4 KB
/
CHANGES.json
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
[
{
"version": "2024-02-22",
"changes": [
"Fix more bugs introduced by recent update"
]
},
{
"version": "2024-02-19",
"changes": [
"Fix bugs introduced by recent update"
]
},
{
"version": "2024-02-18",
"changes": [
"Performance improvements for users with big inventory",
"Add White Turtle event in Vac, Hungary to Tournament Analyze - https://vdb.im/tournament_analyze/11192",
"Small other fixes and improvements"
]
},
{
"version": "2024-02-09",
"changes": [
"Update card texts to official V5C release",
"Update Rulings",
"Update TWDA",
"Few more performance improvements for users with many decks",
"Small other fixes and improvements"
]
},
{
"version": "2024-01-29",
"changes": [
"Fix TWD/PDA bugs with decks containing banned cards",
"Another performance improvement for users with many decks (it may still not be enough, please do not hesitate to tell about it)"
]
},
{
"version": "2024-01-28",
"changes": [
"Fix performance issue affecting users with many decks"
]
},
{
"version": "2024-01-21",
"changes": [
"Add indicators to mark decks with banned, not-yet-legal, playtested cards",
"Crypt/Library search with Search-in-Inventory checkbox will now show cards you don't have in inventory but use in your inventory decks (e.g. to search if they are among set POD cards)",
"Slightly update theme colors",
"Remove obsolete playtest cards",
"Small other fixes"
]
},
{
"version": "2024-01-13",
"changes": [
"Update playtest to Round 1 New Blood",
"Small other fixes"
]
},
{
"version": "2024-01-07",
"changes": [
"Add new V5 (Companion) precons - Ravnos, Salubri, Tzimisce",
"Add indicator of not-yet-tournament-legal cards (less than 30 days from release date)",
"Fix deck/inventory missing",
"Small other fixes"
]
},
{
"version": "2023-12-29",
"changes": [
"Update TWDA",
"Show title/capacity requirement for library card in search/deck card list",
"Add inventory filter to only show card with notes",
"Fix user decks containing playtest cards removed from testing",
"Small other fixes"
]
},
{
"version": "2023-12-23",
"changes": [
"Update Playtest to Round 2",
"Small other fixes and improvements (mostly styling)"
]
},
{
"version": "2023-12-10",
"changes": [
"Add Finnish National 2023 to Tournament Analyze. Check it out: https://vdb.im/tournament_analyze/11023, and if you like it help your event organizer to collect deck lists! Many thanks to Rune (and everybody else involved) for provided data!",
"Improvements to Tournament Analyzer",
"Minor color updates in day/light theme",
"Small other fixes and improvements"
]
},
{
"version": "2023-12-05",
"changes": [
"Add share limited format settings by URL",
"Make limited format not require account to search cards",
"Add Autotag button which will fill tags to the deck (will clear previous tags!)",
"Small other fixes and improvements"
]
},
{
"version": "2023-11-22",
"changes": [
"HOTFIX: PDF proxy bug introduced by original (yesterday's) update below",
"Improve Inventory and Limited modes to work together: when enabled Inventory mode will highlight card quantity and Limited mode will affect card names. For card search Limited mode will filter results to only limited cards, while Inventory mode will show inventory quantity for all cards and show checkbox under main text field to search in Inventory instead of all VTES cards",
"Show Limited warning (similar to Banned) if some cards in Deck are not compatible (useful for organizers to quickly see if decks of participants are good)",
"Add clear buttons to many search fields (smallest one will be without it at least for now)",
"Fix card reference recognition in Rulings (for cards starting with The)"
]
},
{
"version": "2023-11-07",
"changes": [
"Update TWDA",
"Small other fixes and improvements"
]
},
{
"version": "2023-11-01",
"changes": [
"Improved +votes library trait",
"Fixed missing cards in inventory",
"Changed first TWD search by-players bracket to start with 12 (to exclude multidecks tournaments)",
"Many small other fixes and improvements"
]
},
{
"version": "2023-10-22",
"changes": [
"Add 'Multi-discipline' and 'Multi-type' trait to library search",
"Add note mark (*) to card quantity in inventory",
"Fix missing cards in inventory",
"Fix card autocompletion freeze when entering non-latin letters"
]
},
{
"version": "2023-10-16",
"changes": [
"Add clan icon to My Decks selector",
"Fix PDF proxy for other than English languages",
"Small other fixes and improvements"
]
},
{
"version": "2023-10-01",
"changes": [
"Update Playtest",
"Small other fixes and improvements"
]
},
{
"version": "2023-09-23",
"changes": [
"Update TWDA",
"Small other fixes"
]
},
{
"version": "2023-09-18",
"changes": [
"Fix floating buttons (mobile) dissapearing when using Search in TWD/PDA or Playable By button from card view",
"Fix card name autocompletion for input with Capitalized Letters",
"Fix PDF proxy for cards with not available images of selected set (will fallback to latest image)",
"Fix ruling references for crypt cards",
"Fix TWD 'In Inventory By Crypt/Library'"
]
},
{
"version": "2023-09-05",
"changes": [
"Add custom notes to cards in inventory mode (edited in card popup window)",
"Fix Blood to uncontrolled library trait to include more cards",
"Small other fixes"
]
},
{
"version": "2023-08-28",
"changes": [
"Add New Blood 2 (tournament legal on August 31)",
"Update Rulings",
"Small other fixes"
]
},
{
"version": "2023-08-04",
"changes": [
"Fix playtest"
]
},
{
"version": "2023-07-31",
"changes": [
"Update playtest to Round 1",
"Fix some modal windows not working properly first click after page loading",
"Fix seating simulator to ignore unchecked decks",
"Small other fixes"
]
},
{
"version": "2023-07-28",
"changes": [
"Update TWDA",
"Add more sort options (prioritizing group) to Inventory crypt",
"Fix autocomplete for card names with symbols in names (e.g. SNS or DBR)",
"Small other fixes"
]
},
{
"version": "2023-07-21",
"changes": [
"Update cardbase to include Shadows of Berlin and Echoes of Gehenna",
"Small fixes"
]
},
{
"version": "2023-07-08",
"changes": [
"Update TWDA",
"Add open/clone deck buttons to Tournament Analyze decks",
"Fix Tournament Analyze Place filter not to show correct available options for second field (to or from) when something is selected in another one",
"Fix click on card type in TWD deck entry not freezing popup with cards of that type",
"Fix offline notification"
]
},
{
"version": "2023-07-03",
"changes": [
"Fix add cards from search"
]
},
{
"version": "2023-07-02",
"changes": [
"Add Analyze Tournament Feature (https://vdb.im/tournament_analyze or MORE button in TWD). It allows browsing decks (using standard TWD filters from VDB, you probable used to) of particular tournament (if we have the required data collected - now only ONE tournament is available but hopefully more come in the future). More details at https://vdb.im/documentation#analyze. Not optimized for phone screen yet.",
"Add more options to card types TWD filter",
"Fix delete deck from inventory",
"Small other fixes"
]
},
{
"version": "2023-05-21",
"changes": [
"Add support to Limited formats. In https://vdb.im/account you can enable it and customize cards you want to be included (allowed sets, and additional singles of allowed / banned cards) or load format file created by others, then on other pages you will see Limited Mode switch which will work similar to Inventory mode highlighting the cards not allowed by format and turning on-off search in Crypt/Library to search among all or only allowed card pool.",
"Small other fixes"
]
},
{
"version": "2023-05-12",
"changes": [
"Solved CONNECTION PROBLEM for TWD with a lot of results, and reduced network usage for such searches for up to 15x, which must be very noticeable on slowest connections",
"Add Check TWD Report page (from 'More' button in TWD; not designed for mobile screen size) help prepare and check report before submit to https://www.vekn.net/forum/event-reports-and-twd - it will highlight some discrepancies from VEKN Event entry and common issues. It is not magic tool to do the job for you, it only helps but you must read and follow guidelines (see pinned post in Event Reports by the link above)",
"Small other fixes, including modal windows sizes (may still be not perfect, but more standardized as of now)"
]
},
{
"version": "2023-05-03",
"changes": [
"Add crypt avg capacity and library blood/pool cost to twd",
"Fix crypt discipline icons on mobile",
"Fix swipes to increment on right swipe and to have correct highlight colors"
]
},
{
"version": "2023-04-25",
"changes": [
"Update Playtest precons to Round 3"
]
},
{
"version": "2023-04-22",
"changes": [
"Add option to create new revision from your other decks/revisions",
"Small other fixes"
]
},
{
"version": "2023-04-18",
"changes": [
"Update Playtest to Round 3"
]
},
{
"version": "2023-04-06",
"changes": [
"Update card text and images (last POD batch)"
]
},
{
"version": "2023-04-01",
"changes": [
"Fix TWD Hall of Fame - Card Appearance",
"Prioritize exact matches over TWD popularity in card selector autocompletion",
"Small other fixes"
]
},
{
"version": "2023-03-25",
"changes": [
"Allow custom card types values to search TWDA, should allow a lot more deep analyzing of meta trends",
"Add Playable By (bullseye icon) button to library card window to run crypt search (will search all disciplines for combo-disciplines cards, you must manually remove discipline you don't need)",
"Restore working on Firefox in Incognito mode (will fetch cardbase each time though, so may not be optimal on slow networks)",
"Update TWDA",
"Fix Export All decks",
"Small other fixes"
]
},
{
"version": "2023-03-17",
"changes": [
"Update card images",
"Update card text",
"Many fixes and small improvements"
]
},
{
"version": "2023-03-09",
"changes": [
"Update cardbase to 2023-03-09 (DTC batch of legacy cards)",
"Fix twd location/winner selectors to have clear buttons",
"Fix deck import",
"Small other fixes"
]
},
{
"version": "2023-03-07",
"changes": [
"Add TWD search by country",
"Update TWDA, including event locations fixes (many country/cities with different name varitions, missing country name for USA/Canada - still not perfect, but should be much better)",
"Add Letter paper size for PDF proxy",
"Fix new deck creation",
"Fix add card input (in inventory, twd search) not clearing after card is selected"
]
},
{
"version": "2023-03-06",
"changes": [
"Add filtering precons/sets in selectors typing set or year abbreviation (e.g. kmw, kot, 98, 23)",
"Many fixes, including inventory & review pages"
]
},
{
"version": "2023-03-01",
"changes": [
"Fix add new card to deck on mobile",
"Fix tall card view windows to overflow screen on top"
]
},
{
"version": "2023-02-27",
"changes": [
"Update TWD",
"Small fixes"
]
},
{
"version": "2023-02-21",
"changes": [
"Fix playtest decks/cards",
"Fix deck summary (i) button",
"Fix card popup (was too wide)",
"Improved inventory info layout in card tooltip / card popup"
]
},
{
"version": "2023-02-20",
"changes": [
"Fix deck draw",
"Fix crypt search by votes/artist",
"Fix hidden mobile buttons after adding new card to deck",
"Fix inventory mode highlights for not-your decks",
"Fix click between discipline icons in crypt",
"Fix system color theme",
"Fix page crash for some users (need further testing)"
]
},
{
"version": "2023-02-18",
"changes": [
"IMPORTANT! In this update codebase was singificantly re-done and improved. I tried to make everything as-good-as-it-was and make update not noticable, realistically I understand it brings some new bugs and inconveniences - please let me know if you find something unusual, annoying or face any problem. Next weeks would be well spend fixing evething!",
"Improved page loading time from network",
"Search must work a lot better offline when 'installed as app' on mobiles (should not fail running without network)",
"Add multi-table seating (follow more or less how Amaranth do it, let me know if it can be improved - our local group never needed multitable seating and feedback from real user appreciated)",
"Add small delay for searching card by text and clicking discipline icon in crypt - this should make typing (and double-clicking for superior discipline) smoother",
"Artist in card view is now clickable to search for other cards of that artist (search in crypt or library depending on card you clicked)",
"A lot of small fixes and improvements"
]
},
{
"version": "2022-12-20",
"changes": [
"Update TWDA",
"Update Rulings",
"Update Playtest to Round 2"
]
},
{
"version": "2022-12-16",
"changes": [
"Fix deck review"
]
},
{
"version": "2022-12-01",
"changes": [
"Add visual indicator to card change via swipes and several fixes (it is not yet perfect but should be better and I try to graudally improve it)",
"Add option to check multiple decks in Binocular deck menu and Export them at once",
"Fix Amaranth import decks with versions and with vampires with multiple groups editions",
"Fix 'Missing complete collection' in Inventory",
"Fix Deck Compare",
"Few other small fixes"
]
},
{
"version": "2022-11-20",
"changes": [
"Add seating emulator (button in Decks, I know it is not directly related but there are no other 'useful tools' to make separate section *yet*)",
"Show changes when syncing public deck with its parent from your library",
"Add Sect search to TWD/PDA (it search for >65% of crypt)",
"Fix export all decks to Excel (xlsx) and with revisions"
]
},
{
"version": "2022-11-15",
"changes": [
"Update Rulings (incl. FoL cards)",
"Update TWDA",
"Fix delete revision with Inventory Mode"
]
},
{
"version": "2022-11-14",
"changes": [
"Add Fall of London cards",
"Improve page opening performance"
]
},
{
"version": "2022-11-11",
"changes": [
"Improve search, page layouts on wide screens (be sure it is not a simple to find optimal max width, not to spread everything to where width is not useful anymore but everything is just too sparse)",
"Fix more bugs from recent update"
]
},
{
"version": "2022-11-08",
"changes": [
"Use webp image format for card images on mobile (reduces image size by 60% with almost unnoticable quality reduction)",
"Add swipes to change card q-ty on mobile in Inventory and Search (to add to active deck)",
"Improved performance of opening deck by url",
"Filter file-pickers by extension for deck/inventory to exclude non-accepted formats",
"Fix more bugs from recent update"
]
},
{
"version": "2022-11-05",
"changes": [
"Fix several bugs from recent update",
"Add Apply Changes button to Deck Review to change your deck to proposed in Review",
"Add swipes to change Deck card q-ty on mobile (after tests will arrive to Inventory/Search)"
]
},
{
"version": "2022-11-02",
"changes": [
"Update Rulings",
"Update TWDA",
"Options to PDF Proxy with white or gray gaps",
"Many other fixes and small improvements",
"WARNING! There are A LOT of changes to under the hood technology which will help future development and maintenance of VDB, however it probably also brought some new bugs. Please report anything unusual, I rely a lot on community feedback to fix bugs. Fall of London update will come on November 14, and the target is to fix everything related to this 'refactoring' update so that you will have smooth experience with the new cards we are waiting for."
]
},
{
"version": "2022-10-15",
"changes": [
"Add deck tags feature to TWD/PDA: will show automatically determined tags using set of simple rules (more tags and rules improvement will come later!)",
"Update TWDA",
"Add Bloat trait to library search (cards putting blood to uncontrolled)",
"Add Maila promo",
"Many other fixes and small improvements"
]
},
{
"version": "2022-10-10",
"changes": [
"Add show warning when offline",
"Move pdf proxy creation to the browser (should resolve some issues happening from time to time)",
"Many other fixes and small improvements"
]
},
{
"version": "2022-10-03",
"changes": [
"Fix inventory library bug",
"Greatly increase TWD Cards History (https://vdb.im/twd/cards_history) performance (now actually usable!)",
"Add playtesters managing interface"
]
},
{
"version": "2022-09-28",
"changes": [
"Add playtest precons",
"Fix share inventory and playtest bugs"
]
},
{
"version": "2022-09-26",
"changes": [
"Add Share Inventory",
"Add protection for decks with playtest cards to be available for non-playtesters (by shared URL)",
"Add Patreon donation page"
]
},
{
"version": "2022-09-21",
"changes": [
"Update TWD",
"Add support of playtesting new cards. If you are playtester - please contact your coordinator for details (and if *you* are coordinator - contact me for access) - thanks Norman Brown for cooperation",
"Many bug fixes and small improvements"
]
},
{
"version": "2022-08-31",
"changes": [
"Update TWD (81 new decks in 2022! Thanks Vincent \"Ankha\" Ripoll for fantastic job)",
"Update cards Rulings (as usual, thanks Lionel \"Phoenix\" Panhaleux)",
"Add sorting and filtering for TWD Cards Appearance History",
"Fix Deck Exports to TWD format to follow current conventions; always export English card text for TWD format (will still use selected language for Text format)",
"Review will now create snapshot of the deck, so your review will always be against that version, even if author later changes his orignal deck",
"Library Sect search will include Title-requiring cards (they implicitly require Sect they belong to)",
"Many other bug fixes"
]
},
{
"version": "2022-08-25",
"changes": [
"Add Deck Review feature to make changes to any deck (not only yours) and share them using url without actually modifying the deck (changes saved in URL, original deck is never modified)",
"Rework Deck Compare feature: it will now clearly indicate which deck you edit and which deck is starting point (to which comparing against) and show changes to editable decks (previously was opposite)",
"Other small fixes/improvements"
]
},
{
"version": "2022-08-07",
"changes": [
"Add Hall of Fame by Cards First Appearance",
"Sort cards by TWD popularity in autocompletion form",
"Freeze cardtypes popover in TWD deck by click to preview cards in that category",
"Other small fixes/improvements"
]
},
{
"version": "2022-08-02",
"changes": [
"Add TWD Cards Appearance History (in Menu button next to X-button at TWD page). Performance is terrible, but it is non-essential feature with rare usage so I decided to release it is (with hope of future improvement)",
"Slight light-theme change",
"Fix card alphabet sorting in deck export (JOL and Lackey formats)",
"Small other improvements and fixes"
]
},
{
"version": "2022-07-26",
"changes": [
"Add Hall of Fame (in Menu button next to X-button at TWD page)",
"When manually entering card q-ty (from keyboard) in Deck, tab will move to next card q-ty",
"Offline-ready Inventory text export",
"Limit Public Decks by 35 crypt and 90 library cards",
"Show card preview in the bottom in Deck-Library and Inventory-Library in narrow browser window (when no space on the right is available)",
"Fix card searches with symbols (i.e. ':') and The in name",
"Fix BSC (Blood Shadowed Court) precon add to inventory (was incorrectly showing tick mark)",
"Improved Create vampire and Reduce bleed traits",
"Other small fixes"
]
},
{
"version": "2022-07-16",
"changes": [
"Preserve card in quick search (/cards, lightning button) between pages",
"Add Missing from All VTES Cards option for Inventory (button in Missing window) to show what you need for full collection",
"Add inventory status (virtual, flexible, fixed) filter in Advanced deck selector",
"Switch to text layout when card image not available (usually network problems)",
"Many other fixes"
]
},
{
"version": "2022-06-22",
"changes": [
"Update card images with NB images",
"More Brazilian Portuguese translations",
"Text-like exports (everything except excel and csv) now happen without server calls (offline-ready)",
"Many small fixes"
]
},
{
"version": "2022-06-13",
"changes": [
"Add Export all decks in csv/xslx",
"Fix sect/title search in crypt/library",
"Fix q-ty recalculation in inventory clan selector (to respect Show All, Only Owned, Only Problems filters)",
"Add notification on not-applied updates"
]
},
{
"version": "2022-06-11",
"changes": [
"Fix bugs in card search introduced after last update",
"Use more screen width in crypt/library search page on narrow desktop resolutions (1200-1400px)",
"Add multi-form search to capacity search in Crypt",
"Add 'Create vampire' trait to library search (Embrace-like actions)",
"Reduce cardbase bundle size",
"Some other fixes"
]
},
{
"version": "2022-06-07",
"changes": [
"New crypt/library search algorithm working in-browser without server calls, which will result in much faster search and card search is network-independent now (many thanks to Andrey 'Vaughnad' Davino)",
"Temporary locking your deck from edits will now use LOCK/UNLOCK icons (after deck name in Deck page), and there is dedicated SNOW indicator for permanent non-editable decks (created by Copy URL - Snapshot URL), so you will always see that deck you are seeing cannot be changed in the future. Same indicator available in QR URL window to check that link is non-editable (useful when scanning deck links during events)",
"Inventory Type/Discipline filters for library will now respect each other to show card q-ty for different options, and correctly recalculate missing (in gray under filters)",
"Add draw all cards button to draw deck window",
"Small other fixes"
]
},
{
"version": "2022-05-31",
"changes": [
"Add sorting in TWD/PDA by Date/Players/Favorites, and in Deck/Crypt by Sect",
"Simplify add many cards to Inventory by autofocusing new-card form after entering q-ty for new card",
"Removed used-in-inventory popup from card q-ty buttons in inventory (still available few pixels to the right on +-summary)",
"Significantly reduced answer size from server when searching for TWD (and slighly for PDA)",
"More Brazilian Portuguese translations."
]
},
{
"version": "2022-05-27",
"changes": [
"Add Brazilian Portuguese card images and card texts. Not all cards available so far, but that is still GREAT (big thanks to Helton 'Helt' Matiazi efforts!)",
"Fixed bug with non-english languages sometimes displaying black box instead of card image. Now if localized image is not available it will always fallback to English image.",
"Small other fixes"
]
},
{
"version": "2022-05-25",
"changes": [
"Many bug fixes"
]
},
{
"version": "2022-05-17",
"changes": [
"Update card base with New Blood set",
"Update TWDA",
"Add QR-code (live link to editable deck and non-editable deck-in-url) as an option for Copy Deck URL",
"Add Freeze Deck button (in advanced deck select and after deck name) which will disable deck crypt/library edition unless turned off to protect established decks from misclicks and everything",
"Add Reprint option for Set/Precon search which will return only reprinted cards (will includes Promos if first printed as such)",
"Newly add inventory cards (which were not in inventory) will have q-ty box focused by default to speed up adding collection",
"Add sorting for inventory",
"Moved card selector to bottom in /Cards on mobile (useful for those having thumbs shorter than 5')",
"Fixed card selector auto-focus on mobile",
"Many other fixes"
]
},
{
"version": "2022-05-07",
"changes": [
"Significant internal reworks which will slightly decrease network calls and will help in the future development (but as a result it may bring some new bugs, so dont hesitate to report and refresh the page as a first measure when encountering new problem)",
"Split Anthology set into Anthology (2017, 100-cards bundle) and Anthology I (2019, 89-card bundle)",
"Fix deck preview in inventory import from deck/precon",
"Show q-ty of decks/precons you have in inventory when adding card from decks/precons",
"Fix deck import (including to accept The Cardname and Cardname, The and some other bugs)",
"Fix deck library detailed info (no-discipline cards)",
"Some other fixes"
]
},
{
"version": "2022-04-30",
"changes": [
"Add search similar Deck in TWD/PDA (symmetry-iconed button in Decks page)",
"Improved deck description layout in TWD (players count)",
"Add separate messages for NO CARDS FOUND and NO CONNECTION",
"Other bug fixes"
]
},
{
"version": "2022-04-15",
"changes": [
"Add Crypt/Library cards compare feature (open card window and click Compare Card button [Magnifiying Glass with Heart icon])",
"Bug fixes and small improvements"
]
},
{
"version": "2022-04-09",
"changes": [
"Add logic switch (AND / NOT) button for text search filters (each of multiple text filters can use its own logic for searches like [!] unique [&] mortal Type:Ally)",
"Add detailed disciplines summary for crypt searches like in Deck ([i] button)",
"Export Deck in TWD format will add standard info block required for TWD reports",
"Fix bug with empty decks/inventory after login",
"Other bug fixes and small improvements"
]
},
{
"version": "2022-03-29",
"changes": [
"Add post-deck-import window with non-imported cards (mistakes in card names or something like this) which enable to manually recognize and add cards",
"Add search Only-In-Name option to card text search",
"Don't autoadd card to inventory with 1x q-ty if card not in inventory",
"Add button to Card Preview to search TWD with the card",
"Sort clans in clan filter in Advanced Deck Selector",
"Fix Set search filter to correctly work with any-BCP option, and now Precon any-BCP filter will only return BCP cards in BCP precons ignoring Promos, which will be included in any-BCP Set search",
"Other bug fixes"
]
},
{
"version": "2022-03-20",
"changes": [
"Update TWDA",
"Update Rulings",
"Multiple text search forms in Crypt/Library",
"Add sort crypt by clan in Decks",
"Add 'Not newer' and 'Not Older' options for Set search in Crypt/Library (in addition to 'Or Newer' and 'Or Older' which will show cards printed in selected Set or any newer/older Set without restrictions of being printed also earlier/later)",
"Bug fixes"
]
},
{
"version": "2022-03-07",
"changes": [
"Add Favorites counter to PDA",
"Many bug-fixes"
]
},
{
"version": "2022-02-26",
"changes": [
"Add Public Deck Archive (PDA) In Beta! Please read documentation",
"Small other fixes"
]
},
{
"version": "2022-02-04",
"changes": [
"Add localized proxy (only for cards with translated images)",
"Add 'auto' color theme option which will follow system preferences",
"Merged 'import without account' options into main import/new button",
"Fix buttons with dropdown menu not to go partially off screen",
"Small other fixes"
]
},
{
"version": "2022-01-29",
"changes": [
"Missing cards in Inventory now respect applied filters (clan/discipline/card type), including export from Missing card window",
"Add popup with detailed Set info on click in card view on mobile (same as on mouse hover on desktop)",
"Fixed Inventory Mode not properly coloring quantity of cards in not-your (precons, twd, other urls) decks. Now should paint in yellow cards you have enough in total, but need to use cards from Fixed decks, red where you dont have enough cards at all, and no coloring where everything is OK (cards are free or in Flexible decks)",
"Fix twd search by cards (was problem with 0>=; logic)",
"Fix add crypt card button from recommended cards not visible sometimes",
"Small other fixes"
]
},
{
"version": "2022-01-20",
"changes": [
"Add import deck without account. This will allow to upload the deck without adding it to your account (possible without having account at all). One of the use case is to upload decks for TWD reports to put the links without messing your account",
"Updated Rulings",
"Added bright halos to some icons in dark theme (like in disciplines icons) to slightly improve visibility",
"Other fixes"
]
},
{
"version": "2022-01-12",
"changes": [
"Add ES/FR translation for V5 Anarch sets",
"Add Kyuen promo",
"Add deck crypt discipline distribution under info (i) button",
"Add export for missing cards in deck (inventory-mode)",
"Add to TWD search by card quantity 'less than and may not include (0<=)' optional logic (previously '<=' only search for deck including card which is now available under '1<=;' option).",
"Increased deck description size to 32768 symbols and default unfolded description length to 12 rows",
"Make pdf proxy delimiters slightly bigger and brighter",
"Fixed crypt/library pages layout for unlogged users",
"Many small other fixes"
]
},
{
"version": "2022-01-05",
"changes": [
"Add checkboxes for text search in Crypt/Library to search only in card text and to search using regex (default is name+text without regex)",
"Many fixes"
]
},
{
"version": "2021-12-31",
"changes": [
"Add Discipline filter to library in Inventory",
"Fix Advanced Deck Selection window on tablet-size resolutions",
"Fix 'Search in Inventory' in Crypt/Library"
]
},
{
"version": "2021-12-25",
"changes": [
"Many improvements on page layouts and adaptiveness for tablet-size screens. Those who were dissapointed by VDB being unusable on their tablets should give it another try now!",
"Fix AU/DM/TU set images to show original PDF-release images, and move newer Kickstarter images to KSU set",
"Fix import decks with new V5A cards from Amaranth",
"Fixes for bugs introduced by new multigroup vampires (deck export, proxy generation, etc)"
]
},
{
"version": "2021-12-15",
"changes": [
"Add Card Ideas ('recommendation') feature to Deck, based on card compatibility in TWDA"
]
},
{
"version": "2021-12-09",
"changes": [
"Updated card images from KRCG",
"Fixed deck bug causing to sometimes restore deck to much older state after deleting card",
"Fix card sorting in Deck-Library (thanks emime)",
"Fixed set/precon search to respect Promo card release dates (thanks emime)",
"Fixed deck delete to sometimes not delete all revisions",
"Other small UI fixes/improvements"
]
},
{
"version": "2021-12-05",
"changes": [
"Fix critical bug with promo cards from HB2 (Dracon, Capucin, etc)",
"Rename Thaumaturgy to Blood Sorcery",
"Add library search traits 'reduce bleed' and '+votes / title'"
]
},
{
"version": "2021-12-03",
"changes": [
"Finalize transition to Banu Haqim/Ministry",
"In pdf proxy sort library cards by card type (Master, Action, etc)",
"Add Recent Deck selection to Deck Compare",
"Increased height of some (opened) filters",
"Small other fixes"
]
},
{
"version": "2021-12-01",
"changes": [
"Add new V5 (Anarchs) precons",
"Add Recent decks to Deck selection, will store last 10 decks (shared by url or twd) you have seen (to quickly come back to deck-friend-shared-last-week) - do not sync between devices (stored locally in your browser)",
"Import Versions (called Revisions in VDB) when importing deck from Amaranth",
"Add Changelog page",
"Add additional (type 'YES') confirmation to delete Inventory and Decks with revisions (not to accidentally remove full deck missclicking Delete Revision)",
"Various small other fixes and improvements"
]
},
{
"version": "2021-11-23",
"changes": [
"Added 'Or Older' filter option for Set search",
"Fixed Import/Export for new multigroup vampires (Victoria Ash, etc). Will append '(GX)' after name, confirmed to be implemented same way in Lackey",
"Many other small fixes (mainly UI)"
]
},
{
"version": "2021-11-13",
"changes": [
"Reworked Inventory page with significant performance improvement (most noticeable on BIG inventories) for both rendering and Import",
"Small other fixes/improvements"
]
},
{
"version": "2021-11-06",
"changes": [
"Update card base to 2021-10-27 (no new precons yet, just Promos and Ravnos/Chimersty POD reprints). New crypt 'revival' cards with different groups are not yet working correctly with import/export, it will be fixed later Add 'negative' option to some crypt/library filters (logic options are OR ' //', AND '&' and NOT '!' or just OR/NOT depending on filter). THIS IS BREAKING CHANGE FOR OLD SEARCH URLs working with this filters, please update them if you shared it publicly and expect to continue to work. I dont like to break things, but sometimes it's necessary",
"Make 'See ADV/Base' clickable in card popup",
"Fix library search sort by discipline",
"Fix library search cards with <=0 pool or blood cost not showing no-cost cards",
"Fix removing cards from TWD search by cards Fix Inventory-Mode for Deck Compare"
]
},
{
"version": "2021-10-29",
"changes": [
"Add buttons to Deck Compare page: Show missing cards in popup window Proxy missing cards Back to Decks Copy URL to compare (simple way to share your ideas of how to improve friend's deck: clone his deck into your account, change it as you like, compare both and share compare url with friend).",
"Added >= (less-or-equal) and = (equal) options for TWD search by Crypt and Library cards",
"Add inventory import from FELDB (.csv format)."
]
},
{
"version": "2021-10-26",
"changes": [
"Add Deck Compare feature (can choose from your decks, precons or any other shared or TWD deck by URL or ID)",
"Show banned year",
"Small fixes"
]
},
{
"version": "2021-10-20",
"changes": [
"Added Hide deck option ('bulb' button in advanced deck selection, the 'binoculars' button) which hides the deck from main deck selector. Can be useful to 'archive' the decks and simplify navigation between active decks.",
"Added By-Group and By-Name sorting for crypt in Deck",
"Added multi-set and multi-setprecon search in Crypt and Library",
"Added By-Clan stats in library summary info for Deck ( (i) button), added none-discipline/clan category and calculation of % are done now agains library total excluding masters",
"Search TWD by In-Inventory match supplied with additional option of rescale to 75 cards",
"Rulings opens in separate browser tab on click by default",
"Many small UI improvements and fixes"
]
},
{
"version": "2021-10-12",
"changes": [
"Updated TWDA",
"Fixed sorting of multi-types and multi-disciplines to alphabet order (e.g. it is always Action/Combat and not Combat/Action and same for disciplines, regardless of Basic/Superior)",
"Account names are now case-insensitive (both for new and old accounts)",
"Small other UI fixes"
]
},
{
"version": "2021-10-09",
"changes": [
"Add set selection for Proxy (with original scans)",
"Add card scans (Kickstarter Unleashed, KoT and HttB reprints)",
"Fix tag remove in advanced deck selection window",
"Fix deck author in exported decks. Thanks to Karl Schaefer",
"Many small UI fixes"
]
},
{
"version": "2021-10-05",
"changes": [
"Nothing 'new', just many tiny UI improvements (under the hood they are not that small, so please report problems/glitches/etc they are expected) and some bugfixes (also rulings update)"
]
},
{
"version": "2021-09-23",
"changes": [
"Add clan filter for Deck Selection window ('goggles' icon)",
"Add draw chances in open hand for card-types in library",
"Add 'Missing Cards' window for Inventory",
"Add import from Lackey .dek format (I don't use Lackey so cannot extensively test it, please report bugs if you find it)",
"Moved Navigation bar to bottom on mobile",
"Move inventory-mode switch to burger menu in Navigation bar on mobile"
]
},
{
"version": "2021-09-21",
"changes": [
"Improved Inventory quantity calculation (shows Total+Unique and Missing+Unique) consistently regardless of chosen filter (All / Owned / Problem).",
"Add Discipline summary in Deck library info. Thanks to Igor Beslin for proposal!",
"Improved internal URL-ing between tabs, going back-forward with browser methods will be better (still not perfect, though).",
"Crypt search for Title trait will show vampires with relevant title while merged. For other traits no changes (title is visible in result line and other traits requires reading card, so will be too confusing to clarify who have trait in-built and who needs merge). Thanks to Hobbesgoblin for proposal!",
"Small other fixes"
]
},
{
"version": "2021-09-16",
"changes": [
"Add tags info into main deck window long-awaited necessary feature, I apologize for delaying with it",
"Add deck/intentory export to Excel format (.xslx)",
"Export to CSV format changed into 'Quantity,Card ID' (ID's according to VEKN CSV cardbase) will be more convenient for any kind of automation (Card ID is much more reliable than name), and end-users with spreadsheets should be satisfied with Excel",
"Export All decks now returns zip-archive with all files to simplify saving (also with timestamp, so your 'MY BEST DECKS FOR PROGENY' folder is now easier to manage). Now only for text formats (lackey, twd, etc), but will also support CSV, Excel in the future",
"Small other fixes"
]
},
{
"version": "2021-09-14",
"changes": [
"Add chance calculation of drawing X unique crypt cards (click (i) button). Was not easy to do it, but totally worth it.",
"Add banned card indication for TWD and user deck",
"Improved many popoup (modal) windows on mobile (like advanced deck select, import from precon/deck to inventory, etc). They are not as detailed as wide desktop windows, but at least usable.",
"Some other fixes (incl. last report by Hobbesgoblin)"
]
},
{
"version": "2021-09-12",
"changes": [
"Add Unleased Kickstarter as a Set/Precons (it's not an 'official' set, but should be more useful like this)",
"Fix deck crypt discipline layout for decks with many different disciplines in crypt (as in bundles or in some decks like 'Girls will find...')",
"Small other fixes"
]
},
{
"version": "2021-09-10",
"changes": [
"Add images of banned reprints (Ashlesha, etc)",
"Add clan images to precon filter in crypt/library search",
"Save crypt/library sorting to browser local storage",
"Decrease discipline/clan icons sizes (most notable on mobile)",
"Improved crypt discipline alignment on mobile (should be better on wider resultions, but may cause problems on narrower- will try to fix it in the future, idk how though)",
"Other small fixes & improvements"
]
},
{
"version": "2021-09-08",
"changes": [
"Add 'Advancement' trait for Crypt search, showing all Advanced vampires and their Base versions",
"Add reference to/from Base/Adv vampires in detailed card view (hover over to see another version)",
"Save 'Add Mode' state to browser local storage",
"Copy URL buttons grouped in menu and 'Immutable URL' renamed to 'Snapshot URL'",
"Fix draw chances to exclude already 'played' cards from calculation",
"Fix 'None' Discipline search in Library",