summaryrefslogtreecommitdiffstats
path: root/Changelog
blob: 386a28b503f449406281969dfb1a6f52a3daa8bb (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
-----------------
Rev:  99
Date: 17 April 2008
User: MathStuf
-----------------
[FIX] Frac -> Fraction
[FIX] ImageCache and Ini removed
[FIX] Fraction/Point widgets moved to pokemodr
[FIX] Copy ctors made for pokemod classes
[FIX] Ctors in pokemod fixed
[FIX] Copyright headers fixed in pokemodr
[FIX] PokeModr updated to new API and fixed in some places

-----------------
Rev:  98
Date: 16 April 2008
User: MathStuf
-----------------
[ADD] Added Frac and Point widgets to general
[FIX] Minor fixes

-----------------
Rev:  97
Date: 15 April 2008
User: MathStuf
-----------------
[FIX] Object::mid -> m_id
[FIX] XML is now used
[FIX] Images are stored in the XML file and classes rather than relying on external images
[FIX] Frac no longer keeps track of its type; the class should do it
[ADD] pokemod/Object.cpp

-----------------
Rev:  96
Date: 30 March 2008
User: MathStuf
-----------------
[FIX] Memory leaks in load and copy method

-----------------
Rev:  95
Date: 30 March 2008
User: MathStuf
-----------------
[FIX] Member variables now use m_ prefix
[FIX] Minor fixes

-----------------
Rev:  94
Date: 9 March 2008
User: MathStuf
-----------------
[FIX] ImageDialog -> FileDialog
[FIX] FileDialog will filter out images based on size now

-----------------
Rev:  93
Date: 9 March 2008
User: MathStuf
-----------------
[ADD] ItemType now has a count descriptor
[ADD] Species now has a flee chance
[FIX] Empty fields removed from .ui files
[FIX] Fixed compile errors in pokemodr
[ADD] Trainer now helps to simplify MapTrainers
[ADD] Trainer UI file
[FIX] MapTrainer dialogs condensed
[FIX] Home direcotry now gotten by QDir::homePath() rather than ~

-----------------
Rev:  92
Date: 5 March 2008
User: MathStuf
-----------------
[FIX] Pokemod can now has setPath which copies the directory structure to the destination
[ADD] SaveAs ability

-----------------
Rev:  91
Date: 5 March 2008
User: MathStuf
-----------------
[FIX] Menus and Toolbar fixed in the main window

-----------------
Rev:  90
Date: 4 March 2008
User: MathStuf
-----------------
[FIX] Hat now uses Qt rand functions
[FIX] .pro files cleaned up
[FIX] source tarball improved
[FIX] Install targets made
[FIX] Pokemod path taken more flexible
[FIX] PokeModr New and Open dialogs set up (not working)
[ADD] pokemodr.desktop
[ADD] pokegen.spec for RPM creation
[ADD] pokegen.tex for the readme

-----------------
Rev:  89
Date: 28 February 2008
User: MathStuf
-----------------
[FIX] Cross compilation added (linux -> windows through mingw-cross)

-----------------
Rev:  88
Date: 27 February 2008
User: MathStuf
-----------------
[FIX] UI classes now have initGui and refreshGui
[FIX] PokeModTreeItem now is the monster class rather than PokeModrUI

-----------------
Rev:  87
Date: 25 February 2008
User: MathStuf
-----------------
[FIX] Apply/Discard buttons now set correctly when loaded or changes are discarded
[FIX] "Filler" tree items can no longer be selected

-----------------
Rev:  86
Date: 25 February 2008
User: MathStuf
-----------------
[FIX] Main .pro file now excludes non-working subdirectories
[FIX] Minor fixes in the RulesUI logic

-----------------
Rev:  85
Date: 25 February 2008
User: MathStuf
-----------------
[FIX] Sizers fixed in KTabWidgets
[FIX] Apply/Discard buttons fixed
[FIX] Window title now fixed

-----------------
Rev:  84
Date: 25 February 2008
User: MathStuf
-----------------
[FIX] Cleaned up .ui files
[FIX] setGui calls looking for (non-existant) images no longer pops up a BugCatcher
[FIX] Tree selecting less annoying

-----------------
Rev:  83
Date: 25 February 2008
User: MathStuf
-----------------
[ADD] Pokemod tree will reflect PokéMod heirarchy and load panels
[FIX] PokemodUI panel now loads
[FIX] Includes fixed
[FIX] newAuthor had + instead of - (QList assertions)
[FIX] Pokemod copying works now
[FIX] Debug rather than release used

-----------------
Rev:  82
Date: 24 February 2008
User: MathStuf
-----------------
[FIX] KTabWidget now used rather than QTabWidget (though this kills Qt Designer interaction :\ )
[FIX] Minor fixes in PokeModr class
[DEL] Ref.{h, cpp}
[FIX] Ref enumerations now in Pokemod class
[FIX] new/delete used for subclasses in pokemod now
[FIX] Inclusion hell in pokemod (should compile faster)
[FIX] Spelling typos

-----------------
Rev:  81
Date: 24 February 2008
User: MathStuf
-----------------
[DEL] SkinsUI.{h, cpp}, skins.ui, typechat.ui
[ADD] TypechartWidgetItem.h
[FIX] Typechart added

-----------------
Rev:  80
Date: 24 February 2008
User: MathStuf
-----------------
[FIX] Macro fun with the repetitive class checking for determining class types with the tree
[FIX] KDE classes used in PokeModr UI form now
[FIX] Includes in the file, only commented for ease of adding
[FIX] Simpler KMessageBox used in ObjectUI
[ADD] PokemodTreeItem.cpp

-----------------
Rev:  79
Date: 23 February 2008
User: MathStuf
-----------------
[FIX] Include cleanup
[FIX] Consolidate skins into Pokemod UI forms
[FIX] Now using KMainWindow
[FIX] Some code for the tree set up

-----------------
Rev:  78
Date: 23 February 2008
User: MathStuf
-----------------
[FIX] MapWildList now checks value setting
[ADD] MapWildListUI.{h, cpp}
[FIX] Minor bug in MapWarpUI
[FIX] TileUI underHm ComboBox won't go out of range

-----------------
Rev:  77
Date: 23 February 2008
User: MathStuf
-----------------
[FIX] Errors with MapWarpUI and MapWildListEncounterUI
[ADD] MapTrainerTeamMemberUI.{h, cpp}

-----------------
Rev:  76
Date: 23 February 2008
User: MathStuf
-----------------
[ADD] MapWarpUI.{h, cpp} added to repo
[ADD] MapWildListEncounterUI.{h, cpp}
[ADD] Flag setting in UI forms a less work
[FIX] Scope setting in MapWildList better
[FIX] SpeciesUI form elements now disabled if not available

-----------------
Rev:  75
Date: 23 February 2008
User: MathStuf
-----------------
[FIX] Warp states can now leave states untouched
[FIX] Map/Warp dependencies in UI forms
[ADD] MapWarpUI.{h, cpp}

-----------------
Rev:  74
Date: 23 February 2008
User: MathStuf
-----------------
[FIX] Map editing looks promisingly partially fixed
[FIX] Cleaned up map editing Model/View
[ADD] Tilemap editing now has insertion of rows/columns

-----------------
Rev:  73
Date: 23 February 2008
User: MathStuf
-----------------
[FIX] Matrix edge cases around 0 x 0 dimension
[FIX] Build order in pokegen.pro

-----------------
Rev:  72
Date: 22 February 2008
User: MathStuf
-----------------
[FIX] Frac bug with type of Over1
[FIX] PokemodUI vtable errors
[FIX] Manual .pro file clean up
[FIX] Was attempting to emit a slot...

-----------------
Rev:  71
Date: 22 February 2008
User: MathStuf
-----------------
[FIX] UI forms now only allow apply/discard when it can be applied
[FIX] Skins and such use buttons in all UI forms now

-----------------
Rev:  70
Date: 22 February 2008
User: MathStuf
-----------------
[FIX] Changelog/SVN desynchronization fixed
[FIX] skins UI file cleaned up
[FIX] ImageCache no longer uses force argument
[FIX] operator= now correctly copies subdata from rhs (instead of reassigning ID numbers)
[FIX] Pokemod can now be copied
[FIX] Pokemod skin calls cleaned up
[ADD] PokemodUI.{h, cpp}
[ADD] SkinsUI.{h, cpp}

-----------------
Rev:  69
Date: 22 February 2008
User: MathStuf
-----------------
[FIX] SpeciesUI now compiles without vtable errors

-----------------
Rev:  68
Date: 21 February 2008
User: MathStuf
-----------------
[FIX] Frac now makes sure that the denominator is positive
[FIX] Sprite-containing classes less repetative with determining paths
[FIX] More include cleanup in pokemodr
[FIX] Precision of Frac decimal equivalents now use a define
[FIX] Species UI form is now more compact and complete
[ADD] SpeciesUI.{h, cpp} (again; wasn't actually included last time and got lost)
[FIX] Species form now uses tabs so its not as gigantically tall
[FIX] SpeciesUI files disappeared, so remade
[FIX] Include cleanup in pokemodr

-----------------
Rev:  67
Date: 20 February 2008
User: MathStuf
-----------------
[FIX] Prettyfied include sections
[FIX] KDevelop helping with .pro files even more
[DEL] STANDARDS file

-----------------
Rev:  66
Date: 20 February 2008
User: MathStuf
-----------------
[ADD] SpeciesUI.{h, cpp}
[FIX] Missing semicolon in general/Hat.h
[FIX] Shortened method names in Species
[FIX] Cleaned up some includes in UI logic
[FIX] NatureUI now gets the curStat right from varStat
[FIX] NatureUI sets varStat in ctor rather than setGui
[FIX] .pro files now controled by KDevelop
[FIX] Minor UI form fixes

-----------------
Rev:  65
Date: 19 February 2008
User: MathStuf
-----------------
[ADD] SpeciesEvolution.{h, cpp}
[ADD] Appropriate includes for Species*UI.cpp files
[FIX] SpeciesEvolution values now fixed up
[FIX] Relative enum in more logical order

-----------------
Rev:  64
Date: 19 February 2008
User: MathStuf
-----------------
[FIX] Store item setting is now less touchy
[FIX] Some ui forms were missing things
[FIX] UI logic with having ID data embedded instead of roundabout resolution
[ADD] Fleshed out more for pokemodr TODO

-----------------
Rev:  63
Date: 19 February 2008
User: MathStuf
-----------------
[ADD] MoveUI.{h, cpp}
[FIX] Move::setDescription was not complete
[FIX] Streamlined some UI classes with Fraction handling
[DEL] FracMatrix is handled by Matrix<Frac>

-----------------
Rev:  62
Date: 18 February 2008
User: MathStuf
-----------------
[FIX] Fixed GPL headers in source files from rogue find/replace
[ADD] SpeciesAbilityUI.{h, cpp}
[ADD] pokemodr TODO list

-----------------
Rev:  61
Date: 18 February 2008
User: MathStuf
-----------------
[FIX] pokemod now passes pointers around instead of references

-----------------
Rev:  60
Date: 18 February 2008
User: MathStuf
-----------------
[ADD] SpeciesItemUI.{h, cpp}
[ADD] SpeciesMoveUI.{h, cpp}
[FIX] CoinListObjectUI fixes

-----------------
Rev:  59
Date: 11 February 2008
User: MathStuf
-----------------
[ADD] Store UI file
[ADD] StoreUI.{h, cpp}
[FIX] BadgeUI dependency
[ADD] Map resource file

-----------------
Rev:  58
Date: 7 February 2008
User: MathStuf
-----------------
[FIX] Tile UI form fixes
[FIX] BadgeUI logic cleaned up
[FIX] Tilemap editing Model and Delegate fleshed out
[ADD] TileUI.{h, cpp} and TypeUI.{h, cpp}
[FIX] Default path for Pokemod added
[FIX] Tile HM and Force setting

-----------------
Rev:  57
Date: 6 February 2008
User: MathStuf
-----------------
[ADD] Tilemap editing to the Map form
[ADD] MapUI.{h, cpp}, TilemapModel.{h, cpp}, TileDelegate.{h, cpp}
[FIX] Editing area of the main window now has scroll bars
[FIX] CoinListUI is now safer with its combobox creation for the values
[FIX] Minor fixes in Tile and Map classes
[FIX] Matrix cleaned up

-----------------
Rev:  56
Date: 2 February 2008
User: MathStuf
-----------------
[ADD] CoinListObjectUI.{h, cpp}
[FIX] object where parameter o should be in CoinListObject

-----------------
Rev:  55
Date: 1 February 2008
User: MathStuf
-----------------
[FIX] Only committed general/ last time

-----------------
Rev:  54
Date: 1 February 2008
User: MathStuf
-----------------
[FIX] ItemUI now fully works
[FIX] unsigned -> int since widgets only works with int ranges

-----------------
Rev:  53
Date: 1 February 2008
User: MathStuf
-----------------
[FIX] CoinList UI now uses a KComboBox instead of a KIntNumInput for value
[FIX] Badge UI now uses KPushButtons instead of a QGraphicsView
[FIX] BadgeUI now works
[FIX] PokeModr now sends a new error when an Exception got all the way through
[DEL] GenericListItem replaced as QListWidgetItem works on its own
[ADD] pokemodr now needs to link to kio
[ADD] getFace/getBadge methods to Badge
[ADD] 2 HMs (Heal and Escape)

-----------------
Rev:  52
Date: 31 January 2008
User: MathStuf
-----------------
[FIX] Changelog fixed
[FIX] Warnings in pokemod gone
[FIX] BoundsException thrown from Item::setPrice()
[FIX] CoinList now has correct className
[FIX] Frac needed in header for ItemEffect
[ADD] CoinList, EggGroup, and Item UI logic added

-----------------
Rev:  51
Date: 31 January 2008
User: MathStuf
-----------------
[ADD] GenericListItem.{h, cpp}
[FIX] BadgeUI bugs (some still exist)
[FIX] Other UI bugs fixed

-----------------
Rev:  50
Date: 30 January 2008
User: MathStuf
-----------------
[ADD] BadgeUI, AuthorUI, and AbilityUI
[FIX] Fix up UI forms
[FIX] win32 builds now allow exceptions
[FIX] Tidy up other UI logic files

-----------------
Rev:  49
Date: 25 January 2008
User: MathStuf
-----------------
[FIX] Fixed errors in general.pro and pokemodr.pro for Windows

-----------------
Rev:  48
Date: 25 January 2008
User: MathStuf
-----------------
[ADD] win32 support (KDE) into .pro files
[FIX] Ref.h extern variables
[FIX] Nature include
[FIX[ GUI fixes

-----------------
Rev:  47
Date: 25 January 2008
User: MathStuf
-----------------
[FIX] ObjectUI::setObjects now protected
[FIX] members made with new now delete-d
[ADD] ItemTypeUI

-----------------
Rev:  46
Date: 24 January 2008
User: MathStuf
-----------------
[FIX] pokemodr.ui now uses QScrollArea rather than QAbstractScrollArea
[FIX] Compare in Rules.cpp
[FIX] PokeModrUI now saves the KConfgiGroup so preferences can be saved back

-----------------
Rev:  45
Date: 24 January 2008
User: MathStuf
-----------------
[FIX] Frac returns a double (not an unsigned typcast to double, making 0 all the time)
[FIX] maxDV now works on 0 and 1 rather than 16 and 32
[FIX] Stuff ignored (due to other options) can't throw Exceptions in Rules anymore
[FIX] UI logic fixed

-----------------
Rev:  44
Date: 24 January 2008
User: MathStuf
-----------------
[FIX] general.pro file now links to phonon for Audio
[ADD] generic ObjectUI object to handle general form* stuff
[ADD] TimeUI.{h, cpp}

-----------------
Rev:  43
Date: 24 January 2008
User: MathStuf
-----------------
[FIX] Revision 42 date
[FIX] Replaced AudioCache with an Audio wrapper

-----------------
Rev:  42
Date: 24 January 2008
User: MathStuf
-----------------
[FIX] BugCatcher now asks if the user wants to open KBugReport
[FIX] Exception members are now const
[FIX] map was uninitialized in Dialog validation
[FIX] (un)setting Breeding in Rules
[FIX] GUI now works (though with QMainWindow and QTabWidget in Rules)

-----------------
Rev:  41
Date: 23 January 2008
User: MathStuf
-----------------
[FIX] pokemodr.ui file
[FIX] added better .pro rules
[FIX] PokeModTreeItem works now
[FIX] LICENSE file is purely the terms

-----------------
Rev:  40
Date: 22 January 2008
User: MathStuf
-----------------
[FIX] Grammer in Changelog
[FIX] Made pokemod classes contain their names for later ease
[ADD] PokéModr main window form
[FIX] Ini and Exception includes fixed
[FIX] BugCatcher bugs fixed
[FIX] .pro files fixed
[ADD] PokéModr main GUI almost complete

-----------------
Rev:  39
Date: 21 January 2008
User: MathStuf
-----------------
[FIX] Some linker errors in pokemod and general
[FIX] More enum char*[] to QStringList
[FIX] Widgets in PokéModr gui
[ADD] Rules GUI logic

-----------------
Rev:  38
Date: 21 January 2008
User: MathStuf
-----------------
[FIX] PokeMod namespace removed
[ADD] MoveEffect editing form for PokéModr

-----------------
Rev:  37
Date: 21 January 2008
User: MathStuf
-----------------
[FIX] const char*[] -> QStringList for easier laoding into KComboBox
[DEL] pokemod/pokemod_inc.h no longer needed

-----------------
Rev:  36
Date: 20 January 2008
User: MathStuf
-----------------
[FIX] pokemod compiles faster due to better placement of #includes
[FIX] Header of pokemodr/PokeModr.h

-----------------
Rev:  35
Date: 20 January 2008
User: MathStuf
-----------------
[ADD] More GUI classes (only MoveEffect left)
[FIX] Polished up GUI classes
[FIX] renamed methods get*ByID -> get*Index instead for more logical get*ByID
[FIX] Renaming in pokemod to remove mention of Pokémon
[FIX] minor .pro fixes (aesthetic mainly)

-----------------
Rev:  34
Date: 19 January 2008
User: MathStuf
-----------------
[DEL] get*Num/get*Denom methods from Pokemod
[ADD] GUI classes to pokemodr
[FIX] AudioCache is trashed right now, but may be salvageable

-----------------
Rev:  33
Date: 18 January 2008
User: MathStuf
-----------------
[DEL] Removed PokeGen namespace
[ADD] general/AudioCache.h completed
[DEL] VERSION removed from subdir .pro files
[DEL] audio/

-----------------
Rev:  32
Date: 18 January 2008
User: MathStuf
-----------------
[FIX] Added 2008 to other copyright lines
[ADD] .pro files
[ADD] overworld folder for the world map stuff
[ADD] Refined pokegen and pokemodr file structures

-----------------
Rev:  31
Date: 16 January 2008
User: MathStuf
-----------------
[FIX] Added 2008 to copyrights
[FIX] Made exceptions better
[FIX] Added RBY Move Effects (as well as val1 and val2 code)
[FIX] Added breaks where missed
[FIX] Grammar mistakes (factored out to Exceptions)
[FIX] Cleaned up Species types and egg groups handling
[FIX] Cleaned up Store items handling
[FIX] Cleaned up Tile details

-----------------
Rev:  30
Date: 27 November 2007
User: MathStuf
-----------------
[FIX] Rules/Pokemod dependency fiasco
[FIX] STANDARDS to GPLv3

-----------------
Rev:  29
Date: 27 November 2007
User: MathStuf
-----------------
[ADD] Known MoveEffects
[FIX] pokegen.pro error in rpm build target
[FIX] EggSpecies not needed (generic species will be used instead)
[FIX] StruggleMove not needed (generic will be used instead)
[FIX] TypeChart moved back to Pokemod so that Rules are completely Pokemod-neutral

-----------------
Rev:  28
Date: 22 November 2007
User: MathStuf
-----------------
[FIX] classes more usable
[FIX] Matrix class
[ADD] pokemod/Rules.{h, cpp}
[FIX] coding style cleaned up

-----------------
Rev:  27
Date: 22 October 2007
User: MathStuf
-----------------
[FIX] Redoing rev25

-----------------
Rev:  26
Date: 22 October 2007
User: MathStuf
-----------------
[FIX] Something messed up in last commit, fixing with this one

-----------------
Rev:  25
Date: 22 October 2007
User: MathStuf
-----------------
[ADD] DISCLAIMER
[FIX] PokemonEvolution styles
[ADD] Relative enumeration
[DEL] pokemod/Status.{h, cpp}
[DEL] pokemod/StatusEffect.{h, cpp}
[FIX] Status effects will be added as needed instead of customized
[FIX] Completed ItemEffects
[FIX] Factored out Natures to be global
[DEL] pokemod/PokemonNature.{h, cpp}
[DEL] ai/Net.{h, cpp}
[DEL] ai/Layer/{h, cpp}
[ADD] battle/Arena.{h, cpp}
[ADD] battle/Team.{h, cpp}
[ADD] battle/Human.{h, cpp}
[ADD] battle/Bot.{h, cpp}
[ADD] battle/GhostBot.{h, cpp}
[ADD] battle/Pokemon.{h, cpp}
[ADD] battle/Ghost.{h, cpp}
[FIX] Fixed some scope errors in pokemod
[ADD] audio/audio.pro
[ADD] audio/Audio.{h, cpp}
[ADD] audio/AudioLibrary.{h, cpp}
[ADD] audio/AudioSystem.{h, cpp}
[ADD] audio/Music.{h, cpp}
[ADD] audio/SoundEffect.{h, cpp}
[DEL] old audio system (was in C)
[FIX] Optimized some routines in pokemod
[FIX] Moved global classes (Ini, Frac, Matrix, FracMatrix, Point, Flag) to general

-----------------
Rev:  24
Date: 21 September 2007
User: MathStuf
-----------------
[FIX] Neural Network methods complete
[FIX] Wrapped Node up into the layer
[FIX] Wrapped NatureEffect into Nature
[FIX] Getting around to fixing up the design of the PokéMod stuff
[FIX] Creating new subclasses now returns pointer to new subclass
[FIX] Simplified interfaces
[FIX] Minor style issues
[FIX] Renamed CoinItem to CoinListObject
[FIX] Renamed MapTrainerTeam to MapTrainerPokemon
[FIX] Renamed MapWildPokemon to MapWildListPokemon
[FIX] Moved global enums to relevant classes
[FIX] Removed general logging features
[DEL] pokemod/Debug.{h, cpp}
[DEL] pokemod/Path.{h, cpp}
[FIX] Using QFile rather than custom Path class for checking for files
[FIX] Set* methods now return a bool to let the caller know if anything actually changed (if it can fail, otherwise it is void)
[ADD] Compliation without errors is required for pokemod from now on before commits

-----------------
Rev:  23
Date: 20 July 2007
User: MathStuf
-----------------
[DEL] Makefile
[ADD] pokemod/pokemod_def.h for global defines and configuration
[ADD] pokemod/pokemod.pro for qmake
[FIX] String -> QString
[FIX] std::vector -> QList
[FIX] std::map -> QMap
[FIX] std::[io]fstream -> QFile
[FIX] Matrix uses QVector
[ADD] Enemy to EnumChoice
[FIX] Condense Tile water options
[ADD] Added another Frac type
[FIX] Relicense under GPLv3
[FIX] Fixed some random things in NeuralNetwork things
[ADD] /ai/ai.pro

-----------------
Rev:  22
Date: 3 July 2007
User: MathStuf
-----------------
[ADD] Rest of Dialog validations
[ADD] DialogCommandNumArgs to Ref.h
[FIX] Fixed a bug with logging that now removes the extern dependencies
[DEL] All Validate(const wxListBox &) methods since the new logging does it
[DEL] Got rid of Contest junk
[ADD] RockClimb and FogClear HM abilities
[DEL] Daycares options
[FIX] Held Items now a numerical option
[FIX] Type STAB is now a multiplier
[DEL] pokemod/NatureEffect.{h, cpp)
[FIX] Removed NatureEffect into Nature
[FIX] Added missed methods to Badge
[FIX] Decided to change from wxGTK to Qt

-----------------
Rev:  21
Date: 28 June 2007
User: MathStuf
-----------------
[FIX] Rev 20 date
[FIX] Tile overlays in pokemodr to 64x64
[ADD] Makefile for Linux
[FIX] Various (un)signed mismatches (mainly with std::string::npos)
[ADD] Count method to String
[ADD] Convert methods to String
[FIX] Ini GetValues to new abstraction in String
[ADD] Skeleton for Dialog validation (19 more to go)
[FIX] Some minor GUI things
[FIX] Some optimizations for Hat.h

-----------------
Rev:  20
Date: 22 June 2007
User: MathStuf
-----------------
[ADD] Pokemod validation
[FIX] made internal Pokemod pointer instead of global curPokeMod
[ADD] MapEffect validation
[FIX] Make images needed copy to necessary places

-----------------
Rev:  19
Date: 3 June 2007
User: MathStuf
-----------------
[FIX] Matrix insertion error
[ADD] ID duplication checks for submodules
[ADD] Duplicate checks for submodules
[FIX] AStyle formatter run over all source files
[FIX] Stylistic clean up
[ADD] Pokemod methods

-----------------
Rev:  18
Date: 2 June 2007
User: MathStuf
-----------------
[FIX] Rev 17 date
[ADD] pokemod/Tile.{h, cpp}
[ADD] pokemod/Pokemon.{h, cpp}
[FIX] Initialization for constructors as possible
[FIX] Matrix problems
[FIX] const X*const -> X* errors (was in Delete<Submodule> methods)
[ADD] pokemod/MapEffect.{h, cpp}
[FIX] Flag Set interface
[ADD] Flag logging revamped
[ADD] pokemod/MapWarp.{h, cpp}
[ADD] Some more enumerations to Ref.h
[ADD] pokemod/MapTrainer.{h, cpp}
[ADD] pokemod/Status.{h, cpp}
[ADD] pokemod/StatusEffect.{h, cpp}
[ADD] some more Validation methods

-----------------
Rev:  17
Date: 31 May 2007
User: MathStuf
-----------------
[ADD] Hat.h as a random container
[ADD] Delete submodules by name methods
[FIX] Made every possible value to unsigned as possible
[ADD] const to GetSubmodule
[FIX] Removed redundant "isValid = true;" initializer in validation methods
[ADD] Item Effect validation started
[ADD] AbilityEffect validation
[ADD] Dive option to Tiles

-----------------
Rev:  16
Date: 28 May 2007
User: MathStuf
-----------------
[FIX] Log overloading confusion
[FIX] Lots of little things (went through and attempted to compile everything, getting rid of errors)
[ADD] Move methods
[ADD] /pokemod/Move.cpp

-----------------
Rev:  15
Date: 26 May 2007
User: MathStuf
-----------------
[ADD] /pokemod/EggGroup.{h, cpp}
[ADD] /pokemod/Move.h
[FIX] Made arguments const where possible

-----------------
Rev:  14
Date: 24 May 2007
User: MathStuf
-----------------
[ADD] /pokemod/MoveEffect.{h, cpp}
[ADD] /pokemod/ItemEffect.{h, cpp}
[ADD] /pokemod/Dialog.{h, cpp}
[ADD] /pokemod/NatureEffect.{h, cpp}
[FIX] Various minor typos

-----------------
Rev:  13
Date: 22 May 2007
User: MathStuf
-----------------
[ADD] /pokemod/CoinItem.{h, cpp}
[ADD] /pokemod/Item.{h, cpp}
[ADD] /pokemod/MapWildList.{h, cpp}
[ADD] /pokemod/MapWildPokemon.{h, cpp}
[ADD] /pokemod/MapTrainerTeam.{h, cpp}

-----------------
Rev:  12
Date: 21 May 2007
User: MathStuf
-----------------
[ADD] /pokemod/PokemonNature.{h, cpp}
[ADD] /pokemod/PokemonAbility.{h, cpp}
[ADD] /pokemod/ItemStorage.{h, cpp}
[ADD] /pokemod/PokemonMove.{h, cpp}
[ADD] /pokemod/PokemonEvolution.{h, cpp}
[ADD] /pokemod/Pokemod.{h, cpp}
[FIX] Header info directory paths
[ADD] /pokemod/CoinList.{h, cpp}

-----------------
Rev:  11
Date: 21 May 2007
User: MathStuf
-----------------
[ADD] /pokemod/Time.{h, cpp}
[ADD] /pokemod/Store.{h, cpp}
[ADD] /pokemod/PokemonItem.{h, cpp}

-----------------
Rev:  10
Date: 20 May 2007
User: MathStuf
-----------------
[FIX] Reformatted Logging functions to be more uniform
[ADD] /pokemod/AbilityEffect.{h, cpp}
[ADD] /pokemod/Type.{h, cpp}
[DEL] /pokemod/Matrix.cpp
[FIX] Some various 'const' errors (still some left though, mainly with String, Frac, and logging)

-----------------
Rev:  9
Date: 10 May 2007
User: MathStuf
-----------------
[FIX] Migration to INI format started
[FIX] Rev. 8 date

-----------------
Rev:  8
Date: 5 May 2007
User: MathStuf
-----------------
[ADD] STANDARDS file
[FIX] Redid headers with inheritance to fit standards
[FIX] Redid headings on source to include paths
[FIX] Added /ai to C::B project
[ADD] /ai/Net.{h, cpp}
[ADD] AddNode(), DeleteNode(), UpdateBias() methods to Layer class
[ADD] UpdateWeights() method to Node class
[DEL] /pokemod/Xml.{h, cpp}
[ADD] /pokemod/Ini.{h, cpp}
[ADD] INI file format decided to be superior to XML

-----------------
Rev:  7
Date: 3 May 2007
User: MathStuf
-----------------
[FIX] Allowed more general logging for PokeMod
[FIX] Fixed errors in PokeMod logging functions

-----------------
Rev:  6
Date: 3 May 2007
User: MathStuf
-----------------
[FIX] Moved PokeMod namespace into PokeGen
[DEL] Old PokeModr C::B project

-----------------
Rev:  5
Date: 3 May 2007
User: MathStuf
-----------------
[ADD] Meta Code::Blocks project file instead of individual ones
[ADD] Neural Network nodes and layers classes (/ai)

-----------------
Rev:  4
Date: 3 May 2007
User: hypersonic
-----------------
[DEL] /audio/{libaudio.a, main2.c} (not necessary)

-----------------
Rev:  3
Date: 3 May 2007
User: hypersonic
-----------------
[ADD] audio code

-----------------
Rev:  2
Date: 3 May 2007
User: hypersonic
-----------------
[ADD] /audio

-----------------
Rev:  1
Date: 2 May 2007
User: MathStuf
-----------------
[ADD] Import