forked from OpenRA/OpenRA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG
1596 lines (1559 loc) · 75.4 KB
/
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
NEW:
All Mods:
An error dialog is now displayed when server connections are lost.
Added AttackMove and Guard abilities to Aircraft and Helicopters.
Aircraft and Helicopters can now be guarded by other units.
Unified the main menu navigation between TD and other mods:
Moved Create Game and Direct Connect facilities to the server browser.
Added skirmish mode to RA and D2k to complement TD's skirmish mode.
Added an Extras submenu for miscellaneous game extras.
Engineers can now regain control over husks.
Dune 2000:
Added the Atreides grenadier from the 1.06 patch.
Added randomized tiles for Sand and Rock terrain.
Shroud is now displayed by default again (disable it in the lobby settings).
Removed the build radius restrictions.
Added the BLOXXMAS terrain tiles from the 1.06 patch.
Red Alert:
Tanya can now plant C4 on bridges.
Submarine torpedoes can now hit bridges when force fired.
Increased torpedo splash damage and raised multiplier vs. concrete.
Fixed transparency glitches in the sniper icon.
Tiberian Dawn:
Commando can now plant C4 on bridges.
Added the Asset Browser to the Extras menu.
Engine:
Converted Aircraft CruiseAltitude to world coordinates.
Converted Health Radius to world coordinates.
Converted production exits to world coordinates.
Converted weapon projectiles to world coordinates.
Converted actor speed to world coordinates.
Added support for rectangular cells with forced perspective.
Added initial support for Tmp(TS) sprites.
Added GainsUnitUpgrades trait for leveling specific unit upgrades - firepower, armor, speed.
Added support for crates to level up specific unit upgrades.
Added a new Launch.Replay=$FILEPATH parameter for OpenRA.Game.exe to instantly start watching a *.rep file.
Added HackyAI settings: ExcessPowerFactor, MinimumExcessPower, IdleBaseUnitsMaximum, RushAttackScanRadius, ProtectUnitScanRadius, RallyPointScanRadius. See the traits documentation for more information.
Added HitAnimPalette trait for LaserZap projectiles. Laser hit animations can now specify individual palettes. Defaults to effect palette.
Fixed performance issues with units pathing to naval transports.
Fixed unit moving to transports that have moved.
Server:
Message of the day is now shared between all mods and a default motd.txt gets created in the user directory.
Asset Browser:
Filenames are now listed in alphabetical order
Map Editor:
Removed legacy INI/MPR map import.
Utility:
Added an improved INI/MPR map import.
Mod / Custom map compatibility:
Altitude is no longer parsed from actor templates in maps. Specify CenterPosition instead.
system.yaml has been split into four files for all mods: system-actor.yaml, system-ai.yaml, system-player.yaml and system-world.yaml.
Run `OpenRA.Utility.exe --upgrade-mod <mod> 20131223` to automatically upgrade mod rules.
Run `OpenRA.Utility.exe --upgrade-map <map path> 20131223` to automatically upgrade custom map rules.
Added a new trait Demolishable for buildings to handle the C4 demolition.
Mods that use custom TileSize must specify both width and height.
If you spot black tiles in your Dune 2000 ARRAKIS maps, replace them with the remaining sand and rock tiles. Go to Map → Fix Open Areas to randomize them.
The TestFile check in mod.yaml has been renamed to TestFiles (plural!) and now supports a comma-separated list of assets that are required to load the game.
20131223:
All mods:
Fixed dead units sometimes exploding or leaving husks when they weren't in the world.
Added hover and disabled button states [RA / D2K / TS]
Added double click start support to the replay browser.
Fixed low projectiles not colliding with walls.
Fixed double-click selection priority glitches.
Improved UI decorations (selection boxes, target lines, etc) in pixel double mode.
Added additional stand animations to infantry [RA / TD]
Added the ability to double click select maps and music.
Fixed base attack notification playing when allied engineers repaired your buildings.
Improved the ingame chat interface and input, with it defaulting to Team Chat.
Redesigned the settings panel.
Re-added move flashes.
Added a setting to always display unit status bars (can also be toggled by hotkey).
Added a setting for team health bar colors.
Added a new hotkey to select all units on screen (default: CTRL + A).
Added a new hotkey to jump to production buildings (default: TAB).
Changed default hotkey (PageUp/Down) for build palette cycling and made reverse user configurable.
Improved shroud/fog rendering.
Asset Browser:
Fixed crashes when trying to load invalid filenames or sprites with just 1 frame.
Added support for all sprite types.
Added palette chooser and colorpicker dropdown boxes.
Overhauled layout.
Red Alert:
Added MAD Tank.
Fixed a crash in Monster Tank Madness.
Fixed medics sometimes healing enemies.
Reduced Giant Ant selection box size.
Fixed paradrop description.
Various balance adjustments:
Uparmored Mobile Radar Jammer to heavy.
Uparmored Mobile Gap Generator to heavy, increased its shroud generation range from 4 to 6, and reduced its price from $1500 to $1200.
Reduced Gap Generator price from $1000 to $800.
Made Construction Yard sellable again.
Reduced MCV build time from 1 minute to 32 seconds.
No-base MCV crate chance reduced from ~100% to ~70%.
Introduced a maximum build radius of 16 cells from the nearest friendly Construction Yard.
Increased movement speeds of Rocket Soldier, Flamethrower, and Tesla Trooper from 3 to 4.
Reduced Tesla Trooper price from $500 to $400.
Increased Artillery price from $600 to $800, and increased its health from 75 to 100.
Increased V2 Rocket price from $700 to $900, reduced its movement speed from 7 to 6, increased its health from 150 to 200, reduced its warhead damage against primary base structures, and increased its rate of fire.
Increased Hind damage from 20 to 30, and introduced a small additional damage bonus against infantry.
Increased Longbow health from 120 to 150, increased its missile damage against ground targets from 40 to 60, increased its missile rate of turn from 5 to 10, and introduced a slight delay between missile launches.
Increased Grenadier projectile speed.
Reduced Medic price from $300 to $200.
Reduced Mechanic price from $800 to $500.
Added a 20% chance to eject a driver from destroyed vehicles.
Added production speed-ups for additional production buildings of the same type. Up to 50% faster production can be achieved with 7 production buildings.
Decreased the Oil Derrick cash rate from every 10 seconds to every 15 seconds.
Overhauled the Atom Bomb's damage model and introduced damage falloff over a wide radius.
Athena:
Reduced strategic victory timer to 3 minutes.
Increased the size of the starting islands.
Adjusted button highlight color to dark wine red.
Fixed ant hills using the wrong tile ID.
Adjusted Zombie build palette position.
Fixed attack dogs causing crashes by attacking non-infantry.
Disabled cloak/uncloak sound for camouflaged Pillbox.
Added two Lua-powered single player missions, ported from Red Alert's single player campaign.
Fixed aircraft falling down not revealing shroud.
Fixed floating crate artwork.
Tiberian Dawn:
C&C mod renamed to Tiberian Dawn to resolve naming ambiguities.
Fixed Bio Lab wrongly belonging to a hostile faction in East vs West 3.
Added building repair ability to the engineer.
Adjusted MLRS to fire a barrage of 8 rockets instead for improved visuals, and adjusted its rocket explosion sound.
Added a grenade toss sound.
Added missile contrails.
Added Haos Ridges, converted from RA.
Fixed player spawns in Deterring Democracy.
Added 2 additional A-10s and cannon strafing to the Airstrike support power.
Added contrails to the C-17 Globemaster.
Added cash tick sounds.
Disabled the main menu target reticle showing when a window is open.
Added a display of the faction logos when the shellmap is disabled.
Viceroids now heal on and move faster on Tiberium.
Implemented the original shroud artwork.
Fixed helicopters falling down not revealing shroud.
Fixed effect (explosions, etc) saturation when the ingame menu is activated.
Added shadow to crate artwork.
Dune 2000:
Added buildable concrete walls.
Fixed some cliffs being passable.
Fixed infantry sometimes using the wrong animation when standing.
Fixed A* debug overlay.
Fixed R8 offsets for sprites with embedded palettes.
Implemented proper spice rendering.
Implemented the original shroud artwork.
Engine:
Replays are now saved in per-mod and per-version folders.
Added password protection support for servers.
Added language translation support.
Added game ID and version information to exception and sync reports.
Map folders are now explicitly specified in mod.yaml.
Most UI widgets are now customizable in terms of font type, color, contrast and had their global defaults moved from code to metrics.yaml.
Replaced the OS X binary launcher with a script to use a new SDL2 renderer.
Improved cash tick sound playback.
Added modifier support to hotkeys.
Fixed a desync related to projectile contrails.
Fixed corrupted replays (which would immediately desync).
Removed runtime mod merging.
Added support for map scripting with Lua.
Overhauled sprite loading code.
Improved error message when loading corrupted sprites.
Rewritten shp(ts) parser makes more efficient use of texture space.
Added support for the dune 2 shp and pak formats.
Map format 6 requires the RequiresMod to be defined.
Added a multiplicitive blend mode.
Build system and packages:
Added GeoIP to Makefile so it is installed properly.
Added desktop shortcut creation support to the Makefile and Windows installer.
COPYING and CHANGELOG are now shipped on all platforms.
Fixed 'make docs' crashing when the game assets are not installed.
Renamed Game.Mods launch argument to Game.Mod.
Linux packages now install to /usr/lib/openra for consistency with other Mono applications.
Added an optional map.yaml check to the OpenRA.Lint.exe command line tool.
Map Editor:
Fixed custom assets being removed when saving an oramap.
Mod / Custom map compatibility:
Mods can now include traits from TD and D2K in RA.
Mods can now customize UI text settings like font type/color/contrast for most widgets and set global defaults in metrics.yaml.
New sections MapFolders and Translations added to mod.yaml.
Mods must now explicitly specify the mods that they can inherit maps from by defining `SupportsMapsFrom: parent_mod' in mod.yaml.
Renamed CarpetBomb trait to AttackBomber, and additional functionality added. An Armament trait is now required to specify the weapons.
Renamed Capture trait to ExternalCapture.
Renamed CapturableBar trait to ExternalCapturableBar.
Renamed LegacyCapture trait to Capture.
Renamed DebugMuzzlePositions trait to CombatDebugOverlay.
Renamed DebugOverlay trait to PathfinderDebugOverlay.
Added Sequence and GroundSequence properties to WithRotor.
Added StandAnimations property to RenderInfantry and RenderInfantryProne.
Added SplitFacings property to WithMuzzleFlash trait.
Added SquadSize and QuantizedFacings properties to AirstrikePower trait.
Added EjectInAir and EjectOnGround properties to EjectOnDeath trait.
Added new traits to world: ScreenMap, ActorMap.
Removed traits from World: SpatialBins.
Added InvalidTargets property to weapons.
Added modifier support for build palette hotkeys.
The Requires: option for inheriting from a parent mod has been removed. Mods can directly reference the parent mod files instead.
Icons definitions have moved from the unit's rules to its sequence.
Mouse cursors (cursors.yaml) must now specify their file extension.
OpenRA.Utility --png will now generate a set of frames for any sprite type [shp(td)/shp(ts)/shp(d2)/r8/tmp(td)/tmp(ra)].
OpenRA.Utility --shp now requires a list of frames to be combined into a shp.
Removed Utility --tmp-png, --r8, --fromd2 commands (use --png instead).
Removed Asset Browser file extraction / conversion (use the Utility instead).
Added OpenRA.Utility --map-preview for generating minimap previews.
Added OpenRA.Utility --map-upgrade for updating maps from format 5 to format 6.
The map format has been changed. All user-installed maps will be upgraded on the first mod launch, or using OpenRA.Utility --map-upgrade.
Unified sprite loading allows any sprite type to be used anywhere: shp can now be used for terrain, and tmp for units.
Harvestable resource definitions (ResourceTypes) have changed, and now specify their artwork using sequences.
Shroud definitions (ShroudRenderer / ShroudPalette) have changed, and now specifies its artwork using sequences.
Crater and smudge definitions (SmudgeLayer) have changed, and now specify their artwork using sequences.
20130915:
All mods:
Overhauled Fog of War to freeze the state of resource, smudge, and structures.
Overhauled weapon projectile physics, rendering, and sounds.
Overhauled firing offsets and muzzle flashes for all units.
Added starting units configuration to the lobby (MCV only, light support, heavy support).
Added lobby options for disabling shroud and fog of war.
Added "Build off Ally ConYards" lobby option.
Added starting cash selector.
Added an ingame credits menu.
Added country name resolution to the server browser and lobby.
Added descriptive error messages when connecting to a server fails.
Added guard ability to combat units ('d').
Added force-move ability (hold alt to prioritize move/crush over attack/harvest).
Added change-mod button to the asset download screen.
Added kick-ban to the server lobby.
Added a renderer geometry visualization to the debug/cheats menu.
Overhauled lobby layout.
Overhauled diplomacy menu.
Fixed turreted buildings ignoring attack orders.
Fixed units targeting cloaked actors.
Fixed exploit allowing arbitrary building placement.
Fixed exploit allowing a malicious client to steal admin rights.
Fixed exploit related to support aircraft.
Fixed glitches relating to passenger-carrying units being killed.
Fixed a crash related to bridges on certain maps.
Fixed a crash related to the color picker.
Fixed a glitch where aircraft circle in the air after being killed.
Fixed a glitch where an uncontrollable MCV is left after a construction yard is killed.
Fixed civilians panicking when healed.
Fixed visibility of additional spectator information (progress bars, spy ownership, etc).
Fixed excessive "Building" notifications when rapidly pressing icons in the sidebar.
Fixed units continuing to attack a building after it was captured.
Fixed units chasing a chronoshifted unit across the map.
Fixed units not being able to attack buildings from some angles.
Fixed infantry not being able to attack units from some angles.
Unified the music player between C&C and RA/D2K.
Unified tooltip behavior between C&C and RA/D2K.
Removed some developer-specific options from the settings menu.
Red Alert:
Added external capturing for engineers (like C&C Generals).
Added collection animation for parabomb crate.
Added public countdown timers to A-bomb and GPS.
Fixed artwork glitches in several units and buildings.
Fixed incorrect player color on captured oil derricks on some maps.
Fixed support powers being available after winning a game.
Fixed destroyable ore mines.
Fixed chronotank teleport sound.
Fixed snipers and tanya shooting vehicles and buildings.
Sniper health reduced.
Improved chronoshift interaction with vehicle husks.
Added build limit to iron curtain and chronosphere.
Removed bibs from iron curtain and chronosphere.
Improved dog attack behavior.
Tweaked some weapon explosions.
Iron curtain duration increased to 20 seconds.
Chronoshift duration decreased to 20 seconds.
Tesla coil price reduced to $1200 and firing delay increased.
Mammoth tank build time reduced to 36 seconds.
Mobile Radar Jammer range increased.
Mechanic repair amount increased.
Decrease the infantry run animation speed.
Added hospital tech structure that allows infantry to auto-heal.
Increased oil derrick health and cash rate. Added initial capture bonus.
Added several community created map decorations.
Added ants and larvae creep actors.
Added maps: Artemis, Athena, Fort Lonestar, Pluto, Sahara, Survival02, Tournament Island, Zeus.
Updated maps: Ares, Apollo, Dionysus, Doughnut, Poseidon.
Renamed maps: Ares: National Park -> Dionysus.
Removed maps: Hotzone, Mjolnir-2, Seaside.
Disabled bots on several maps where they don't work well.
C&C:
Restored "classic" multi-engineer behavior. Buildings above 50% health will be damaged by 50%; buildings below this will be captured.
Improved snow color on snow maps.
Fixed mouse cursor colors.
Fixed Nod01 mission.
Fixed veterancy chevrons on cloaked units.
Added some texture to the UI background.
Added EVA notifications when an enemy player launches an airstrike or nuclear missile.
Increased aggressiveness of Viceroids.
Reduced the pip-count on silos.
Orca range increased, reload time decreased.
Sam Site missile spread increased.
Changed hospital to a capturable tech structure that allows infantry to auto-heal.
Added dinosaurs as buildable units from the Biolab.
Added maps: Deterring Democracy, Deterring Democracy +
Removed maps: East vs West Redux.
Updated maps: Skull Valley, Slippery Slopes, The Hourglass.
Renamed maps: Rock Canyon -> Manufacturing Consent, Bialystok -> Lessons from Kosovo.
Dune 2000:
Removed converted art and sound assets - now uses the original game files.
Restored Deviator tank for Ordos.
Added new title font.
Added maps: Imperial Basin.
Fixed statistics tracking.
Updated maps: Black Mesa, Brimstone, Death Depths, Dune Boogie.
Engine:
Fixed a crash with server hosting under Windows.
Added a fatal error dialog with options to view logs and read the FAQ.
Added sync checking for projectile effects.
Removed support for mono versions < 2.10.
Added support for portable installs (create a directory "Support" inside the game root).
Significant improvements to pathfinder performance when ordering units to areas they cannot reach.
Reduced order lag for singleplayer games.
Added audio device configuration.
Added support for TS/RA2 mix files.
Added support for TS/RA2 SHP images.
Added support for TS/RA2 voxel models.
Added support for D2K RS archives.
Added support for D2K R8 images.
Added support for WAV audio files.
Added support for XCC mix databases.
Added support for the D2K InstallShield archive.
Added support for classic production-acceleration behavior.
Added support for additional damage states on buildings.
Added additional debug information when yaml merging fails.
Added additional customization options for laser weapons.
Added additional logging for server errors.
Significant additional work towards TS/RA2 terrain support.
Build system and packages:
Fix compilation issues under .Net 3.5.
Integrated windows dependencies in the installer.
Map Editor and Tools:
Added an ingame asset viewer / converter to D2K and RA (enable via the Debug tab in the settings menu).
Added utility '--map-hash' command for retrieving the hash of a map.
Added EditorConfig definitions for editors that support it.
Added StyleCop definitions for editors that support it.
20130514:
All mods:
Destroyed bridges can now be repaired with an engineer.
Significantly improved AI.
Added (beta) support for left-click mouse orders via the settings menu.
Added "move viewport to group" hotkey (home key or double tap group number).
Exposed several new and/or hidden preferences in the settings menu.
Games can now be paused with a hotkey (F9 by default) or by opening the menu in a single player game.
New/improved UI for spectators and defeated players.
Improved server list and lobby UI.
Fixed units attacking enemy units hidden by fog/shroud.
Fixed several other visibility-related bugs.
Improved range circle contrast against terrain.
Fixed UI notification sound issues.
Added "Reset Exploration" developer option (same effect as the hide-map crate).
Fixed the visibility of peripheral effects for spectators/replays (ranks, production bars, etc).
Improved aircraft contrail rendering.
Fixed issue with harvesters not undocking when a refinery is destroyed.
Fixed civilian building rendering.
Added in-game player statistics for spectators (RA and D2K only).
Added "Fragile Alliances" option, allowing alliances to be changed during free-for-all games (RA and D2K only).
Added a tooltip that shows provided and drained power (RA and D2K - C&C already had this)
Improved ingame chat dialog (RA and D2K only).
Red Alert:
Added Mobile Gap Generator.
Added Mobile Radar Jammer (jams radar and deflects enemy missiles).
Added desert theater (ported from C&C plus additional custom tiles by Harrison).
Removed Volkov.
Added announcer voice upon game start.
Civilians now panic when attacked.
Added a new desert-themed shellmap inspired by C&C Generals.
Added ice floe actors for use on snow maps.
Several improvements to the original shellmap.
New missions: Allies03, Allies04, Soviet01Classic, MonsterTankMadness, Survival01.
New maps: Room Convergence, Ghost Town, Bad Neighbors.
Improved maps: Chaos Canyon, Bomber John, Bombardment Islands.
Fixed Mechanic repair cursor.
Fixed graphics for craters for snow maps.
Re-enabled "Mud" music track.
Fixed supply track shadow.
Added unit production hotkeys.
Fixed Airfield tooltip.
Changed minimap color of gems to blue.
Gap Generator shroud now disappears on low-power/death.
Added support for Nyerguds music upgrade pack.
Fixed target line/flash for Demo Truck targets.
Added building death frames for Construction Yard, Power Plants and Ore Refinery.
Improved Ore Silo artwork (more fill states).
Improved Weapon Factory door animation and prevented the door closing before units exited.
Changed building placement color to black on snow maps for increased contrast.
Fixed Attack Dog sound.
Added duration indicators for units under Chronosphere and Iron Curtain effects.
Fixed Tanya shooting buildings and using C4 on barrels.
Fixed Chrono Tank being unable to crush infantry/sandbags or trigger mines.
Balance changes:
Base defense damage reduced against structures.
Pillbox armor increased from wood to heavy.
Construction Yard armor reduced/health increased.
Construction Yard is now unsellable to prevent Mobile Construction Vehicle crate exploit.
Superweapon health increased.
Chrono Tank damage increased/health increased/Chrono-shift range limit added/Chronosphere prerequisite added.
Demo Truck cost increased/health reduced/speed reduced.
Disguised Spies are now hidden from enemy GPS.
Added build limit to Missile Silo and Tanya.
Oil derricks are now repairable by engineers.
Minelayers can now detect mines, allowing other units to target and destroy them.
Nukes can destroy ore wells and trees.
Tesla Tank health increased.
Medium Tank damage increased.
Mammoth Tank turret rotation speed increased/damage increased.
Badger bomber health increased.
Cruiser speed increased.
Missile Sub accuracy increased.
C&C:
Building range and a short construction delay added to Construction Yards to prevent base walking.
Mobile SAM launcher given to Nod as dedicated mobile AA.
Improved explosions.
Corrected music.yaml track titles.
Tweaked building construction animation speed.
Improved cloak and building destruction sounds.
Added blue tiberium trees.
Fixed blue tiberium not poisoning infantry.
Increased crate lifetime and removed level-up crate effect.
Fixed infantry running animations.
Fixed Viceroid unit decorations (veterancy/group number).
Fixed tooltip flickering when moving the mouse.
Fixed mouse-interaction bugs in the production palette.
Improved tooltip names.
Added maps: The Sentinel, Bialystok, No Escapism, Rock Canyon, Slippery Slopes, Skull Valley, Dead in Motion Redux, East vs West redux, Drop Zone, The Hourglass.
Added EVA notification for nuclear missile launches.
Husk lifetime reduced to 10 seconds.
Obelisk is now automatically targeted by units.
Balance:
Harvester capacity increased.
Advanced Comm-Center and Temple of Nod act as a substitute prerequisite of the Comm-Center.
Reduced MCV crate probability to 80% to solve Construction Yard sell exploit.
MCV can be constructed without a service depot.
Construction Yard health reduced.
Infantry detect nearby cloaked units.
Infantry and vehicle speed on clear terrain increased.
Airstrike regen reduced to three minutes.
Comm-Center health reduced.
Airfield health reduced.
Helipad price reduced.
Advanced Guard Tower range increased/health reduced/power consumption increased.
Advanced Guard Tower missiles improved vs aircraft and vehicles/reduced vs infantry
Obelisk range increased.
Tank firing rate increased/damage vs light armor increased.
Light Tank speed increased/turn rate increased/ROF increased/damage reduced.
Turn speeds increased for most units.
Recon Bike damage reduced/sight increased/speed increased on clear, reduced on road.
Buggy health reduced/sight increased.
Flamethrower range reduced/damage increased vs wood.
Flame Tank significantly buffed.
Chinook price reduced.
Helicopter prerequisites changed to Comm-Center/Advanced Tech building.
Apache sight increased.
Orca ROF reduced/ammo increased/damage reduced/sight increased.
Stealth Tank initial stance changed to "hold-fire."
Increased sight range for Light Tank and APC.
A10 sight range increased.
Mammoth Tank speed increased/health increased/turret rotation increased/missile spread increased.
Stealth Tank range reduced/cloak delay increased/damage vs heavy armor reduced.
Turret and Guard Tower range increased.
APC damage increased/speed reduced.
Artillery range reduced/damage vs wood reduced.
Rocket Infantry damage increased vs armor.
Increased nuke and Ion Cannon damage vs heavy armor.
Grenadier's grenade speed increased.
SAM site pop-up speed increased.
Humvee / Buggy damage increased.
MLRS range reduced/ROF reduced/damage reduced.
Recon Bike damage increased vs heavy armor/burst delay added/range reduced.
Dune 2000:
Removed shroud (uses fog-of-war instead). Buildings are hidden under the fog until they are first seen.
Added Medic.
Added Stealth Raider.
Removed Deviator.
Aircraft are now unbuildable.
Fixed building positioning and selection boxes.
Added husks for units and turrets.
Added trails to shells and missiles.
Fixed animations for Windtrap, Repair Pad, IX Research.
Reduced "silos needed" warnings.
Husk lifetime reduced to 20 seconds.
Added large building radius to construction yard.
Improved explosions.
Crate probabilities adjusted.
New UI button artwork.
Added maps: Black Mesa, Black Mesa (large), Dune Boogie, Dune Boogie (large), Brimstone, Death Depths - Modded, Tuck's Sietch.
Complete rebalancing from the ground up.
Engine:
Fixed several desync crashes.
Fixed a crash involving keyboard shortcuts and dead units.
Fixed a crash involving replays and multiple game sessions on a single machine.
Fixed a rare loadscreen crash.
Improved logging on game desync.
Improved UPnP support via Mono.Nat.
Improved freetype support via SharpFont (replaces custom patched Tao.Freetype).
Improved dedicated server support.
Improved mix file decryption (fixes a crash when playing the "Mud" audio track).
Introduced a new coordinate model to simplify eventual TS/RA2 support.
Initial work to port existing code to new coordinates model.
Added a muzzle positioning debug visualization.
Added a pathfinder debug visualization.
Removed player-configurable range behind the scenes of the color picker. Fixes "radioactive" color exploit.
Show an improved error message when connecting to a server with incompatible mods.
Added automatic map downloads from content.open-ra.org when joining a server with an unknown map.
Added support for randomized weapon reports.
Improved loading times by removing unnecessary map indexing.
Scripted maps can now require human players in specified slots.
Allow mods to independently enable/disable shroud and fog of war.
Minor pathfinding improvements.
Other misc refactoring and code cleanup.
Build system and packages:
Added a `version` rule to the makefile for setting mod version strings on local development builds.
Added a `docs` rule for generating trait documentation.
Fixed permission errors in the .deb package.
Support `--instdir` options for parallel installation of .deb packages.
Added Desura compatibility for Linux.
Map Editor and Tools:
Added a toolstrip with new and improved tools.
Added support for terrain categories.
Fixed wrong palette remapping for neutral buildings.
Maps are now saved/loaded from the custom maps directory.
Fixed legacy map importer.
Added a --docs flag for OpenRA.Utility for generating trait documentation.
20121019:
Engine:
Add --transpose option to Utility
Allow --transpose to do multiple operations in one pass
Added category headers in editor (RA temperate theme only)
Added selection tool in editor for use with copy-pasting terrain
Added tilesetbuilder2 and fixed it for Dune 2000
Added tilesetbuilder command line
Added tileset extractor
Upgraded Visual Studio solution to 2010
Tons of performance improvements
Prevent too many instances of a single sound playing at once
Order results from FindByTilesInCircle by distance
Added new data types for cell and pixel coordinate pistion/vectors
Fixed issue where port in direct connect was dumped to default by force
Fixed pathfinding for units heading in opposite directions to prevent pathing deadlocks
Fixed volume and scrollspeed being different from their saved scale at game start
All Mods:
Added basic dedicated server support
Added UPnP support for multiplayer
Added option to pause the game (F3 key)
Added SimpleTeleport for non-chrono jumps for mission scripting
Added WaitFor(predicate) for mission scripting
Added support for mission objectives
Added indicator to show who is admin of a lobby
Added map size label to map chooser
Added support to set up player required slots for maps
Added hover behavior for all units. Give a unit a nonzero Altitude: in its Mobile: block and the WithShadow: trait to make it hover
Allow building speed to be set by CustomSellValue trait
Bots are forcefully removed from maps which do not allow them
Ignore spectators for lobby readiness check
Added CloakInfo.UncloakOnMove option
Made UnloadCargo.unloadAll configurable, using all by default
Support targetlines for defenses
Setting for Capturable trait to waste engineer after capturing a building or not
Fixed unloading of infantry from cargo vehicles to be spread out instead of one subcell
Fixed crates not being picked up when dropped on a unit
Fixed being able to repair when eliminated
Fixed spectator chat not using contrast
Fixed crash cycling stances while a unit dies
Fixed crash spawning corpse for actor which has already been destroyed
Fixed filtering of passengers to show with RenderCargo
Fixed incorrect working "locks" when capture/sell building races happened
Fixed radar click position
Fixed shift-tab keyboard shortcut in build palette
Added mouse-wheel support for flipping tabs in build palette
Harvesters:
No longer block each other during low-ore contention and wait for a random amount of time to search for more resources.
Refineries show which harvesters are linked by holding down the ALT key.
Fixed harvesters for AI to search the entire map when no more resources nearby
Made search radius configurable for both initial search from refinery, and search from harvest location
Harvesters will return to ordered-to location if told to harvest a specific cell while full after delivery instead of the last successfully harvested cell which may be far away
Fixed notable issues when trying to play FMVs
Red Alert:
Added two missions - Allies01 (single player) and Allies02 (co op)
Added new tiles for use in the Temperate theatre, made by Harrison
Added new crashed helicopter SHPS
Added Hospital & Bio Lab yaml definitions
Reenabled PrimaryBuilding support for airfield and helipads
Fixed chrono not killing passengers on return
Fixed missing chrono effects on unit return
Fixed tesla coil ignoring weapon offset
Fixed some HackyAI issues, such as having a tank husk fetish
Fixed some incorrect/missing music strings in music.yaml
Fixed broken Install from CD code
Fixed another zombie aircraft bug
Fixed ReturnToBase causing a crash when you had no airfields available (but an ally did)
Balance (General):
Added a heal crate (heals all of your units on map, rare occurrence)
Removed nuke crate
Nuke was made a lot more powerful
Nuclear explosions now destroy ore
Repair cost for units is always at least 1 per tick
Radar Dome cost increased from 1400 to 1600
Service Depot cost increased from 1000 to 1200
War Factory armor type changed from Heavy to Wood
Sam Site/AA Guns will no longer shoot at crashing aircraft
Barrel explosions are now more deadly, and chain explosions explode with a delay
Churches made garrisonable by Sniper infantry
Balance (Soviet):
Added Sniper - cloaked infantry with HoldFire stance by default
Added Volkov - elite unit meant to replace Tanya
Added Demo Truck - armed with a lower damage nuke
Mammoth Tank self heal now goes up to 80% health
Mammoth Tank turret rotation was slowed down
Mammoth Tank tusk rate of turn was doubled
Tesla Tank cost lowered from 1500 to 1350
Airfield armor changed from Heavy to Wood
Airfield cost increased from 300 to 500
Iron Curtain duration increased from 10 to 15 seconds, and can't use on enemy units
Balance (Allies):
Added Chronotank - tank that can "jump" within range of itself
Tanya - Colt45 attack range increased from 5.75 to 7
Transport Heli - Cost lowered from 1200 to 900, increased hp, increased cargo count to 8
AA Gun cost increased from 600 to 800
Helipad cost increased from 300 to 500
Added map: Ice Woods (Tirili)
Added map: Nishnekolymsk (Tirili)
Added map: Bomber John (Holloweye)
Added map: Bloody Delta (Holloweye)
Added map: Room-Warzone (Sunny_S)
Added map: Chaos Canyon (Nukem)
Added map: Forest Path (Gnx)
Updated map: Free Coasts (Ihptru)
Replaced map Baywatch with Hasselhoff (Nukem/Zypres)
C&C:
Added A10 crash site SHP to terrain (via Nyerguds)
Re-added the Snow tileset (via Nyerguds)
Balance:
Tank shells do 100% vs armor again, turret buffed
MRLS issues fixed
Sonic Tank moved to end of build menu
Fixed structure build menu orders in general
Fixed Biolab did providing Visceriod after being captured
Fixed tooltips not showing on the build menu
Do not shade possible build items in CNC if something else is building
Dune 2000:
Added Dune 2000!
20120603:
Engine:
General performance improvements
Health.MaxHP is no longer read-only
#Comments can be used at end of any lines in yaml files
Better error messages for duplicate yaml fields
Fixed RenderCargo support for relative altitude
Both Mods:
Add banlist setting (Server: Ban: IP1, IP2, IP3)
Missiles lose guidance and run out of remaining fuel if the target dies
Red Alert:
Added setting to change CashTick sound frequency when producting structures
Re-added camo pillbox for Allies to be garissonable and stealthed
Change cargo ownership if capturing actors with cargo
Fixed spy resetting exploration if infiltrated enemy had GPS
Cannot capture building if yourself or ally is already capturing it
Barrels are no longer capturable/sellable
Minor AI improvements
C&C:
Exposed option to toggle shellmap
MRLS cost increased to 1200
APC gun damage increased
Several building hitpoints increase/decreased
Several units movement speed adjusted
Landed helicopters made targetable by units
Mammoth Tank has an 8 second cooldown before regenerating hp
Add new Chemball explosion
Re-ordered build menu
Production hotkeys changed from YUIOP to QWERT
Fix crash loading yaml for ArtilleryShell.ContrailLength
20120504:
Engine:
General performance improvements
Added a setting to change sound engine, Sound:Engine: AL ("AL" uses OpenAL, "Null" gives no sound)
Both Mods:
Warn lobby when a client joins with DEV_VERSION
Produced units attack-move to their rallypoint
New CloakPaletteEffect trait to add shimmer effect to cloaked units
Cargo trait allows for initial passengers when units are built
Buildings now take 10 seconds to be captured
Capture time length is adjustable
Custom starting units can be used for each faction
Main menu no longer vanishes after a lobby disconnect
Fixed crash selling/capturing buildings simultaneously
Fixed crash in StartGame if there were unvalidated connections
Improved error messages given with bad MiniYaml indentations
Red Alert:
Added Spy to Allies
Infiltrates refinery to steal 50% of players cash, minimum $500
Infiltrates radar dome to reset exploration for enemy team
Can assassinate enemy units with force-fire
Added Gap Generator to Allies
Tanya made exclusive to Allies
Artillery explode chance lowered to 75%
Flamethrower has new flame art
Pillbox includes a garrisoned riflemen when built, and other infantry can garrison the structure
Camo pillbox removed
Normal AI removed
New AI: Rommel and Zhukov
Rommel is a modified Hard AI focusing on artillery and V2, and few light vehicles
Zhukov is a turtle, but sends large attacks with artillery and V2
Added map: Tainted Peak (Nukem)
Removed maps: Daejeon, Mjolnir, No Fly Zone
Fixed bug letting passengers shoot from transports
C&C:
A10s speed increased, Napalm Drop damage increased
Chinooks now carry up to 10 passengers
Sight of all infantry increased by 1
Chem Warrior/Flamethrower/Grenadier damage vs certain armor types increased
Chem Warrior will walk through tiberium instead of pathing around it
Artillery attack range doubled
Guard Tower attack range decreased by 1
MCV and Construction Yard sight increased
Construction Yard armor type changed to Heavy from Wood
Harvester armor type changed to Heavy from Light
Proability of SpawnVisceriod from 10% to 2%
Reduced damage and size of Grenadier death explosions
Units do not attack buildings when attack-moving or idle, exception made for defensive structures
Lots of AI changes
Removed nuke crate, hide-map crate
Fixed crash viewing replays
Fixed radar not being shown during replay
20120315:
Engine:
General performance improvements
Added setting for direct connection on game launch (Game:ConnectTo: ip:port)
Added setting to limit framerate via startup argument (Graphics:CapFrameRate: false)
Added owner chooser for new actors in the editor
Added actor info panel in the editor (doubleclick)
Fixed minimap export breaking subsequent actions in the editor
Fixed writing of empty replays
Fixed issue with LaserZap widths (obelisk shots)
Both Mods:
Always allow buildings to be repaired (removed dependency on Construction Yard)
Added a new Defend stance for units
Added base under attack notification
Spacebar focuses viewport to last under attack notification
Ctrl-Shift-Numkey groups units into existing group
Helicopters now bob slightly in flight
Bots:
Repair their own buildings
Maintain a level of aggro on enemy units
Moved some bot configuration into system.yaml
Fixed being unable to set rallypoints for production buildings
Replaced the server browser with a new and awesome one
Server lobbies upon creation use the previously played map
Made SpawnMPUnits' initial unit configurable
Fixed infantry squish sounds not being positioned
Fixed actor priority not being correct for doubleclick
Fixed poor stance switching detection
Semi-fixed naval units repairing from anywhere on map
Red Alert:
Fixed crash which occurred when playing an online game with Hard AI
Fixed planes stacking more than 1 per airfield
Fixed planes being unable to rearm at airfield
Improved logic for sending planes and helicopters back to base
Fixed infantry not able to walk over anti-tank mines, and vice versa
Fixed pointless reload of shellmap when disconnecting from lobby
Added a setting to toggle shellmap
Changed team color chooser to match C&C's
Balance:
MiG fires in bursts of 2 instead of 4, and damage per missile increased
Longbow fires in bursts of 2 instead of 1
Submarines are set to HoldFire stance by default
Mammoth Tank hp regeneration altered - 25hp per second, after 10 seconds since last unit damage
Tesla Tank cost decreased and armor increased
Flamethrower now only requires Flame Turret to be built
Minelayer (Anti-Tank) mine count reduced from 5 to 3
New Map: Bombardment Islands (Sprog)
New Map: Engagement (Nukem)
New Map: Man to Man (Nukem)
New Map: Breaking Point (Nukem)
New Map: Asymetric Battle (Seru)
New Map: Temperal (Blarget2)
New Map: Ares National Park (Wuschel)
New Map: Poseidon (Wuschel)
New Map: Apollo (Wuschel)
Removed Maps: Paramount, Pandemonium, Bavarian Redux
C&C:
Changed the bot spawn chooser to match RA's
Reduced delay of tooltips
Fixed a lobby crash when players joined
Balance:
Stealth Tanks are set to HoldFire stance by default
20111013:
Engine:
Fixed broken client IDs if players drop before the game starts
Converted FileExtractor into --extract cmdlet for Utility.
Added --transparent option to --png cmdlet in Utility.
Fixed shortcut description on Linux
Fixed launcher crashes on Mac
Removed obsolete SequenceEditor tool
Added --tmp-png cmdlet in Utility, to convert terrain to PNG.
Both Mods:
Allow building repair by allies
Use player color to show who is repairing a building
Only units/structures being built or queued are shaded in the production palette
Aircraft smoke is no longer visible under fog
Added a Show Grid option to the Map Editor
Added multitap support - double clicking a unit selects all units of the same type on screen
Changed map choosers to be a filterable grid of maps
Added internal machinery for IFV-style units
Red Alert:
Added naval transport
Added an indicator over powered down buildings
Aircraft crashing into water now use large_splash
Destroyer now requires Radar Dome
Increased cost of Shipyard and Sub Pen
Fixed a crash when sending aircraft back to base
Husks no longer interfere with selection
Added more options for bots in game lobby
Changed AI behavior -- now has Easy/Normal/Hard difficulty
Increased range of FTUR by 1
Reduced cost of MEDI from 500 to 300
Reduced cost of SHOK from 800 to 500
Heavy vehicles (Tanks, Harvesters, MCV) now crush infantry
New map: Classic DropZone (Holloweye)
New map: DropZone Battle of Tikiaki (Knivesron)
New map: DropZone W (Riderr3)
New map: Seven Stairs (Tirili)
New map: Contact (Nukem)
New map: Encounter (Nukem)
New map: Mass Confliction (Nukem)
New map: Calm before the Storm (Nukem)
New map: Baywatch (Nukem)
New map: Winter Warzone (Nukem)
New map: Paramount (Nukem)
New map: Doubles (Nukem)
New map: Hectic (Nukem)
New map: Pandemonium (Nukem)
New map: Chokepoint (Nukem)
New map: HotZone (Nukem)
New map: No Fly Zone (RAGEQUIT)
New map: Strip Mine (RAGEQUIT)
New map: Doughnut Hole (RAGEQUIT)
New map: Vegetation (hamb/Chris Forbes)
New map: Arctic Triangle Affair (Bellator)
New map: Mad Scramble (Bellator)
New map: Free Coasts (Ihptru)
New map: Battle Lake (Bellator)
C&C:
Slightly increased Tiberium growth rate
Increased harvester unload time
Reduced Tiberium value by 20%
Changed FTNK armor type to Light
Fixed tank squish animations to show properly
New map: Tiberium Oasis (Bellator)
20110906:
Engine:
Fixed compile failures under Windows
Improved platform detection
Modding support for custom fonts
Video memory leaks fixed
Improved error messages for unsupported graphics cards
Improved support for Intel graphics cards
Fixed incorrect resolution under some Linux systems
Write graphics.log on all graphics-related errors
Significant general performance improvements
Fix crashes when joining a game with no free player slots
Bots players are named after their AI type and pick better random colors
Map support for enforcing team and spawn choice
Fix resource-clearing weapons breaking custom terrain types (bridges)
Added a "Pixel double" mode to draw the world at 2x zoom.
Fixed broken mounting of map packages
Fixed crashes when loading broken maps
Fixed units being left alive but stranded on destroyed bridges
Fixed husks being created on water
Fixed AttackMove trying to send orders to units owned by others
Made LaserZap more flexible for modders
Both C&C and Red Alert:
Fixed desync when a player surrenders
Fixed installing from CD
Added Hotkey support:
escape to toggle ingame menu
escape to go up a level in menus / cancel prompts
return to confirm prompts
Changed shortcut for adding units to groups changed from ctrl->cmd on OSX to avoid conflicting with Spaces
Fixed Tooltips for spectators
Fixed cashticks when selling walls
Fixed show explosions when walls are sold
Fixed veteran units not repairing correctly at service depots
Fixed Rally-point color when a building is captured
Fixed selection box dragging behind ui elements
Added Mod support for passengers that take multiple slots
Added Mod support for custom tesla zap effects
Fixed desync when a support aircraft is killed after completing its task
Fixed bugs with selling refineries
Fixed superweapons being fired from disabled structures when multiple are available
Added "Mission Accomplished" / "Mission Failed" notifications when you win or lose a multiplayer game
Fixed husks jumping to the middle of a cell when a unit dies
Fixed decloak sound never being used
Improved HackyAI power management
C&C:
Completely overhauled UI
Added support for installing from original game disks
Added support for installing music from original game disks
Added support for Covert Ops music tracks
Added Skirmish mode (creates a local game against bots)
Added Configurable bot race/team/spawns
Fixed Rocket Launcher turret raising/lowering when attacking
Added muzzle flashes to Guard Tower / SAM site
Fixed firing offsets on all units and structures
Fixed Ion Cannon cursor
Fixed Apache artwork
Fixed uncapturable oil derricks
Added capturable Biolab tech structure: allows you build viceroids
All vehicles leave husks on death
Server/Skirmish creation selects the last played map by default
New animations for cloak and reveal map crates (from C&C Sole Survivor)
Added 8 new maps by Petrenko
Tweaked most existing maps
Removed East vs West 2 map
Fixed Harvester/Refinery docking animation beneath the fog of war
Improved Obelisk laser effect
Added a blue pip for harvested blue tiberium
Changed the Refinery tower lights to indicate the amount of stored tiberium
Fixed an exploit with Nod airfields on the right side of the map
Fixed bot color being saved as player color in lobby
Balance changes:
Refinery footprint changed, price decreased to $1500
Flame tank explodes on death, damage reduced by 40%
Stealth Tank damage increased, speed decreased
Rocket Launcher now fires 6 rockets, loses AA
Orca / Apache weapons reworked. Both now have limited volleys, but reload in the air. Both can attack other air units
APC weapons reworked. Now has a turret, but can attack air units only
Artillery given back to Nod
SSM launcher removed from Nod
Concrete walls require vehicle production to build
MCV, Harvester, Engineer can no longer level up (via crates)
MCV can no longer receive Cloak crates
Advanced Guard Tower range increased
SAM Site range decreased
Bridge HP halved
Infantry tiberium avoidance factor increased by 5x
Decrease tiberium damage to infantry
Rebalanced tiberium value / harvester capacity / harvesting speed
Reduced Grenadier death damage
Mammoth tank regen rate halved, Missile reload rate decreased
Building repair speed, price doubled
Recon Bike damage increased 16%
Infantry can be crushed by tanks
Removed build area radius around tech structures
Red Alert:
Fixed firing offsets on Flame trooper / Tesla trooper / Telsa tank / Tesla coil / Flame turret
Fixed bounties using incorrect unit value
Fixed parachute offsets
Added muzzle flashes to Pillbox / Camo Pillbox / SAM Site
Fixed map reveal when an ally is granted GPS
Added 16 new maps by buddha, hamb, seru
Fixed bounties of $0 displaying
Removed 3 obsolete maps
Fixed Minelayers not entering the Service Depot properly
Fixed Hind, Yak weapons being blocked by walls
Fixed phantom radar bin on subsequent games
Added new Oil Derrick artwork
Added support for Counterstrike & Aftermath music tracks
Added player color to diplomacy panel
Added capturable oil refinery tech structure
Added new harvester artwork for half-empty/empty states
Added new MCV husk artwork
Fixed spy disguise not working
Fixed hellfire missiles splashing back against helicopters
Fixed animation speed for Grenadier idle animations
Removed Lock Teams option
Fixed cursor while dragging selection box
Fixed accidental order issuing while dragging selection box
Fixed lobby "kick" buttons
Balance changes:
Medic cost reduced to $500
Mines are visible to friendlies and spectators
Friendly units don't trigger mines
Increased reload rate for aircraft
Missile sub submerge delay doubled, damage decreased by 25%
Longbow now requires Allied Tech Center
Reduced wall health
Increased cruiser accuracy
Increased Longbow missile speed by 50%
Increased SAM Site rate of fire
Utility:
Fixed --png mode for converting shp -> png
Editor:
Fixed actor rendering on OSX / Linux
Fixed crash relating to incorrect mix file location
20110511:
Engine:
Fix hotkeys firing on both key down and key up
Allow C4 delay to be configurable
Text field support for home and end keys