-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathhistory.html
More file actions
1240 lines (1148 loc) · 57.9 KB
/
Copy pathhistory.html
File metadata and controls
1240 lines (1148 loc) · 57.9 KB
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE>CrossFire History</TITLE>
</HEAD>
<BODY BGCOLOR=#000000 VLINK=#FF0000 LINK=#FFFF90 TEXT=#FFFF90>
<H1 ALIGN=center>CrossFire History</H1>
<HR><P>
<H3>18 Nov 2005 (Shandrill)</H3>
<UL>
<LI>Chat: Added image URL for Profiles. This image is displayed in place of the card icon (like a card scan).
<LI>DataBase: Added blueline for online play to DUc/10 Enter Darkness Together.
<LI>DataBase: Added level of "?" to UDc/08 The Cavernous Hall.
<LI>DataBase: Corrected card text for DRc/06 Draconic Allies.
<LI>DataBase: Many corrections to bluelines and attributes throughout the database.
<LI>DataBase: Converted Attributes and Usable Cards to use IDs rather than text. More speed and less bloat!
<LI>DataBase: Added Dragon and Undead Unarmed Combat attributes to the appropriate cards.
<LI>DeckIt: Added display of total number of cards that can use support cards to Deck Status window.
<LI>DeckIt: Added optional display of mini card icons.
<LI>DeckIt: Added "Old School through Dragonlance" deck format in 55, 75, and 110 card flavors. Yummy!
<LI>Online Play: Added optional display of mini card icons.
<LI>Online Play: Fixed bug where cut message was not showing on the Panes of War.
<LI>Online Play: Fixed bug where combat total would not display if a player was removed and then added again.
<LI>Online Play: Added option to disable automatic recycle of discards.
<LI>Online Play: Added ability to save a game.
<LI>Online Play: Added option to disable the display of card type headings in the hand.
<LI>Online Play: Moved 'Knock' button to be next to the Phase buttons.
</UL>
<H3>12 Sep 2005 (Artemis II)</H3>
<UL>
<LI>Card Viewer: Added export to Flat Text Database. This is to be used by other programs for reading the database.
<LI>DataBase: Added Beholder attribute to 4th/068 Lair of the Eye Tyrant.
<LI>DataBase: Added Flyer blueline to CH/016 Tummbutt, the Faerie Dragon.
<LI>Online Play: Fixed bug that occured when viewing one's draw pile.
</UL>
<H3>09 Sep 2005 (Artemis)</H3>
<UL>
<LI>Chat: Fixed bug that occured when closing the window shortly after typing some text.
<LI>Chat: Whispers now appear in a separate private chat window.
This can be disabled via Configure -> Chat.
<LI>DataBase: Corrected world designation for Rule cards in the Conquest booster.
<LI>DataBase: Flesh Golem and Clay Golem are now Golems and are much happier now.
<LI>DataBase: Added blueline to CQ/046 Gib Occav.
<LI>DataBase: ARc/09 Killian has completed his swimming lessons.
We all thought the water wings looked silly, Killian.
<LI>DataBase: Crime Lord is now a Beholder.
<LI>DeckIt: Added selection of starting set or group. Configure -> DeckIt.
<LI>DeckIt: Now saves position of panes and size of DeckIt window.
<LI>DeckIt: Added ability to find a card in other decks. Available from Card menu or right-click menu.
<LI>DeckIt: Fixed bug with removing a group of cards from the Considering Cards.
<LI>Format Maker: Added information/notes.
<LI>Format Maker: Fixed rare bug that occured when saving a new file.
<LI>Format Maker: CrossFire now becomes aware of the new format when it is saved.
Note that DeckIt windows will need to be closed and reopened to see the changes.
<LI>Online Play: Added a sound when an event is played to the Panes of War. Change the sound with Configure -> Sounds.
<LI>Online Play: Events are red and bold in the Panes of War.
<LI>Online Play: Fixed bug that occured when adding someone as a watcher, removing them, and adding them as an opponent.
<LI>Online Play: Added a card type selection to the View Draw Pile window.
<LI>Online Play: Completely changed the way spoils are drawn and played to conform to the Spellfire Tournament Rules.
<LI>Online Play: Added "Use" option to right click menu on cards in player's side of Panes of War.
<LI>Online Play: Changed "Use" option on right click menu for Champions in Pool.
<LI>Online Play: When a player "Cuts" the deck, a message such as "Cut: 7" is displayed in the Panes of War combat total.
<LI>Online Play: Playing a hidden card is now done with Shift-Click.
<LI>Online Play: Added customization of foreground color for Realms, Holdings, Dungeon, and Rule cards.
<LI>Ultra Searcher: Clear now clears the "Match All" checkbox for Usable cards.
<LI>Viewing Cards: Added option to remove the default rule card text. This option is defaulted to remove the text.
</UL>
<H3>22 July 2005 (Blackstaff)</H3>
<UL>
<LI>Card Viewer: Listing of Phase attributes is now less verbose.
<LI>Chat: Fixed clicking URLs with "&" in them on Windows.
<LI>Chat: Display CrossFire Time is now available to all and is displayed on the menubar.
<LI>CrossFire: Rewrite of deck format directory reading to allow cascading menus.
<LI>CrossFire: New feature - the Deck Format Maker for creating deck formats.
<LI>DataBase: Corrected card text for 3rd/134 Hookhill.
<LI>DataBase: Added level bonus to CQ/028 The Apocalypse Stone.
<LI>DataBase: Added blueline to DL/087 Return.
<LI>DataBase: Added Dwarf status to Rikus.
<LI>DataBase: Corrected bonus for CQ/073 Castle Strahd.
<LI>DeckIt: Fixed bug that occured when clicking on Deck label in the deck differ utility.
<LI>DeckIt: Added display of deck format type to title bar.
<LI>DeckIt: Added display of Allowed Cards to Deck Status window.
<LI>DeckIt: Added 12 decks that are actual 1st Edition starters. Want a challenge? Try one of these in online play!!
<LI>Viewing Cards: Decreased the amount of "window bounce" that can occur especially with embedded card view windows.
<LI>Online Play: Added message when a player moves cards after viewing the draw pile.
<LI>Online Play: Pressing up or down will move the selection.
<LI>Online Play: Fixed display of inverted opponent's formation in 8 and 10 realm games.
<LI>Online Play: Added customization of background color for Realms, Holdings, Dungeon, and Rule cards.
</UL>
<H3>01 Mar 2005 (Thrice Hearty)</H3>
<UL>
<LI>Card Views: Card name for sets DR, IQ, MI, CH, and CQ can be shift-clicked to link to Yogi's web site about the card.
<LI>Chat: Macintosh OSX only. Disabled graphical emoticons on pop-up menu.
<LI>Chat: Invalid card links (such as FR/199) are now ignored and are displayed as regular text.
<LI>Chat: Card links for sets DR, IQ, MI, CH, and CQ can be shift-clicked to link to Yogi's web site about the card.
<LI>Chat: Added some new actions: 'brb', 'bbl', and 'back'.
<LI>CrossFire: Corrected warning message to state that Tcl/Tk version 8.4 is required to run CrossFire.
<LI>DataBase: Corrected card text for CH/072 Not So Fast.
<LI>DataBase: All card sets have updated card phase information.
<LI>DataBase: Added "Harmful" blueline to NO/175, 1st/175, 2nd/175 Mist Wolf.
<LI>DataBase: Corrected card text for CH/004 Murtha the Gypsy.
<LI>DataBase: Corrected blueline for IQ/047 The Apocalypse.
<LI>DataBase: Added Coastal to RL/015 Sri Raji and NS/001 The Vast Swamp.
<LI>DataBase: Corrected missing bonus for AR/012 Seal of Lost Arak.
<LI>DataBase: Added blueline to AR/092 Ancient Kalidnay.
<LI>DataBase: Corrected world icon for MI/076, MI/077, and MI/078.
<LI>DeckIt: Added check for adding Not So Fast to a deck with The Caravan or Good Fortune.
<LI>DeckIt: Added warning check for adding The Azure Tower of Onad the Fallen and A Good Defense.
<LI>DeckIt: Added mode to display deck by last card digit.
<LI>DeckIt: Added last card digit information to Deck Status window.
<LI>DeckIt: Updated Anti-SpeedDeck formats to include RR/030 City States as a banned card.
<LI>DeckIt: Added resizing between notes and card selection.
<LI>DeckIt: Added resizing between deck and considering cards.
<LI>DeckIt: All world war formats now allow any dungeon or rule card.
<LI>Help: Fixed bug of help not displaying on Mac OSX.
<LI>Online Play: Added mouse-over help to opponent's deck view window to remind that you can use control to select multiple cards.
<LI>Online Play: Corrected resize problem for deck view window.
<LI>Online Play: Added "Shuffle" to the Pool menu.
<LI>Online Play: Removed the ability for opponents to View a hidden realm.
<LI>Online Play: Changed the message displayed when Selecting or Attacking an opponent's hidden realm. Now says "hidden realm A" rather than the name of the realm.
<LI>Online Play: Now displays shuffle message when a player is out of cards and the discards are recycled to the draw pile.
</UL>
<H3>31 Dec 2004 (Omega)</H3>
<UL>
<LI>Chat: Added typing indicator. This will eventually become useful in that it will relay the information to the others in the realm.
<LI>Chat: Fixed Mac OSX bug of chat window not displaying after failed connection attempt.
<LI>DataBase: Corrected title for POR/179 Assassino.
<LI>DataBase: Added "Dwarf" attribute to UD/066 Moradin's Avatar.
<LI>DataBase: Removed "Broken" blueline from MI/049, 051 and 090. Not sure where that came from.
<LI>DataBase: Added blueline to BR/005 Avanil.
<LI>DataBase: Corrected the phase information for the following sets: PR, RL, DL, FR, AR, PO, UD, RR, BR, DR, NS, and DU.
<LI>DataBase: Updated card text and blueline for IQ/047 The Apocalypse.
<LI>DeckIt: Added "Display Deck Key" to Utilities menu.
<LI>DeckIt: Updated World War deck formats to allow dungeon and rule cards.
<LI>Fan Set Editor: Changed clear form key binding to Ctrl-L.
<LI>Online Play: Added mouse-over help to deck view window to remind that you can use control to select multiple cards.
<LI>Online Play: Added configuration of Out of Play display name.
<LI>Online Play: Fixed bug of game play messages not being written to log file.
</UL>
<H3>15 Oct 2004 (Fortification)</H3>
<UL>
<LI>Configure: Improved chat log file selection.
<LI>DataBase: Corrected world for IQ/024 Silversun.
<LI>DataBase: Corrected wording for IQ/079 Permanency
<LI>DataBase: Corrected wording for CH/059 Logistics.
<LI>DataBase: Corrected wording for CQ/018 Destroy Thought.
<LI>DataBase: Corrected title for CQ/057 Son of Tasslehoff.
<LI>DataBase: Added basic phase information to all sets.
<LI>DeckIt: Updated Anti-SpeedDeck format.
<LI>DeckIt: Added Online League Season 1 deck format.
<LI>Fan Set Editor: Added menu option to add basic phase information.
</UL>
<H3>27 Aug 2004 (Harmony II)</H3>
<UL>
<LI>Configure: Added Tooltips configuration.
<LI>Chat: Added automatic reading of MOTD (Message of the Day) at login.
<LI>Database: Conquest cards without a world now show no world icon.
<LI>DeckIt: Deck notes now are cleared when creating a new deck.
</UL>
<H3>20 Aug 2004 (Harmony)</H3>
<UL>
<LI>BackUp: Fixed auto backup date check to work with international date formats.
<LI>Chat: Attempts to make email addresses clickable.
<LI>ComboMan: Fixed bug that occured when selecting a card type that was not included in a card set.
<LI>CrossFire: Works on Mac OSX now! Pre-OSX is no longer supported. Special thanks to Simon Dorfman for his extensive assistance with this.
<LI>CrossFire: New language supported! Français translated by Frédérick Pogu.
<LI>CrossFire: Some (very little) mouse-over help has been added. See Configure CrossFire to disable.
<LI>Database: Corrected spelling of "Millennium" sticker booster.
<LI>Database: Added (Def) blueline to FR/043 Limited Wish and RR/048 Intercession per blueline list on Spellfire.Net.
<LI>Database: Added Conquest sticker booster.
<LI>Database: Added "golem" card attribute.
<LI>DeckIt: Corrected Anti-SpeedDeck format.
<LI>DeckIt: Fixed bug that occured when drag-n-drop of an entire card type.
<LI>DeckIt: Added area to place cards that may be considered for a deck.
<LI>DeckIt: Fixed bug that occured when selecting a card type that was not included in a card set.
<LI>DeckIt: Updated 55, 75, and 110 card Anti-SpeedDeck formats to ban appropriate Conquest cards.
<LI>Fan Set Editor: Added optional creation of new world when creating a fan set.
<LI>Online Play: Added support for CH/047 Metal Detector. Discards -> Random To Deck.
<LI>Online Play: Added right-click menu on opponent's champions with option to attack that champion. Useful for when IQ/003 Arena of Dori the Barbarian is in play.
<LI>Online Play: Added option to create only one card view window. See Configure Online Play to enable.
<LI>Online Play: Added area to panes of war to enter combat level total. This will be displayed by your name at the top of your pane.
<LI>Online Play: Added ability to see opponent's Out of Play cards by double-clicking on the Out of Play label.
<LI>Online Play: Added "Select" to right-click menu on opponent's cards. This sends a message that you have selected that card.
<LI>Viewing Cards: Card view windows now have a menu on Macintosh.
<LI>Viewing Cards: Replaced card type icons with better ones.
<LI>Viewing Cards: Double-clicking card name copies the card ID and name to the clipboard so it can be pasted elsewhere.
</UL>
<H3>26 July 2004 (Dagrande)</H3>
<UL>
<LI>Card Viewer: Fixed bug with viewing card images in formats other than gif. Most formats should work once again, such as jpg, bmp, tiff, etc. This only works on Windows and you must use ActiveState Tcl.
<LI>Chat: Added option to automatically start with Champion list open.
<LI>Chat: Added new actions file Combat.cfa with game play related actions. Use Configure Chat to change actions.
<LI>ComboMan: Added optional embedded card viewer. See Configure ComboMan to enable.
<LI>Combo Viewer: Added optional embedded card viewer. See Configure ComboMan to enable.
<LI>Database: Corrected attributes of CH/003 Beastmaster.
<LI>Database: Corrected card text for CH/066 The Pack.
<LI>DeckIt: Added optional embedded card viewer. See Configure DeckIt to enable.
<LI>DeckIt: Added 55, 75, and 110 card deck formats for Simon Dorfman's Anti-SpeedDeck rules.
<LI>Fan Set Editor: Added ability to create a new fan set.
<LI>Fan Set Editor: Added optional embedded card viewer. See Configure Fan Set Editor to enable.
<LI>Online Play: Added verification before restarting a game.
<LI>Online Play: Added "Use Realm" to right-click menu on player realms.
<LI>Online Play: Added "Attack" to right-click menu on opponent realms and dungeon.
<LI>Online Play: Added play to Panes of War when viewing one's draw pile.
<LI>Ultra Searcher: Added optional embedded card viewer. See Configure Ultra Searcher to enable.
<LI>Ultra Searcher: Added bindings such that pressing the "Return/Enter" key performs a search.
<LI>Warehouse: Added optional embedded card viewer. See Configure Warehouse to enable.
</UL>
<H3>07 November 2003 (Awnshegh)</H3>
<UL>
<LI>Database: Updated all sticker boosters to match the Spellfire.Net website.
<LI>Online Play: Changed dice rolling to show results of each die's roll.
</UL>
<H3>31 October 2003 (Undead)</H3>
<UL>
<LI>BackUp/Restore: Now works with fan sets.
<LI>Card Viewer: Supports multiple languages.
<LI>Card Viewer: Export to HTML follows settings for displaying bluelines, attributes, and usable cards.
<LI>Card Viewer: Fixed a bug that occured when exporting all card sets to HTML.
<LI>Card Viewer: Added customization of display colors for bluelines, attributes, and usable cards.
<LI>Card Viewer: Added RTF export.
<LI>Card Warehouse: Added display of card type to verbose listing.
<LI>Card Warehouse: Added support for sticker boosters.
<LI>Chat: Added ability to click on email address in a profile to send email. This only works on Windows for now.
<LI>ComboMan: Corrected printing of RTF format.
<LI>ComboMan: Added option to print card text. This is set under Configure -> ComboMan.
<LI>Configure: Fixed error that occured when changing "All Card Sets" for DeckIt!, Warehouse, and Swap Shop.
<LI>Configure: Added button to restore default settings.
<LI>DeckIt: Added printing of deck notes.
<LI>DeckIt: Updated level limit for 75 card decks. The maximum champion level total is now 125.
<LI>Swap Shop: Added support for sticker boosters.
</UL>
<H3>03 October 2003 (Sairye)</H3>
<UL>
<LI>Card Viewer: Added option to show the icon level when card scan is shown. Option is called "Always Show Icon Level" in Configure.
<LI>Card Viewer: Added support for card images in jpg, png, tiff, or bmp format IF you have ActiveState Tcl installed. This feature is not supported on Macintosh.
<LI>Chat: Added optional sounds rather than ringing the bell when a champion logs in or out. This is set under Configure -> Sounds.
<LI>CrossFire: Added option to Configure for selecting if paned windows should continuously redraw when resizing. The windows are the Chat, Player, and Opponent windows.
<LI>Help: Fixed bug on some Windows platforms where the help would not be displayed.
<LI>Launcher: Fixed bug on Linux platform where modules would not start when clicked.
<LI>Online Play: Removed option to select how many attachments are displayed under realms.
<LI>Online Play: Changed window to allow custom sizing of the four main areas.
<LI>Ultra Searcher: Supports multiple languages.
</UL>
<H3>04 September 2003 (Gabriel)</H3>
<UL>
<LI>CrossFire: Fixed possible bug with file associations if directory has a space in it.
<LI>CrossFire: Added default deck format limits for sticker boosters.
<LI>Database: Added Millenium and Chaos Sticker Boosters.
<LI>DeckIt: Fixed check for allowing multiples, such as 3rd/256 Nomad Mercenary.
<LI>Online Play: Added option to select how many attachments are shown below a realm.
<LI>Online Play: Fixed minor bug with realm formation display.
<LI>Online Play: Added dice rolling to support Millenium and Chaos boosters.
</UL>
<H3>15 Feb 2002 (MIA)</H3>
<UL>
<LI>Card Warehouse: Fixed rare bug with saving inventory when multiple cards are selected.
Reported by Steve Brazelton.
<LI>Configure: Changed CrossFire chat server address.
<LI>Configure: Added ability to edit a server's information.
<LI>CrossFire: Make sure windows with saved positions are visible.
<LI>DeckIt: Changed 'Unlimited' deck format to allow multiple copies of cards.
</UL>
<H3>30 Jul 2001 (Naomi)</H3>
<UL>
<LI>BackUp: Save options configuration.
<LI>Card View: Added clicking on icon to cycle through name, icon, and card image.
<LI>DataBase: Updated card text for IQ/047 Apocalypse to match Orge's version 2.0 changes.
<LI>DeckIt: Added 55 Card Uncommon Valor deck format.
This format will be used at GenCon 2001.
Thanks to Matt Piaszak for this submission.
<LI>Restore: Restore options configuration, if desired.
</UL>
<H3>13 Apr 2001 (TimG)</H3>
<UL>
<LI>Card Viewer: Added Control-Click to big window set selection for multiple sets.
<LI>Database: Updated card texts throughout InQuisition sticker booster.
<LI>DeckIt: Added Control-Click to big window set selection for multiple sets.
<LI>Warehouse: Added Control-Click to big window set selection for multiple sets.
<LI>Warehouse: Added card type selection.
Requested by Jay "Elric" Weber.
</UL>
<H3>09 Nov 2000</H3>
<UL>
<LI>Card Viewer: Changed 'All Card Sets' to be all card sets selected under configure.
Requested by Jim Jennings.
<LI>Chat: Added selection of CrossFire server.
This is an addition for possible future expansion.
<LI>Configure: Added selection of card sets for Viewing Cards.
<LI>Online Play: Added display of number of cards in draw pile.
<LI>Online Play: Fixed bug that occured when attempting to open an invalid deck.
<LI>Ultra Searcher: Added 'Remove' option to right-click menu on results list.
Requested by Storm Mage.
</UL>
<H3>26 Jul 2000</H3>
<UL>
<LI>Card Viewer: Fixed bug when exporting to HTML without creating an index.
<LI>Card Viewer: Added two new HTML exports for simple card listing.
<LI>Card Warehouse: Improved behavior when entering data into the Wanted, On Hand, or Value fields.
<LI>Chat: Fixed watching 6 realm games.
Reported by War Party.
<LI>Chat: Added configuration of message alert when window minimized.
Suggested by Elric.
<LI>Ultra Searcher: Changed last card number searches to be much more capable.
Requested by Bob C.
<LI>Warehouse: Added 'score' total to card counter.
Requested by Elric.
</UL>
<H3>16 Jun 2000 (Elric)</H3>
<UL>
<LI>Configure: Added editting of chat profile for use when not online.
Requested by Elric.
<LI>Configure: Added setting of event sounds.
<LI>DeckIt: Added checking of 'allowed cards' in deck formats.
This allows cards like AR/092 Ancient Kalidnay to be in a Ravenloft World deck.
<LI>DeckIt: Added deck notes to Information window.
Requested by Bob C.
<LI>Online Play: Added support for 4th/150 Elven Rebirth via Discards -> Recycle -> Elves.
<LI>Online Play: Added support for 8 realm game.
<LI>Solitaire: Added support for 8 realm game.
</UL>
<H3>28 Apr 2000 (Hugo)</H3>
<UL>
<LI>Chat: Added web site to user's profile.
This creates a clickable link when viewing a profile.
Requested by Elric.
<LI>CrossFire: Added file association for Windows.
<LI>DeckIt: Added new deck status window.
<LI>DeckIt: Fixed potential problem reading deck format files.
Windows seems to like to change the case of the letters in the filename.
<LI>DeckIt: Added check of number of copies of a card when changing deck formats.
<LI>Online Play: Added several more card types to Pool -> Pick Random.
Requested by Hugo Pereira.
<LI>Online Play: Added message when discarding a random card from hand.
Requested by Hugo Pereira.
<LI>Online Play: Added Mithril Hall FR/022, 4th/076 support.
First magical item or artifact in the deck will be drawn to the hand.
Requested by Hugo Pereira.
</UL>
<H3>14 Apr 2000</H3>
<UL>
<LI>Chat: Added support for chat logon/logoff, realm enter/leave messages, and home realm.
<LI>CrossFire: Added better "skin" support for the Launcher.
Try the StarFire icon set under Configure Launcher.
<LI>DeckIt: Corrected names for 75 and 110 card Online Classic formats.
<LI>Online Play: Fixed rare bug that occured when viewing cards in another player's panes of war.
Reported by many people...I finally found it!!
<LI>Online Play: Fixed bug when picking a random champion and the picked champion was a chase card.
Reported by Bob Carmichael.
<LI>Online Play: Allow right-click draw to draw up to 9 cards.
Requested by Bob Carmichael.
<LI>Online Play: Fixed bug when returning a card to draw pile, but move is canceled by closing the position selection window.
Reported by Troy Newham.
<LI>Online Play: Added ability to group champions in the hand.
Requested by Bob Carmichael.
</UL>
<H3>05 Apr 2000</H3>
<UL>
<LI>Online Play: Fixed bug when viewing one's hand where selected cards would disappear after closing the window.
</UL>
<H3>04 Apr 2000 (Bobnik)</H3>
<UL>
<LI>DeckIt: Fixed bug that occured when printing a deck.
Reported by Bob Carmichael.
<LI>DeckIt: Added printing of deck by world and card rarity.
<LI>DeckIt: Added a new deck format called Online Classic.
This format bans the 40 most used cards at GenCon in 1999.
<LI>DeckIt: Fixed bug where arrow keys did not work when editting the deck title.
Reported by Elric.
<LI>Help: Updated and fixed broken link for Configure section.
<LI>Online Play: Added several options to Pick Random card on Pool menu.
Requested by Bob Carmichael.
<LI>Online Play: Fixed bug where game window did not clear when opening a deck after a game was in progress.
Reported by Bob Carmichael.
<LI>Online Play: Corrected deck key generation for decks with dungeon cards.
<LI>Online Play: Added a "Use" command to the pool right-click menu.
Displays a message to the chat window that the player intends to use the card.
Used for cards such as Hettman Tsurin that are used from the pool.
Especially useful for hidden pools. Requested by Bob Carmichael.
<LI>Online Play: Added menu item Deck -> Draw To Panes of War.
Use this command for cards such as Lost Oasis 1st/242 and Three Card Monty NS/027.
<LI>Online Play: Removed Deck -> Lost Oasis menu item.
Use generic Deck -> Draw to Panes command.
<LI>Online Play: Added several options to Hand menu for discarding specific card types from hand.
Use these commands for cards such as The Rahasia or Forced Revolt.
<LI>Online Play: Removed The Rahasia and Forced Revolt from the Hand menu.
Use the appropriate Discard card type menu items for these cards.
<LI>Online play: Added functionality to retain order of selected cards when viewing a hand.
This is used to place cards in a specific order in the deck.
Requested by Kythrain.
<LI>Solitaire: Fixed bug where closing chat wanted to close solitaire games.
Reported by Bob Carmichael.
<LI>Solitaire: Fixed bug that occured when dragging cards from one solitaire game to another's panes of war.
Reported by Bob Carmichael.
</UL>
<H3>25 Mar 2000</H3>
<UL>
<LI>Online Play: Fixed displaying of card name when returning a card from hand to deck.
Reported by Varradami.
<LI>Online Play: Fixed deck compliance check.
Reported by everyone.
<LI>Online Play: Fixed viewing one's own draw pile.
Reported by Tim Barth.
<LI>Online Play: Fixed Pool -> Pick Random Card.
Reported by Bob Carmichael.
</UL>
<H3>24 Mar 2000 (Paladin)</H3>
<UL>
<LI>Chat: Fixed very rare bug that occured when automatic log in is selected and the chat server was started incorrectly.
Reported by Draxon Varradami.
<LI>Chat: Added configuration of card and web link color.
Requested by Kythrain.
<LI>Chat: Fixed bug where username was not updated in profiles.
<LI>CrossFire: Fixed card list searches when deleting the text and typing a new one.
<LI>CrossFire: Added memory usage configuration.
Larger memory usage will speed up online play.
<LI>CrossFire: Fixed display of filenames with spaces in them in the recent files list on menus.
<LI>DataBase: Useable cards complete for BR, DR, DU, NS, RR, UD.
<LI>Online Play: Fixed bug with Mulligan.
Reported by Varradami.
<LI>Online Play: Added verification when closing a game.
<LI>Online Play: Added support for Lost Oasis 1st/242.
Power is invoked with Deck -> Lost Oasis.
This will play the drawn card to the panes of war.
Requested by Paladin.
<LI>Online Play: Added support for The Rahasia RR/083.
Losing player does menu item Hand -> The Rahasia.
Requested by Paladin.
<LI>Online Play: Added support for Forced Revolt DR/023.
Affected player does menu item Hand -> Forced Revolt.
All allies in hand will be discarded.
A message will be displayed if player has no allies to discard.
Requested by Paladin.
<LI>Online Play: Added ability to move a card in the draw pile to the second card position in the draw.
This is to support Runes of the Future RRc/13.
Requested by LUC.
</UL>
<H3>09 Mar 2000</H3>
<UL>
<LI>Chat: Expanded profile to include realm enter and exit messages.
<LI>Online Play: Added ability to rearrange face down realms.
This is to completely support Islands of Terror DL/031.
<LI>Online Play: Added Shuffle Pool to right-button pop-up menu for pool.
<LI>Online Play: Added Hide/Reveal card to right-button pop-up menu for pool.
<LI>Online Play: Fixed display of card name bug when moving a face down card to hand.
</UL>
<H3>08 Mar 2000</H3>
<UL>
<LI>DeckIt: Fixed bug in deck key calculation for decks with cards from certain fan sets.
<LI>Online Play: Added ability to hide cards under champions and realms.
Hiding is done with Alt-Button drag on Macintosh and
Control-Left Button drag on Linux and Windows.
<LI>Online Play: Added support for Islands of Terror DL/031.
Play is done the same way as hiding under realms.
"Flipping" a previously played realm is done with the right-click menu.
<LI>Online Play: Added support for Undermountain DU/005.
Deck -> Undermountain. All monsters will automatically go to the pool.
<LI>Online Play: Added support for Set Traps NS/058.
Deck -> Set Traps.
<LI>Macintosh: Flashing label fixed.
<LI>Macintosh: Fixed drag-and-drop across windows.
</UL>
<H3>29 Feb 2000</H3>
<UL>
<LI>CrossFire: Warns users of Tcl/Tk 8.3.0 on Windows about potential crashes.
<LI>CrossFire: Fixed context menu bug on Macintosh.
<LI>Chat: Added feature to prevent autoscrolling of message window.
Autoscrolling only occurs when the last line is viewed.
<LI>Chat: Changed the way Commands menu is created.
<LI>Chat: Added printing of a custom log off message.
Requested by Elric.
<LI>Database: Corrected title of NS/10 and DU/100.
Reported by Rouven Gehm.
<LI>Database: Completed usables for Powers.
<LI>DeckIt: Moved deck title entry from Information window to main window.
<LI>Online Play: Improved spoils tracking and warnings.
<LI>Online Play: Changed the way hidden pools are displayed on opponents' windows.
<LI>Online Play: Added ability to return a card to the bottom of the draw pile for cards such as AR/83 Goldmoon.
Requested by Ken Perschke.
<LI>Online Play: Added display of a deck key when opening a deck.
<LI>Swap Shop: Fixed bug with card title searching.
<LI>Warehouse: Fixed card counter so it ignores the missing cards in 2nd and 3rd Editions when determining minimum quantity.
</UL>
<H3>19 Feb 2000</H3>
<UL>
<LI>Online Play: Fixed bug with Refresh Opponents.
<LI>Online Play: Improved transfering of cards.
</UL>
<H3>18 Feb 2000</H3>
<UL>
<LI>Card Viewer: Improved export to text.
<LI>Chat: Added audible beep when receiving a message and the chat window is minimized.
<LI>Chat: Added note editor to commands menu.
<LI>Chat Server: Added notes. This allows for writing stored notes to other players.
<LI>Online Play: Fixed bug where oppponent windows' size and position were not being saved.
<LI>Online Play: Added picking random card from pool for cards such as Wish played on a hidden pool.
Suggested by Reaper.
<LI>Online Play: Added viewing of cards in Out of Play.
<LI>Online Play: Added returning of cards from Out of Play.
Used if an opponent gets disconnected while attempting to transfer a card to them.
<LI>Online Play: Added "Draw Spoils" to Deck menu.
This should be used whenever drawing spoils.
</UL>
<H3>11 Feb 2000</H3>
<UL>
<LI>Card Viewer: Changed export to text to only display bluelines, attributes, and useables if selected in Configure.
<LI>Chat: Added Profile editting and viewing to registered players.
<LI>Chat: Added display of server info for registered players.
<LI>Online Play: Added hiding and showing of panes of war, game notes, and opponents windows.
<LI>Online Play: Added saving of window sizes and positions.
<LI>Online Play: Corrected recycling of discards when draw pile emptied.
Now recycles at the end of the player's turn when pressing 'Knock'.
Reported by Lord Ogre.
<LI>Swap Shop: Fixed bug when opening a trade that the inventory has been moved.
<LI>Ultra Searcher: Fixed regular expression searches.
Reported by Reaper.
</UL>
<H3>07 Feb 2000</H3>
<UL>
<LI>Chat: Prevent automatic login from continuously attempting to log in when connection fails.
<LI>DataBase: Useable cards completed for RL, DL, FR, and AR.
<LI>DataBase: German Edition is completed.
Thanks to Rouven Gehm!
<LI>Online Play: Fixed rare bug where dungeon spoils would attach to champion in panes of war.
Reported by Sorrow.
<LI>Online Play: Improved behavior of opponent selection window for showing hand or draw pile on Windows.
Reported by Todd Myers.
<LI>Ultra Searcher: Added big window support.
Suggested by Leong Chung Yan.
<LI>Warehouse: Changed card "weight" to "value".
<LI>Warehouse: Fixed bug with automatic card advance.
Reported by Steve Brazelton.
<LI>Warehouse: Fixed bug with adding and removing a deck from inventory.
Reported by Rouven Gehm.
</UL>
<H3>28 Jan 2000</H3>
<UL>
<LI>Chat: Fixed bug when setting a player's chat colors when the window was already displayed.
Reported by Steve Brazelton.
<LI>DataBase: Useable cards complete for NO, 1st, 2nd, 3rd, 4th, and PR.
<LI>DataBase: Fixed wording of 4th/468 Throne of the Drow.
<LI>Online Play: Fixed bug where spoils card was revealed when returning to draw pile and verbose mode was on.
Reported by Drew Massingill.
<LI>Online Play: Fixed (again) viewing one's own draw pile and moving a card to top or bottom.
Reported by Steve Naus.
<LI>Online Play: Added ability to transfer cards to other players.
This is for cards like 1st/348 Fear.
Suggested by Draxon Varradami.
<LI>Online Play: Added discarding cards from opponents hand when viewing it.
This is for cards like the ever popular FRc/02 Cold Cup of Calamity.
Suggested by Reaper.
<LI>Online Play: Added moving cards in opponent's draw pile to top (BR/18).
Suggested by Dave Lockridge.
<LI>Online Play: Added ability to watch a game.
<LI>Swap Shop: Fixed bug with printing trades.
Reported by Tim Barth.
</UL>
<H3>24 Jan 2000</H3>
<UL>
<LI>Card Warehouse: Added automatic moving to next card when typing in quantities for Wanted, On Hand, or Weight.
<LI>Card Warehouse: Added importing and exporting of card weights.
<LI>Card Warehouse: Added big window support.
<LI>CrossFire Menu: Added support for background image.
<LI>DataBase: Added more usable card attributes.
<LI>Online Play: Fixed bug where hidden pool card IDs were being displayed when using verbose mode.
<LI>Online Play: Fixed viewing one's own draw pile and moving a card to top or bottom.
<LI>Online Play: Updated messages to include card name with the card ID.
Suggested by Bob Carmichael.
<LI>Solitaire Play: Added window to select 6 or 10 realm game.
Requested by Tim Barth.
</UL>
<H3>17 Jan 2000</H3>
<UL>
<LI>DataBase: Corrected wording on 4th/267, 4th/376, 4th/430.
Thanks to Jay "Elric" Weber.
<LI>DataBase: Added more usable card attributes.
Thanks to Jim Jennings and Tim "Kythrain" Barth.
<LI>Online Play: Fixed bug where opponent selection for showing hand/draw was not working for 3 or more player games.
Reported by Drew "Anandakin" Massingill.
</UL>
<H3>14 Jan 2000</H3>
<UL>
<LI>New Feature: "Solitaire" game play.
<LI>Card Warehouse: Fixed chase card list generation for HTML mode.
Reported by Steve "StEvil" Brazelton.
<LI>Chat: Added deselection of champion name to right click menu for ally and champion lists.
<LI>Chat: Action menu automatically updates when changing actions file in Configure.
<LI>Configure: Added check for existance of default directories.
<LI>DataBase: Corrected wording for card FRc/21 Wine of Eternity.
Reported by David Wright.
<LI>Deck Editor: Corrected check when switching from multiples allowed to not allowed.
<LI>Deck Editor: Corrected count of number of champions for champions of level 0 or ?.
Reported by Todd Myers.
<LI>Fan Set Editor: Fixed bug that could cause custom attributes to copy other fan sets.
<LI>Online Play: Moved card ID to end of name so more of the card title is visible.
Requested by Stephen "Reaper" Thompson.
<LI>Swap Shop: Added check for existance of default inventory.
<LI>Ultra Searcher: Changed so level ? is considered to be 0.
<LI>Ultra Searcher: Added fan set custom attributes to list of attributes.
</UL>
<H3>07 Jan 2000</H3>
<UL>
<LI>Chat: Added automatic logging in.
<LI>Chat: Added resizeable panes.
<LI>DataBase: Corrected wording on cards NO/201, 1st/201, 2nd/201, 3rd/201.
<LI>DataBase: Corrected display of POR/085 to match the physical card.
<LI>DataBase: Added the beginnings of usable card attributes.
<LI>DataBase: Added TSR world logo for 4th/520.
<LI>Fan Set Editor: Added ability to add and remove custom card attributes.
<LI>Fan Set Editor: Fixed bug with card attributes when clearing or moving a card.
<LI>Fan Set Editor: Added selection of usable cards (Cleric Spell, Thief Ability, etc).
<LI>Online Play: Implemented NSc/11 Bag of Beans.
<LI>Online Play: Added card viewer to hand and draw view windows.
<LI>Online Play: Added option to allow Events to go to the discard pile.
<LI>Online Play: Fixed bug which prevented canceling showing hand.
<LI>Online Play: Viewing one's draw pile now allows multiple cards for moves.
<LI>Online Play: Added viewing of opponent's draw pile and optional moving of selected cards.
<LI>Online Play: Added ability to remove an opponent from a game.
<LI>Online Play: Added game notes for long standing notes about the game or cards.
<LI>Ultra Searcher: Added searching by usable cards.
</UL>
<H3>17 Dec 1999</H3>
<UL>
<LI>Card Viewer: Added exporting of card sets to HTML pages in 5 different styles.
<LI>Chat: No longer fails if a smile icon is missing.
<LI>Configure: Added Linux/Unix only options.
Requested by Reaper.
<LI>Configure: Added HTML exporting options to Viewing Cards.
<LI>Online Play: Added attaching cards in the pool to non-champions.
Please read the online help about playing cards to the pool!
Requested by Kythrain.
</UL>
<H3>14 Dec 1999</H3>
<UL>
<LI>Online Play: Fixed problem with viewing cards in an opponents hand.
Reported by Aaron Nowack.
<LI>Online Play: Added 10 realm game play.
<LI>Online Play: Fixed bug with updating opponent windows.
</UL>
<H3>10 Dec 1999</H3>
<UL>
<LI>Added Online Play to Chat.
<LI>DataBase: Corrected DRc/07. Reported by Red Death.
</UL>
<H3>03 Dec 1999</H3>
<UL>
<LI>Chat: Added right-click pop-up menu of smiley faces.
<LI>Card Viewer: Fixed bug when selecting Chase card type.
Reported by Stephen "Reaper" Thompson.
</UL>
<H3>12 Nov 1999</H3>
<UL>
<LI>Ultra Searcher: Fixed bug when searching for levels.
<LI>Chat: Added "Log Off" menu item.
This allows disconnecting from the server without closing the chat window.
</UL>
<H3>05 Nov 1999</H3>
<UL>
<LI>DataBase: Updated 3rd/171, 3rd/253, 3rd/340, AR/099, BR/037, BR/038,
BR/042, BR/065, RR/006, RR/064, RR/079, RR/080, RR/081, UD/043,
UD/046, UD/057, UD/062, UD/085, UDc/14, UDc/15, PO/003, PO/013,
PO/025, PO/032, PO/063, and PO/065.
<LI>Chat: Added customization of each player's font.
<LI>Card Viewer: Fixed bug with selecting All Card Sets in regular mode.
Reported by Larry Meadows.
<LI>DataBase: Corrected level for 2nd/408 - Living Scroll.
Reported by Lord Ogre.
</UL>
<H3>15 Oct 1999</H3>
<UL>
<LI>Chat: Added repeating of messages with the up and down arrow keys.
<LI>Chat: Configuring of champion background colors is back and does not inhibit selecting text!
<LI>Chat: Added list of commands available depending on user level to the menu bar.
<LI>Chat: Added Fortify and UnFortify to the Realm menu.
<LI>Back Up: Fixed bug with automatic back ups.
<LI>DataBase: Corrected card text for 3rd/378 Black Tentacles.
Reported by Gary Flynn.
<LI>Fan Set Editor: Added ability to change the number of cards.
Requested by David Williams.
</UL>
<H3>04 Oct 1999</H3>
<UL>
<LI>Added Back Up and Restore of Decks, Trades, Inventories, and Combos.
Requested by Gru.
<LI>Added Chat Actions file made by Elric...lots of new actions!
This can be selected from the Chat Configuration window.
<LI>DataBase: Removed Adam's (RL/083) undead status...he's alive again (or still?) or reanimated?? WHATEVER!
<LI>Card Viewer: Added big window support.
<LI>Card Viewer: Fixed bug that prevented usage.
Reported by Storm Mage.
</UL>
<H3>24 Sep 1999</H3>
<UL>
<LI>Super Searcher: Added search engine +/- style searches.
<LI>Configure: Added selection of which icons to display on the CrossFire main window.
<LI>DeckIt: Added option to group champions together.
Requested by David Williams.
<LI>Combo Viewer: Added menu option to change directory.
<LI>Warehouse: Fixed reports for All Card Sets.
<LI>Swap Shop: Added viewing cards to right-click popup menus.
<LI>Card DataBase: Corrected card text on DRc/09.
<LI>Chat: Fixed bug that occured when entering a card ID such as DL/0.
<LI>Chat: Changed player color configuration to use default background colors.
This makes highlighting text in the message window visible!
<LI>Chat: Added option to display time stamps in 12 or 24 hour format.
Requested by Jay "Elric" Weber.
<LI>Card Views: Added option to toggle display of card attributes.
</UL>
<H3>09 Sep 1999</H3>
<UL>
<LI>Configure: Cleaned up the interface on several panels.
<LI>Configure: Moved card viewing options to a seperate panel.
<LI>Card Views: Added option to include the close button on the bottom.
<LI>Chat: Added password field to Create New Realm. The password is optional.
<LI>Chat: Changed Realm right-click menu option Join to allow for entry of password.
<LI>Chat: Corrected sorting of actions list.
<LI>Chat: Made check for card IDs not case-sensitive.
So, DLc/17 Dlc/17 dlc/17 DLC/17 dLc/17 dlC/17 dLC/17 or DlC/17 will work.
Reported by Storm Mage.
</UL>
<H3>07 Sep 1999</H3>
<UL>
<LI>DeckIt, ComboMan, Warehouse: Fixed bug where "Save As" was not actually creating the files.
Reported by David Williams.
<LI>Card Views: Changed so that each card view will minimize when the parent is minimized.
<LI>Card Viewer: Fixed more bugs with the new card views.
<LI>Swap Shop: Fixed clearing of name and email when starting a new trade.
</UL>
<H3>02 Sep 1999</H3>
<UL>
<LI>Chat: Added actions!!
<LI>Configure: Added selection of chat actions file.
<LI>Chat: Added menu item and keyboard shortcut to clear the message window.
<LI>Fixed bug when exporting a fan set.
<LI>Removed ability to double-click buttons on the main CrossFire window.
<LI>Fixed bug with continuous card views.
Reported by David Williams.
<LI>Macintosh: All right-click options are available with control-left-click.
<LI>Swap Shop: Fixed bug that occured when adding cards and the inventory is disabled.
<LI>Card DataBase: Corrected cards 2nd/401, 2nd/403, 2nd/414, 3rd/003, and 4th/513.
<LI>Chat: Fixed bug that occured when closing the login window with the "X" button.
Reported by Storm Mage.
</UL>
<H3>27 Aug 1999</H3>
<UL>
<LI>Swap Shop: Fixed bug when adding multiples of a card.
<LI>Swap Shop: Overall speed improvement.
<LI>Swap Shop: Fixed minor bug when printing a trade in RTF format.
<LI>Fixed bug with fan sets if CrossFire is moved.
Reported by David Williams.
<LI>Changed viewing the same card multiple times to only create one card window.
Suggested by David Williams.
</UL>
<H3>23 Aug 1999</H3>
<UL>
<LI>Chat: Improved check for clickable card ids.
<LI>Chat: Either UD or TU can be used for The Underdark cards.
<LI>Super Searcher: Fixed bug with last digit searches.
<LI>Swap Shop: Fixed bug where the card set name was not updated.
Reported by Tim "Kythrain" Barth.
<LI>DataBase: Fixed exteneded characters for French and Portuguese sets.
</UL>
<H3>13 Aug 1999</H3>
<UL>
<LI>Changed card set selection menus. Now organized by Edition, Booster, International, and Fan sets.
<LI>Configure: Changed the usage of card set selection for ComboMan, DeckIt, Swap Shop, and Card Warehouse.
This is now the sets that will be used when 'All Card Sets' is selected from the menu.
<LI>Card Viewer: Cards now show the new card attributes (colored in purple).
<LI>Card Viewer: Added exporting of card database.
Formats available so far are comma seperated value (csv) and plain text.
<LI>Chat: Fixed bug with default log directory.
<LI>DataBase: Fixed 1stc/19 and ARc/05.
<LI>DataBase: Finished initial card attribute entries.
Thanks to Tim Barth for his work on this huge task!
<LI>DeckIt: Fixed bug where some cards might not be shown when viewing by card set.
<LI>Super Searcher: Added searching for Avatars.
<LI>Macintosh: URLs in Chat and the About CrossFire box work now.
Note: you need MacOS 8.5 (or higher) for this to work...it *may* work with older versions.
</UL>
<H3>30 Jul 1999</H3>
<UL>
<LI>Chat: Added clickable card IDs.
This should make playing chat games a little easier.
The ID must be entered like CrossFire lists them (they are case sensitive). ie: FRc/18
Suggested by Storm Mage.
<LI>DataBase: Much of the new card attributes are entered, so the Super Searcher will perform much better.
Thanks to Tim Barth for his work on the DataBase!
<LI>Warehouse: Fixed printing HTML header section.
Reported by Steve "StEvil" Brazelton.
<LI>Chat: Fixed bug with saving customized player colors.
Reported by Steve "StEvil" Brazelton.
</UL>
<H3>26 Jul 1999</H3>
<UL>
<LI>Card Viewer: Added ability to view the actual top of the card.
This was added so that fan set artwork could be viewed with the card.
Email me for more information on this feature.
<LI>Chat: Fixed bug that occured when trying to configure a player's colors when the log window is displayed.
Reported by Steve "StEvil" Brazelton.
<LI>Chat: Added default foreground and background colors for message window.
<LI>Chat: Added default new champion name color.
<LI>Chat: Added alert toggle for both arriving and leaving champions.
<LI>Chat: Added a where command to the right-click menu on ally and champion lists to tell which realm s/he is in.
<LI>Chat: Added right-click menu to realm list.
<LI>Chat: Added a chat log viewer.
<LI>Chat: Added default chat log directory.
<LI>Chat: Added default chat log file.
<LI>Chat: Added display of number of champions online and number of allies in current realm.
<LI>Chat: Added clickable URLs. The URL must start with http://
This will not work on Macintosh yet.
<LI>Chat: Added graphical smiley faces. :)
<LI>Searcher: Overall speed improvement.
<LI>Combo Viewer: Fixed rare window bounce problem.
</UL>
<H3>16 Jul 1999</H3>
<UL>
<LI>Searcher: Fixed bug when started from DeckIt.
Reported by Tim Barth.
<LI>DeckIt: Corrected checking for adding of the same card.
<LI>Warehouse: Fixed bug that caused card weights to be set again after using Swap Shop.
Reported by Steve Brazelton.
<LI>Warehouse: Added calculation of total value to the card counter.
Suggested by Tim Barth.
<LI>Chat: Changed Shift-Return for whisper to Control-Return.
<LI>Chat: Added ability to copy from the message window on Windows and Macintosh.
<LI>Chat: Added right-clink menu to Ally and Champion lists.
</UL>
<H3>12 Jul 1999</H3>
<UL>
<LI>New Feature: Online Chat!
Chat server written by Stephen "Reaper" Thompson.
<LI>Card Warehouse: Cards have an individual weight (or value).
These will be set to the defaults the first time an inventory is opened.
<LI>Warehouse: Fixed printing of extra email addresses when generating want list of all card sets in HTML.
<LI>DeckIt: Fixed bug in deck differ.
<LI>Changed "real" AD&D cards to use the red AD&D logo and cards without a world (spells, allies, etc) to use the white AD&D logo.
Suggested by Jay "Elric" Weber.
<LI>Card Database: Fixed title of card 232 in No, 1st, and 2nd Editions to match the actual card (Salt Veiw).
<LI>Super Searcher: Changed chase card searches to search for only chase or only non-chase.
Requested by Stephen "Reaper" Thompson.
</UL>
<H3>22 Jun 1999</H3>
<UL>
<LI>Fan Set Editor: Fixed bug when exiting CrossFire from the main window when
changes needed to be saved.
<LI>Added a quit button to the error message box.
Suggested by Roger Scheen.
<LI>DataBase: Correct world for UDc/01 Lazarus the Drow.
Reported by Robert Duncan.
<LI>Fixed erroneous warning message about file "" being in use.
Reported by Steve Brazelton.
<LI>DeckIt: Fixed bug when loading older deck files.
Reported by Steve Brazelton.
</UL>
<H3>11 Jun 1999</H3>
<UL>
<LI>Combo Viewer: Enabled viewing the selected card.
<LI>Macintosh: Fixed bug with saving configuration file.
Reported by Roger Scheen.
<LI>ComboMan: Added recent files to the combo menu.
<LI>ComboMan: Fixed error that disabled the "close" button after the information window was displayed.
<LI>ComboMan: Added starting the combo viewer to the menubar.
<LI>Swap Shop: Added recent files to the trade menu.
<LI>Swap Shop: Added file locking.
<LI>DeckIt: Deck files are now much smaller.
</UL>
<H3>08 Jun 1999</H3>
<UL>
<LI>DeckIt: Fixed error that disabled the "close" button after the deck information window was displayed.
Reported by Stephen Thompson.
<LI>DeckIt: Fixed error when adding avatars with "?" levels (such as Orcus).
<LI>Super Searcher: Fixed searches for "?" leveled cards.
<LI>DeckIt: Deck display mode is saved.
</UL>
<H3>07 Jun 1999</H3>
<UL>
<LI>Super Searcher: Changed to prevent potential lockup from incorrectly entered bonus/level
Reported by Stephen Thompson.
<LI>DeckIt: Fixed bug when dragging-and-dropping a group of cards from one DeckIt window to another.
Occured when viewing by card set was selected.
Reported by Stephen Thompson.
<LI>DeckIt: Fixed bug when loading a deck that has inventory checking on.
Reported by Stephen Thompson.
<LI>Combo Viewer: Fixed missing about dialog. Reported by Stephen Thompson.
</UL>
<H3>03 Jun 1999</H3>
<UL>
<LI>Card DataBase: Updated world logo of Hordes of Castle Greyhawk.
<LI>Windows: Fixed tooltip help so it is not in the corner.
<LI>Added world logo graphics for the card viewer.
<LI>Linux: Changed directory selection to see hidden directories (.*).
Reported by Stephen Thompson.
<LI>Warehouse: Removed error message that is reported when attempting to change
wanted quantity to less than zero. Reported by Stephen Thompson.
<LI>DeckIt: Changed the inventory to check for cards to the default inventory.
<LI>Configure: Added selection of CrossFire icon set.
</UL>
<H3>01 Jun 1999</H3>
<UL>
<LI>DeckIt: Fixed bug that prevented removing all card types that were two or
more words. (ie: Cleric Spell, Wizard Spell, etc)
<LI>DeckIt: Fixed bug that prevented removing cards due to database changes.
Reported by Stephen Thompson.
<LI>Linux: Fixed bug starting CrossFire when CrossFire is a link.
Reported by Stephen Thompson.
<LI>Changed main CrossFire graphical menu such that the mouse-over help is now
the "tooltip" style.
<LI>Added option to view World names as icons or text.
<LI>Super Searcher: Added card rarity to search criteria. Why? Idaknow...
<LI>Super Searcher: Fixed bug with Ctrl+F.
<LI>Moved icon graphics and menu icons into seperate sub-directories.
</UL>
<H3>20 May 1999</H3>
<UL>
<LI>Added check for each of the expected subdirectories.
<LI>Added the Combo Viewer.
<LI>Fixed 4th/188 Dark Haven. Bonus is now -½. Super Searcher treats this as -1.
<LI>Fixed bug that occurs if any of the expected sub-directories does not exist.
</UL>
<H3>14 May 1999</H3>
<UL>
<LI>Configure: Improved the appearance of the CrossFire pane.
<LI>Lots of documentation added or corrected. (gasp!)
<LI>Super Searcher: Fixed bug that occurs when searching for negative levels.
<LI>Major update to the Card Data Base with regards to level / bonus.
<LI>Changed the main CrossFire graphical menu slightly.
<LI>Swap Shop: More enhancements.
</UL>
<H3>12 May 1999</H3>
<UL>
<LI>Fan Set Editor: Added calling Configure from the menubar.
<LI>Configure: Settings are now stored in the Registry on Windows.
<LI>Card Viewer: Fixed minor error when starting.