forked from asimonov-im/wesnoth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
players_changelog
2920 lines (2471 loc) · 121 KB
/
players_changelog
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
This is meant to be a concise list of player-visible changes (very minor
changes may be omitted). For a complete list of changes, see the main
changelog: http://svn.gna.org/viewcvs/*checkout*/wesnoth/branches/1.10/changelog
Version 1.10.1+svn:
* Campaigns:
* Under the Burning Suns:
* Fix appearance of flood on wooden boards.
* Language and i18n:
* Updated translations: French Galician, Italian, Korean,
Portuguese (Brazil), Russian, Slovak, Spanish.
* Miscellaneous and bug fixes:
* Fix bug #19505: broken stone bridge transitions.
Version 1.10.1:
* Campaigns:
* Son of the Black Eye:
* Removed Al'Brock and Flar'Tar death as defeat condition in objectives in
Civil War.
* Tutorial:
* Fixed bug #19316: Narrator messages are now translated.
* Replacd $unit.type by $unit.language_name to make a string completely
translateable.
* Under the Burning Suns:
* Made it so that Kaleh gets the default AMLA after he's been fully
upgraded.
* Language and i18n:
* New translation: Ukrainian.
* Updated translations: British English, Chinese (Simplified), Dutch,
Finnish, French, Galician, German, Hungarian, Indonesian, Irish, Italian,
Latin, Norwegian, Old English, Polish, Portuguese (Brazil), Serbian,
Spanish.
* Multiplayer:
* Fix an accidental terrain type change in Isar's Cross.
* Fix attacker side being human in 6p_Team_Survival.
* Whiteboard
* Fixed bug #19369 : Using planning mode can cause losing ability to move my
units
* Fixed bug #19408 : Crash shortly after executing invalid multi-turn move
* Miscellaneous and bug fixes:
* Fix wrong preferences path suffix (1.1 instead of 1.10) on Linux and other
platforms using XDG layout (no compiled-in preferences path override).
* Fix bridge/rail transitions to each other.
Version 1.10.0:
* Campaigns:
* Legend of Wesmere:
* Scenario 3: Fixed bug #19067: Control over Galtrid's side stays with the
player after the arrival of Kalenz.
* Scenario 22: Fixed bug #19236: Cleodil was missing and no recall list.
* Language and i18n:
* Updated translations: Chinese (Simplified), Chinese (Traditional), Czech,
Finnish, French, Galician, German, Hungarian, Italian, Latin, Lithuanian,
Old English, Polish, Serbian, Slovak, Spanish.
* Multiplayer:
* Allow tab completion of player names in commands (bug #19284).
* Fixed eras other than the default breaking 2p_Hornshark_Island. If a player
has a faction not in the default era, a standard set of units (aimed at
Khalifate) is used now.
* Fixed bug #19083: allow attack to happen normally without causing OOS if
turn time runs out in attack selection dialog.
* Whiteboard:
* Fixed bug #18635: Percentage not displayed for units selected at their
future position.
* Fixed bug #19142: attacks can be simulated between units (for which this
shouldn't be possible).
* Fixed bug #19221: Assert when a whiteboard move-attack wins a scenario.
* Fixed bug #19222: After 'delete planned action', the unit is almost
invisible.
* Fixed turn not finishing when moves were planned for future turns.
Version 1.9.14:
* AI:
* Fixed bug #18962 and bug #19214: AI leaders are no longer slow to select
attacks.
* Campaigns:
* Sceptre of Fire:
* New set of portraits.
* Language and i18n:
* Changed font used for CJK languages to DroidSans.
* Updated translations: British English, Chinese (Simplified), Czech, Dutch,
Estonian, French, Galician, German, Hungarian, Latin, Norwegian, Serbian,
Slovak, Spanish.
Version 1.9.13:
* Language and i18n:
* Updated translations: British English, Czech, Dutch, French, Galician,
German, Hungarian, Korean, Latin, Lithuanian, Old English, Polish,
Russian, Serbian.
* Multiplayer:
* Fix user interface set to side 1 when entering linger mode
(bug #15847).
* Fixes showing of larger portraits on smaller screens
(bugs #17961 and #18686).
* Unit changes and balancing:
* Changed the Lancer's and the Deathblade's AMLA requirements to conform to
the current AMLA standards.
* User interface:
* Fixed bug #19118: Default theme: coordinates overlap with the clock status
panel on small horizontal resolutions. Also fixed for the widescreeen
theme.
* Made it so that "AM"/"PM" show up in the default and widescreen themes
on the lowest supported resolutions.
* Whiteboard:
* Display turn numbers on multi-turn planned moves.
* Fix attacks not finishing but still being transmitted over the network when
executing all actions.
* Miscellaneous and bug fixes:
* Forward ported a new version of multiplayer chat log history dialog.
* Fixed bug #19188: Turn dialog always speaks of Konrad in tutorial.
* Added NativeClient port.
* Optimized screen update (zooming, ToD change) and framerate.
Version 1.9.12:
* Language and i18n:
* Updated translations: British English, Czech, French, German, Hungarian,
Indonesian, Italian, Latin, Latvian, Old English, Russian, Slovak.
* Multiplayer:
* Fixed missed side init if controller changes at side progression
(bug #16299).
* Fixed user interface not updated if controller changes (bug #19056).
* Whiteboard:
* Fix invalid actions not being detected until another action is created
* Erase invalid actions when you try to execute them
* Remove Suppose Dead action (until we can find a better UI for it)
* Fix bug #18774: Recalling with the whiteboard enabled causes crash
* Fix bug #19061: Crash on starting most campaign scenarios
* Fix getting "not enough gold" message when executing planned recruits/recalls
* Re-enabled multi-turn moves
* Various tweaks to visuals
Version 1.9.11:
* Language and i18n:
* Updated translations: British English, Dutch, French, Finnish, Galician,
Indonesian, Italian, Korean, Latvian, Lithuanian, Old English.
* Miscellaneous and bug fixes:
* Fixed disappearing UI buttons after changing windowed/fullscreen mode
or display resolution in Preferences during a game.
Version 1.9.10:
* Campaigns:
* Descent into Darkness:
* A Small Favor, part 1: used 24 hour ToD.
* Son of the Black Eye:
* To the Harbor of Tirigaz: used 24 hour ToD.
* Under the Burning Suns
* Subterranean Struggle: no longer possible to win by allowing allies to
die.
* Across the Harsh Sands: the Black Hand oasis is no longer possible to
enter without triggering the bandits.
* Graphics:
* New Animations:
* Goblin spearman run SE.
* Merman fighter attack SE.
* Terrain:
* Tall encampment keep can now be placed next to the tent encampment keep.
* Forest/hill terrain combinations no longer appear black on the minimap
* Default team color always applied last; fixes bug #18817
* Removal of Khalifate unit images.
* Language and i18n:
* Made it so that all of the Hangul Syllables block is covered by the
font-loading code.
* Updated translations: British English, Czech, Dutch, Finnish, Galician,
Indonesian, Irish, Italian, Japanese, Korean, Latin, Lithuanian,
Old English, Portuguese (Brazil), Russian, Slovak, Swedish.
* Multiplayer:
* New map: Aethermaw.
* Updated maps: Hamlets, Howling Ghost Badlands, Thousand Stings Garrison.
* Terrain:
* Oasis may be placed on any terrain, aliased to base.
* New rotting variant for wooden bridge.
* Unit changes and Balancing
* All mounted units now have forest defense capped at 30%. This reduces their
defense on forested hills from 40% to 30%
* Forests now give best defense and worst movement on all terrain,
not just hills - fixes bug #18216.
* The XP required for an AMLA is now 50*level (and 25 for level 0) instead of
always 150.
* Increased the HP of the Great Mage from 55 to 60.
* Increased the ranged attack of the Footpad from 4-2 to 5-2.
* Removal of the Khalifate units, faction and era.
* User interface:
* Removed waypoints UI feature ('w' key) since the whiteboard provides
similar functionality.
* Added option in advanced preferences that allows the twelve-hour clock
format to be used.
* Reenabled "delay shroud updates".
* Slowed units are now tinted to be recognizable at a glance.
* Miscellaneous and bug fixes:
* Reintroduced the "Liminal" alignment. Liminal units fight best during
twilight.
* Fix gold carryover if loading a save created in linger mode (bug #16111).
Version 1.9.9:
* Campaigns:
* Under the Burning Suns:
* Fixed Naga Sentinel gaining an AMLA after 32 XP instead of the usual 150.
* Gave to Desert Shydes and Desert Stars 30% defense on void terrain.
* Graphics:
* Terrains:
* Added Gray Coastal Reef and Tropical Coastal Reef.
* Language and i18n:
* Updated translations: British English, Estonian, French, Galician, Greek,
Hewbrew, Indonesian, Irish, Latin, Macedonian, Old English, Russian,
Vietnamese.
* Multiplayer:
* A New Land:
* Fixed 'agriculture' not getting translated sometimes and research
for agriculture not getting counted if the research order wasn't
changed. (bug #16477)
* Options to share knowledge with those who have learned everything about
whatever are no longer shown. (bug #14822)
* Music and sound effects:
* New track "Battle Epic" by Doug Kaufman.
* Unit changes and balancing:
* Decreased cost of Giant Rat from 13 to 6.
* Various changes to the defense, movement and resistances of the Giant Rat.
* Increased the XP requirements of the Arif from 40 to 47.
* Increased the cost of the Falcon from 10 to 12.
* Decreased the beak and claw attack of the Falcon by one each to 2-3 and
5-1.
* Decreased the HP of the Falcon from 19 to 18.
* Increased the XP requirements of the Falcon from 20 to 24.
* Increased the XP requirements of the Hakim from 33 to 39.
* Decreased the HP of the Jundi from 36 to 32.
* Increased the XP requirements of the Jundi from 35 to 44.
* Increased the cost of the Khaiyal from 20 to 21.
* Decreased the blade resistance of the Khaiyal from 30% to 20%.
* Decreased the pierce resistance of the Khaiyal from 0% to -10%.
* Decreased the impact resistance of the Khaiyal from 10% to 0%.
* Increased the melee attack of the Mighwar from 7-5 to 8-5.
* Decreased the HP of the Mighwar from 57 to 53.
* Increased the melee attack of the Monawish from 6-4 to 7-4.
* Decreased the HP of the Monawish from 45 to 41.
* Decreased the HP of the Naffat from 32 to 28.
* Increased the XP requirements of the Naffat from 38 to 44.
* Increased the cost of the Naffat from 17 to 19.
* Decreased the melee attack of the Qatif-al-nar to 10-2.
* Decreased the ranged attack of the Qatif-al-nar to 8-3.
* Increased the XP requirements of the Rasikh from 40 to 150.
* Decreased the melee attack of the Tineen to 10-3.
* Decreased the impact resistance of the Falcon line from 0% to -10%.
* The Falcon line now gets 2 traits, one normal trait and the feral trait.
* The Naffat line is no longer able to get the strong trait.
* Converted units with khalifatelightfoot to khalifatefoot movetype:
* Increased the fire resistance from -10% to 0% (Hakim only).
* Increased the impact resistance from -20% to -10%.
* Increased the village defense from 50% to 60%.
* Removed the khalifatelightfoot movetype.
* Changes to khalifatefoot movetype:
* Increased the frozen defense from 20% to 30%.
* Changes to khalifatearmoredfoot movetype:
* Increased the shallow water and swamp mp from 2 to 3.
* Decreased the mushroom grove defense from 50% to 40%.
* Changes to the khalifatehorse movetype:
* Increased the shallow water, swamp, cave, and mushroom grove mp cost to
4 in all cases.
* Increased the forest mp cost from 2 to 3.
* Decreased the frozen mp cost from 4 to 2.
* Decreased the swamp defense from 30% to 20%.
* Decreased the cave defense from 40% to 20%.
* Decreased the mushroom grove defense from 40% to 20%.
* Increased the frozen defense from 10% to 30%.
* Increased the impact resistance from -10% to 0%.
* Changes to the khalifatearmoredhorse movetype:
* Increased the shallow water, swamp, cave, and mushroom grove mp cost to
4 in all cases.
* Increased the reef mp cost from 2 to 3.
* Decreased the frozen mp cost from 4 to 2.
* Decreased the cave defense from 40% to 20%.
* Decreased the mushroom grove defense from 40% to 20%.
* Increased the frozen defense from 10% to 30%.
* Increased the swamp defense from 10% to 20%.
* Decreased the hill defense from 60% to 50%.
* User interface:
* Whiteboard planning system:
* Added support for planning multi-turn moves.
* Added the option to hide allies' plans during a network game.
* Made action numbers colored according to team color.
* Made plan execution halt upon discovering hidden units.
Version 1.9.8:
* Language and i18n:
* Updated translations: British English, Estonian, Indonesian, Irish,
Latin, Old English, Russian, Vietnamese.
* User interface:
* Moved Animate Map option from Advanced Preferences to Display.
* Moved Reverse Time Graphics option to Advanced Preferences.
* Moved Scroll Tracking of Unit Actions display option to Advanced
Preferences, renamed to Follow Unit Actions.
* Moved Unit Standing Animations option from Advanced Preferences to
Display.
* Sort the Recruit menu by localized unit type names.
* Support for gamepads/joysticks.
* Whiteboard planning system:
* Added a new planned action type: "Suppose dead".
* Changed behavior of invalid actions (no longer immediately discarded).
* Disabled undo while planning mode is active.
* Made whiteboard plans visible to allied network players.
* Miscellaneous and bugfixes:
* Fixed bug #18117, saved games with Qatif-al-nar became corrupted.
* Fixed bug #18120, where Khalifate units were not getting the default AMLA.
Version 1.9.7:
* Graphics:
* Terrains:
* Modified Deep Water tiles for greater contrast with Shallow
* New Dead Great Tree
* Portraits:
* Drake Warden
* Language and i18n:
* Updated translations: Afrikaans, British English, Chinese (Traditional),
Galician, German, Greek, Indonesian, Irish, Japanese, Korean, Latin,
Lithuanian, Old English, Portuguese (Brazil), Serbian, Spanish, Swedish,
Vietnamese.
* Miscellaneous and bugfixes:
* Support for leader specific recruit lists.
Version 1.9.6:
* Graphics:
* Portraits:
* Added portrait for Khalifate Hakim.
* Terrains:
* New Igloo village
* Language and i18n:
* Updated translations: Afrikaans, British English, Dutch, French, Galician,
German, Greek, Hungarian, Irish, Japanese, Latin, Lithuanian, Old English,
Portuguese (Brazil), Slovak, Spanish, Swedish, Vietnamese.
* Multiplayer:
* New era: the default+Khalifate era adds a new faction for multiplayer play.
* New maps: 2p Thousand Stings Garrison, 2p Arcanclave Citadel, 6p Volcano.
* Updated maps: Caves of the Basilisk, 2p Hamlets, The Freelands, Silverhead
Crossing, Sablestone Delta, Fallenstar Lake, Den of Onis.
* Unit changes and balancing:
* Increased the pierce attack of the Orc Archer from 5-3 to 6-3.
* Decreased the HP of the Cavalryman from 38 to 34.
* Decreased the HP of the Dragoon from 53 to 49.
* Decreased the HP of the Cavalier from 68 to 64.
* Changed the 'feral' trait to give 50% instead of 40% defense on villages.
* User interface:
* Patch #2625: added a GUI interface to changing control in multiplayer
games. The command to access it is currently :give_control
Version 1.9.5:
* Graphics:
* Portraits:
* New portrait for Drake Enforcer/Thrasher.
* Terrains:
* Moved the ruined desert castle to core.
* New and improved swamp villages.
* New and improved tropical villages.
* New ruined desert keep.
* New stones and sand drifts embellishment.
* New tall encampment keep.
* New water lilies embellishment.
* Other:
* New elf-style flag.
* Language and i18n:
* New translation: Old English.
* Updated translations: British English, Chinese (Simplified),
Chinese (Traditional), Czech, Dutch, Finnish, French, Galician, German,
Irish, Italian, Japanese, Portuguese (Brazil), Slovak, Spanish, Vietnamese.
* Multiplayer:
* Don't show team labels to observers.
* Renamed /adminmsg command to /report to better reflect its use.
* User interface:
* Add 1.25, 1.75 and 3.0 animation speed factors to display preferences.
* Fixed the problem with black lines in the minimap.
* Miscellaneous and bugfixes:
* Fixed replay OOS issue triggered by time-of-day areas in scenarios.
* Removed support for TinyGUI: Devices with a resolution below 800x480 are
not supported anymore.
* The minimum screen resolution is now 800x480 instead of 800x600.
Version 1.9.4:
* Campaigns:
* Delfadors Memoirs:
* Fixed bug #17273: Made difficulty selection conform to the style of all
other mainline campaigns.
* Descent into Darkness:
* New set of portraits.
* Eastern Invasion:
* Fixed bug #15950: Made 11_Captured remove units from recall list,
preventing units being 'healed' upon load.
* Graphics:
* Terrain: added transitions for the wood floor
* Language and i18n:
* New translation: Irish.
* Updated translations: Dutch, Finnish, Galician, German, Hebrew, Japanese,
Korean, Lithuanian, Russian, Slovak, Vietnamese.
* User interface:
* New add-ons description dialog with further details, including bundled
translations.
* Increase text area dimensions on story screens and improve space use on
smallgui configurations.
Version 1.9.3:
* Campaigns:
* Descent into Darkness:
* Allow Darken Volk to open gates in A Small Favor part 3.
* The Rise of Wesnoth:
* New portraits for Jevyan, Typhon and Rithrandil.
* Language and i18n:
* Updated translations: Dutch, Finnish, German, Italian, Japanese, Korean,
Portuguese (Brazil), Spanish, Vietnamese.
* Graphics:
* Terrain:
* Fixed display of UMC castles (which were being overdrawn by regular human
castles).
* Added ruined cottage and ruined hill village.
* Added a fence embellishment terrain.
Version 1.9.2:
* Campaigns:
* Descent into Darkness:
* Made 'Alone at Last' easier.
* Legend of Wesmere:
* Map updates.
* Implemented gold carryover between the multiplayer chapters.
* Added extra keeps to keep up with the growing number of leaders.
* Heir to the Throne:
* Fixed a bug causing Warven in 'Cliffs of Thoria' not able to move through
mountains.
* Liberty:
* New set of portraits.
* Changed Relnan's character to a woman.
* New (unanimated) sprites for the Rogue Mage unit line.
* Various balancing changes to the Rogue Mage unit line.
* Northern Rebirth:
* Make it possible to choose whether a unit should pick up the
Rod of Justice or not.
* The Rise of Wesnoth:
* New set of portraits, except for Jevyan and Rithrandil.
* Gave Jevyan's familiar a custom unit type.
* Sceptre of Fire:
* Thursagan can now advance to Dwarvish Arcanister.
* New (unanimated) sprites for the Dwarvish Miner.
* Son of the Black Eye:
* Changes to the objectives and gameplay of 'Clash of Armies'.
* The South Guard:
* New portrait for Mal M'Brin.
* Graphics:
* Terrain:
* Any Castle or Keep except Dwarvish can now be combined without large gaps
or extra walls.
* New graphics for wooden bridges.
* Added variant of chasm bridge for over water.
* New transitions from all Hills and Mountains to Water.
* A new desaturated color of ocean and shallow water.
* Much improved lava transitions.
* New Waterfall automatically placed between chasm and water or swamp.
* Added Ruined Human City terrain.
* Animations:
* Standing anims: Fencer, Spearman, Dwarf Guard.
* Idle anims: 2 for the Spearman.
* Fixed drakes flying or not flying over all the correct terrains.
* Portraits: Drake Blademaster, Hurricane Drake, Drake Flameheart, alternate
Swordsman.
* Units: New base frame and animations for Mudcrawler.
* Language and i18n:
* Updated translations: Chinese (Traditional), Czech, Dutch, Galician,
German, Indonesian, Italian, Japanese, Korean, Lithuanian,
Portuguese (Brazil), Russian, Shavian, Slovak, Slovenian, Vietnamese.
* Unit changes and balancing:
* Decreased the physical resistances of the Dwarvish Scout and Dwarvish
Pathfinder to 10% and those of the Dwarvish Explorer to 20%.
* Decreased the village defense of Chocobone from 60% to 40%.
* Fixed villages on snow and sand hills providing worst instead of best
movement.
* User interface:
* Improved the layout of the title screen and fixed several bugs in it.
* Whiteboard planning system:
* Fixed a crash when creating a planned move when playing Wesnoth on
Windows.
* New "Execute all actions" command bound to CTRL+y.
Version 1.9.1:
* Campaigns:
* A Tale of Two Brothers:
* New portraits for Arne and Bjarn.
* Dead Water:
* Fixed the last scenario not working due to an 'unknown scenario' error.
* Descent into Darkness:
* Fixed the 'A Small Favor' scenarios being unbeatable.
* Eastern Invasion:
* Increased Owaec's hitpoints and attack stats, and added a new weapon
special to his morningstar on levels 2 and 3.
* Legend of Wesmere:
* Splitted the multiplayer port into five chapters with 3 difficult levels each.
* (Beta) Chapter one, a two player campaign, ends after scenario 3.
* (Beta) Chapter two, a three player campaign, ends after scenario 7.
* (Alpha) Chapter three, a four player campaign, ends after scenario 13.
* (Alpha) Chapter four, a four player campaign, ends after scenario 17.
* (Alpha) Chapter five, a two player campaign, ends with the single player version.
* There is no savefile compatibility between saves from an older version
of Wesnoth.
* Scenarios
* Scenario one's objectives changed.
* Completed a rewrite of scenario 5, changing the objectives, ai and
game mechanism slightly.
* Scenario 7
* Shortened by letting the orcs flee if their numbers went too low.
* The player can choose between two different starting positions for
Olurf.
* Rebalanced Scenario 14.
* Miscellaneous and bug fixes:
* Renamed some of the locations at the Kalian to fit with the map
changes.
* Fixed scenario number 5 where the gold carrier's overlay was not
removed.
* Fixed the bug with the army split up before scenario number 9.
* Map and coding updates regarding the new terrain types and graphics.
* Added keeps to every scenario to match the number of leaders
(singleplayer) or sides (multiplayer).
* Removed the obselete Haldric the second portrait.
* The Rise of Wesnoth:
* Made surprise enemy spawns appear in a less immediately dangerous way in
'The Midlands', 'The Swamp of Esten', 'Peoples in Decline',
'A Rough Landing', 'The Vanguard', 'Return of the Fleet' and
'Rise of Wesnoth'.
* Clarified the early finish bonus conditions in 'Fallen Lich Point' and
'Sewer of Southbay'.
* Allowed Merman Hunters to be recruited alongside Merman Fighters.
* The South Guard:
* Fixed a bug causing a freeze at the beginning of 'The Long March'.
* Graphics:
* New animations: Merman Hunter ranged animation and defence, Warrior se
attack and defence, Drake Flare and Flameheart leadership.
* New portraits: Inferno Drake, Mermaid Initiate alternate, Goblin spearman
alternate
* New Terrain: Tropical Ocean, Snowy Human City Village, Muddy Quagmire
* Improved Terrain: Desert Mountains, all 3 Dirts, all 3 cobbled roads.
* Language and i18n:
* Updated translations: Chinese (Simplified), Chinese (Traditional), French,
German, Hungarian, Indonesian, Japanese, Lithuanian, Polish, Russian,
Slovak, Vietnamese.
* Multiplayer:
* Updated maps: 4p Hamlets.
* Updated most of the maps taking advantage of the new terrains.
* Unit changes and balancing:
* Decreased the melee and ranged attack of the Footpad from 5-2 to 4-2.
* Decreased the XP requirement of the Mage from 60 to 54.
* Decreased the XP requirement of the White Mage from 150 to 136.
* Decreased the XP requirement of the Mermaid Priestess from 150 to 132.
* Added the Ghast unit from DiD to core with new base frame and animations.
* All bats are now given a 'feral' trait which caps their defense on villages
to 40% and also making them receive only one random trait.
* All villages except for water and swamp villages are now aliased to both
village and the terrain they're placed on, giving best movement and defense
of both.
* User interface:
* Use red/green color for damage in sidebar when modified by bonus/malus.
* Damage type tooltip now also shows damage after resistance calculation.
* Placing a waypoint on a capturable village will now make the unit pause
there to capture it (FR#16603).
* Miscellaneous:
* Removed: statistics upload code.
* Optimize cache creation and loading.
* Various framerate optimizations.
Version 1.9.0:
* Campaigns:
* An Orcish Incursion:
* Made 'Valley of Trolls' easier on the easiest difficulties.
* Dead Water:
* New campaign added to mainline (Intermediate level, 13 scenarios).
* Descent into Darkness:
* 'A Small Favor' (part 1) now gives an early finish bonus.
* Dela is no longer invulnerable in 'Alone at Last' but cannot be safely
assassinated.
* Eastern Invasion:
* New (unanimated) sprites for Owaec.
* Made it slightly easier to rescue the knights in 'Mal-Ravanal's Capital'.
* Heir to the Throne:
* Made 'Cliffs of Thoria' much easier.
* Liberty:
* Increased the difficulty of 'Unlawful Orders', 'The Grey Woods' and 'The
Hunters' and 'Glory'.
* Northern Rebirth:
* In Showdown, you recover full gold only if Sisal survived the previous
scenario.
* Sceptre of Fire:
* Fixed bug #16406: Fixed broken AI in first scenario.
* The South Guard:
* A new set of story art by Scavenger.
* In 'Vengeance', the final objective is now revealed at the beginning of
the scenario.
* New images for the Infantry Lieutenant and Commander by Rhyging5
* Scenarios in Eastern Invasion, Liberty, Northern Rebirth, Son of the
Black-Eye and The Rise of Wesnoth which feature computer-controlled allies
now allow you to affect their behavior via the right-click menu.
* Graphics:
* New Terrains: stone-wall-lit, snowy castle, snowy fort, desert castle,
tropical water, dead grass, dark dirt, mine rail tracks, dry hills,
etherial abyss, clean cobbled road, dark flagstones mainlined from UtBS,
wood floor, mushroom farm, volcano, snowy encampment, earthy chasm,
hewn cave wall, earthy cave floor, earthy cave wall,
and earthy hewn cave wall.
* Improved Terrains: animated water and swamp, grass, savanna, desert road, cobbled
road, human city village, overgrown path, and chasm.
* New Portraits: Orc Archer, Crossbowman, Slurbow, Slayer, Orc Grunt line
alternates #4, #5 and #6, Draug and alternate, Ghoul, Skeleton Archer line
Giant Mudcrawler, Orc Leader/Ruler, an alternate Leader and Sovereign,
Loyalist Swordsman alternate, Drake Fighter, Burner.
* New Animations: Drake Flare and Flameheart (leading animation still
missing), Dwarf Lord ranged attack, Dwarf Guard melee attack, Dwarf
Pathfinder idle, Ruffian attack and defend, Spearman s and se attack.
* New base frame and animations for Armageddon Drake.
* Two new flag styles.
* Animate terrain in editor
* Language and i18n:
* Updated translations: British English, Catalan, Chinese (Simplified),
Chinese (Traditional), Czech, Dutch, Estonian, Finnish, French, Galician,
German, Hungarian, Indonesian, Italian, Japanese, Latin, Latvian,
Lithuanian, Polish, Russian, Serbian, Spanish, Slovak, Vietnamese.
* Multiplayer:
* Updated map: Ruins of Terra-Dwelve.
* Fixed bug #15865: missing WML Child error.
* Added the winner of the first Wesnoth map competition, the 2 player map
"Elensefar Courtyard" by krotop.
* Music and sound effects:
* New version of "Northerners" by Stephen Rozanc (TreizeCouleurs).
* New sounds for wolves and wolf riders.
* New track "Silvan Sanctuary" by Mattias Westlund
* Units:
* Giant Rat moved from DiD to core.
* User interface:
* Added dialog for installation of add-on dependencies
* Show join and observe buttons per row in the lobby.
* Fixed bug #15716: Lobby crash when refreshing with filtered out games.
* Fixed bug #14730: Tab completion not working in the new lobby.
* Damage in sidebar now also take account of time of day and leadership.
* Tooltips of sidebar show more infos.
* Clicking on some elements of sidebar now open the related help page.
* Display weapon stats in recruit/recall dialog the same way as in sidebar.
* Remember recall list sorting order.
* New mouseover image instead of simply highlighting the hex
* Allow checking out terrain defense for units when it's not your turn.
* Tab completion for :commands and units search function
* Improved objectives dialogs and made them display more information of turn
limits and gold carryover in mainline campaigns.
* Miscellaneous and bug fixes:
* All villages except water and swamp villages can now be placed on any base
terrain.
* Introduced a new allignement called "Liminal". Those units fight best during the twilight times of day.
Version 1.8.0:
* Campaigns:
* Descent into Darkness:
* Added new Giant Rat base frame and animations.
* Legend of Wesmere:
* Fixed bug #15631: Scenario 3: arrival of Kalenz failed.
* Fixed bug #15679: Scenario 17: leader of side 2 is missing.
* Fixed bug #15680: Scenario 18: wrong recruitment options.
* Under the Burning Suns:
* Scenario 2: speed up AI turn.
* Graphics:
* New Cave Spider and Cuttle Fish graphics.
* Language and i18n:
* New translations: Serbian Ijekavian, Serbian Ijekavian Latin.
* Updated translations: Czech, Finnish, French, German, Hungarian, Japanese,
Latvian, Lithuanian, Russian, Serbian, Spanish, Slovak.
* Multiplayer:
* Updated maps: Cynsaun Battlefield.
* Music and sound effects:
* Fixed bug #15668: The lobby will play a random music playlist, configured
by [lobby_music], instead of looping the main menu song.
* Fixed bug #15669: The titlescreen will play a random music playlist,
configured by [titlescreen_music], instead of looping the main menu song.
The first song played will still always be the main_menu theme.
* Miscellaneous and bug fixes:
* Fixed bug #13882: Map which is invalid aborts map selection.
* Fixed bug #15545: Recall list gone after loading savegame created in
linger mode.
* Fixed bug #15598: Can't move units after reloading game.
* Fixed bug #15656: OutOfSync errors in Legend of Wesmere due to differing
starting gold.
Version 1.7.15-1.8rc1:
* AI:
* Set RCA AI to be the default AI for single-player campaigns.
* Language and i18n:
* Updated translations: Chinese (Traditional), Czech, German, Hungarian,
Japanese, Serbian.
* Multiplayer:
* Fix bug #15541: fix OOS on [unit] tag generating different
traits because of usage of local RNG instead of MP RNG.
* Fix bug #15560 for Dark Forecast: fix OOS in Dark Forecast caused by
unit advancement not properly synced across the network.
* Music and sound effects:
* Added new music track, "Weight of Revenge" by Doug Kaufman
* User interface:
* Avoid the scrollbar on the entire MP lobby when possible.
Version 1.7.14-1.8beta7:
* Language and i18n:
* Updated translations: Catalan, Chinese (Traditional), Czech, Estonian,
Finnish, German, Greek, Italian, Japanese, Lithuanian, Polish, Serbian.
* Multiplayer:
* Fixed A New Land not working when there are empty sides.
* User interface:
* The empty spots in the game list in the lobby are gone.
* Fix redraw glitches in the MP lobby
* Miscellaneous and bugfixes:
* Fix WML-generated units and MP leaders receiving only the Neutral
alignment.
Version 1.7.13-1.8beta6:
* Campaigns:
* Fixed a bug in several scenarios causing some enemy units to disappear when
loading a save.
* Graphics:
* Add and wire two new Drake attack icons.
* Language and i18n:
* Updated translations: Czech, Finnish, French, German, Hungarian, Italian,
Lithuanian, Polish, Portuguese (Brazil), Russian, Serbian.
* Multiplayer:
* An early test version of the multiplayer port of "Legend of Wesmere"
is available when starting wesnoth with the commandline argument "--debug".
* User interface:
* Fold several player groups by default in the lobby.
Version 1.7.12-1.8beta5:
* Campaigns:
* Fixed a bug in several scenarios causing some enemy units to disappear when
loading a save.
* Graphics:
* Improved the background for the new dialogs.
* Improved the speed of the MP lobby.
* Language and i18n:
* Updated translations: Czech, Finnish, French, German, Hebrew, Italian,
Latin, Russian, Shavian, Slovak, Spanish.
* Multiplayer:
* Dummy sides no longer get a turn, e.g. the status in Caves of the Basilisk
* Music and sound effects:
* New version of sad.ogg (Sad music) by Tyler Johnson.
* Miscellaneous:
* Fix errors in tutorial when the player unexpectedly kills certain
enemy units, in tutorial scenario 2.
* Orcs can no longer play twice every turn in tutorial scenario 2.
Version 1.7.11-1.8beta4:
* Language and translations:
* Updated translations: Chinese (Simplified), Estonian, French, Latvian,
Lithuanian, Portuguese (Brazil), Russian, Serbian, Slovak, Spanish.
* User interface:
* Scrollbar buttons now keep scrolling when kept pressed down.
* Graphics:
* Mainline now consistently uses the loyalty overlay from Dead Water.
* Portraits for the Four Oracles in DM.
Version 1.7.10-1.8beta3:
* Campaigns:
* Under the Burning Suns:
* Fix locations of some items in "In the domain of the dwarves".
* Graphics:
* Added attack icon for Drake Ram attack, and for UtBS's Giant Ant.
* Language and translations:
* Updated translations: French, German, Hungarian, Italian, Latvian,
Lithuanian, Polish, Portuguese (Brazil), Russian, Serbian, Slovak.
* User interface:
* Ctrl-f for fullscreen works again in the MP lobby.
* Don't reserve space for scrollbars in message dialogs.
* Resizing the MP lobby no longer crashes randomly
* Units
* Change Drake Flare and Flameheart weapon names to match new weapons.
* Decreased the speed of the dwarvish scout line by one.
* Reduced the movecosts over frozen terrain for the dwarvish scout line.
Version 1.7.9-1.8beta2:
* Campaigns:
* The Rise of Wesnoth:
* Removed the Undead trait from several custom bat units.
* Graphics:
* New animations for the Chocobone.
* Change which Orc Grunt portrait appears is the default.
* New portrait for Orc Warrior
* New portrait for Hamel (tHoT)
* Language and translations:
* Updated translations: Czech, French, German, Italian, Latin, Lithuanian,
Polish, Portuguese (Brazil), Russian, Serbian, Slovak.
* Multiplayer:
* Updated maps: Caves of the Basilisk, Hornshark Island, Howling Ghost
Badlands, Sablestone Delta.
* User interface:
* Increasing the size of the MP lobby works properly.
* Fix waypoints ignored for multi-turns moves.
* Toggle waypoint now works for each one, not just the last.
* Reclick on the selected unit now clear all waypoints.
Version 1.7.8-beta1:
* Campaigns:
* Under the Burning Suns:
* Do not allow player units to get pass the Dwarf Ghost
without completing the side quest in Tunnels of the Trolls.
* Graphics:
* New base frames for Drake Flare, Flameheart.
* New portraits for Grand Knight (alt), Lancer, Orc Grunt (two alts).
* Language and translations:
* Updated translations: Czech, Dutch, Finnish, German, Hungarian, Italian,
Latin, Lithuanian, Portuguese (Brazil), Russian.
* User interface:
* Fixed storyscreen buttons occasionally disappearing.
* Improved display order of unit healing. (patch #1343)
* Switched to the new MP lobby.
* Miscellaneous
* Add recruitment anims for the Sky and Hurricane Drakes.
Version 1.7.7:
* AI:
* Fix a serious enough bug in ai targeting. The bug caused the AI, in
certain situations, to make weird shuffle-doing-nothing moves and not seek
enemies or their villages.
* Language and translations:
* New translations: Shavian.
* Updated translations: Czech, Dutch, Estonian, Finnish, German, Hungarian,
Lithuanian, Russian, Serbian, Slovak, Spanish.
* Multiplayer:
* Updated map: The Manzivan Traps
* Units:
* Removed Elder Wose and Shock Trooper from random_leader of the default era.
* Removed Ancient Wose and Iron Mauler from random_leader of the AoH era.
* New animation WML and macros for the Drakes.
* Increased the XP required to advance for the Orcish Assassin from 30 to 34.
* Changed the cold resistance of the naga line from -20% to 0%.
* User interface:
* Add-ons descriptions are displayed according to filtering in
the download list.
* In recall dialog, use different color and brightness for XP and level.
* Miscellaneous and bugfixes:
* Fixed broken ambush/invisibility at first turn.
Version 1.7.6:
* AI:
* In some campaigns, such as in Legend of Wesmere, allied AI sides can now
recall their veterans from earlier scenarios.
* AI will now recruit somewhat more intelligently.
* In some campaigns, such as in Legend of Wesmere, allied AI sides can now
be given hints about where their leader should relocate.
* Graphics:
* New portraits for Merman Spearman, Bat, Merman Netcaster, Nightgaunt,
Spectre, Shadow
* When a unit reach a new level, a floating label indicates it.
* Language and translations:
* Updated translations: Czech, Dutch, Estonian, Finnish, French, German,
Italian, Lithuanian, Russian, Serbian, Spanish.
* New translations: Vietnamese.
* Multiplayer:
* New map: 4p Ruins of Terra-Dwelve.
* Units:
* Made units with the 'healthy' trait always rest heal but take normal
damage from poison.
* Changed the Drake Glider's movetype to give 40% defense almost everywhere.
* Gave the Fire Dragon 100% fire resistance.
* Updated the descriptions for the Drake Fighter, Glider and Burner lines.
* User interface:
* Automatically try to resolve blocked multi-turn moves.
* Better visually differentiate name, type and race in sidebar.
* Add colorized terrain defense info in sidebar.
* In attack dialog, split damages and chance to hit and color the later.
* Disable the Remove and Update add-ons buttons when there are no add-ons
installed.