Commit Graph

3236 Commits

Author SHA1 Message Date
Paul Chote
de856f8c1a Fix non-selectable support actor health bars. 2016-10-04 01:43:15 +01:00
Oliver Brakmann
45f779e9c0 Merge pull request #11991 from abcdefg30/ion
Fix the IonCannonPower not playing all launch sounds
2016-09-30 17:02:27 +02:00
reaperrr
678f9563f6 Merge pull request #12103 from pchote/resource-tooltip
Add tooltips to map resources.
2016-09-29 18:36:00 +02:00
Taryn Hill
b5a08fd123 Display an error label instead of crashing in the Asset Browser 2016-09-25 15:53:40 -05:00
Paul Chote
365bd5b9bd Rename ResourceType trait fields for consistency. 2016-09-25 17:04:18 +01:00
RoosterDragon
1dd7f3e890 Merge pull request #12084 from obrakmann/fix12078_ai-production-snafu
Fix AI still producing units with captured factories in Nod missions
2016-09-23 19:40:39 +01:00
RoosterDragon
149a10c6b1 Merge pull request #12079 from pchote/fix-control-groups
Fix sprite control group decoration position.
2016-09-23 18:32:44 +01:00
Paul Chote
df98260e1a Merge pull request #12021 from abcdefg30/radarSpec
Fix spectators not being able to issue commands in TD
2016-09-22 17:51:15 +01:00
Oliver Brakmann
fca4534525 Fix AI still producing units with captured factories in Nod missions 2016-09-21 18:58:19 +02:00
Paul Chote
5e974b4959 Fix control group decoration position. 2016-09-21 14:39:44 +01:00
reaperrr
e53180fdbc Merge pull request #12036 from obrakmann/fix12031-close-chat-in-replays
Fix not being able to close the chat window in replays
2016-09-18 15:28:28 +02:00
clemty
6a3a195614 Replaces temperat trees with desert trees 2016-09-18 15:01:37 +02:00
abcdefg30
05899b5b0e Split a UnitCommandWidget from WorldCommandWidget 2016-09-18 14:55:59 +02:00
abcdefg30
e511faa2ea Fix spectators not being able to issue commands in TD 2016-09-18 14:55:58 +02:00
reaperrr
2de7a4956d Merge pull request #11975 from alercah/metrics-fix
Move most UI metrics to common.
2016-09-18 12:30:26 +02:00
Oliver Brakmann
aa68e9bfca Fix not being able to close the chat window in replays 2016-09-17 15:05:00 +02:00
Oliver Brakmann
47a24e7ad4 Remove 'campaign-' prefix from disable-experience.yaml files 2016-09-16 18:27:20 +02:00
abcdefg30
961a6d2650 Remove duplicated "Prerequisites: ~disabled" fields from the TD campaign 2016-09-13 14:22:10 +02:00
abcdefg30
41bc3b20ba Add a new OnFireSound property to IonCannonPower
This replaces the hacky use of LaunchSound
2016-09-12 23:33:37 +02:00
Oliver Brakmann
adc968db76 Merge pull request #11992 from abcdefg30/LZRange
Remove bogus LZRange field and unnecessary ParaDrop definition
2016-09-09 21:35:19 +02:00
reaperrr
1988990c7a Merge pull request #11990 from abcdefg30/margins
Remove the TopBottomSpacing from the score screen player list
2016-09-09 12:11:38 +02:00
abcdefg30
fe91629d25 Remove a bogus LZRange field together with an unnecessary ParaDrop definition 2016-09-07 23:38:00 +02:00
clemty
b2e319663e gdi07 map yaml polish 2016-09-07 00:33:06 +02:00
abcdefg30
d5e6c1f427 Remove the TopBottomSpacing from the score screen player list 2016-09-06 14:21:11 +02:00
Alexis Hunt
ef8b672f51 Move most UI metrics to common.
This reduces the odds that a third-party mod will crash due to missing
one of them. Eliminates ra2#291.
2016-09-05 13:38:40 -04:00
clemty
47080d5dc0 fix removal of cameras in nod07a and nod08a
fixes #11963
2016-09-03 22:54:41 +02:00
Paul Chote
501252af19 Merge pull request #11693 from obrakmann/player-color-contrast
Add contrast to text drawn in player colors
2016-09-02 20:24:22 +01:00
Oliver Brakmann
624e69e97b Replace use of Contrast with Shadow for ingame chat and support power timers 2016-09-02 20:58:46 +02:00
Oliver Brakmann
38c16e4f7a Add a shadow to text drawn in player colors 2016-09-02 20:58:46 +02:00
Oliver Brakmann
1059d5b88d Add a Shadow option to LabelWidget and ButtonWidget 2016-09-02 20:58:46 +02:00
Oliver Brakmann
d0109491a7 Split ChromeMetrics' ContrastColor options into two
One for dark backgrounds, one for light ones. The light one isn't currently being used, but will be by future commits
2016-09-02 20:39:27 +02:00
Paul Chote
7700250974 Merge pull request #11906 from abcdefg30/tdMute
Fix the positioning of the mute label in the TD music player
2016-09-02 19:39:24 +01:00
abcdefg30
8475ad40a7 Remove the bogus Health property from CAMERA 2016-08-30 11:31:47 +02:00
abcdefg30
25be7d1434 Fix the positioning of the mute label in all lobbies 2016-08-29 21:51:33 +02:00
abcdefg30
d204026c84 Merge pull request #11879 from obrakmann/fix11849_mousescrolling-order-trigger
Fix issuing orders when releasing RMB after joystick-scrolling
2016-08-29 21:07:18 +02:00
Oliver Brakmann
c9c542cb37 Show advisory notice when UPNP isn't supported by the router 2016-08-28 14:05:03 +02:00
Matthias Mailänder
a79cc6a606 Add a notice why automatic port forwarding is disabled. 2016-08-28 14:05:03 +02:00
abcdefg30
74ad33d14e Fix the positioning of the mute label in the TD music player 2016-08-28 11:54:03 +02:00
Oliver Brakmann
d14ff2a54e Fix removing things in the editor when stopping standard-scrolling with RMB
The cause for this was that the `HandleMouseInput` method of the `EditorViewPortController` ran before the one from the regular `ViewPortController`, thus intercepting the button press.

Switching the order of the two around fixes that, but introduced another problem, namely that the tooltips stopped working. Switching the order meant that the `ViewPortController` laid "on top" of the `EditorViewPortController`, so the latter didn't receive the `MouseEntered` event anymore. Setting the `IgnoreMouseOver` flag in the `ViewPortController` fixes this.
2016-08-28 11:26:23 +02:00
Matthias Mailänder
84d58f78d2 Merge pull request #11902 from pchote/score-line-margin
Increase the left margin of the ingame-menu team line.
2016-08-27 20:21:14 +02:00
Paul Chote
9e025e25ad Increase the left margin of the ingame-menu team line. 2016-08-27 18:03:16 +01:00
Paul Chote
32eb98c17d Remove legacy A* visualisation. 2016-08-26 16:55:46 +01:00
abcdefg30
0d33376289 Merge pull request #11873 from reaperrr/revert-11460
Revert changes from #11460
2016-08-24 23:13:30 +02:00
reaperrr
4574b18131 Revert changes from #11460 2016-08-24 18:45:43 +02:00
reaperrr
b5f36013c2 TD yaml style fixes 2016-08-21 19:36:48 +02:00
Zimmermann Gyula
5648daeeed Manual cleanup. 2016-08-21 12:05:34 +02:00
Zimmermann Gyula
5eec9ef463 Automatically upgrade rules. 2016-08-21 12:05:34 +02:00
reaperrr
0ec9725c2a Merge pull request #11621 from Mailaender/text-controlgroup
Added With*ControlGroup
2016-08-18 21:25:32 +02:00
Matthias Mailänder
7485404c87 Tweak the infantry control group positioning. 2016-08-18 21:10:57 +02:00
reaperrr
f12e0d498c Merge pull request #11771 from pchote/split-content-files
Rework mod enumeration and split content metadata into their own files.
2016-08-18 14:59:51 +02:00