55395 Commits

Author SHA1 Message Date
Ignacio R. Morelle
092031e5e1 Set the executable bit on data/tools/wmllint-1.4 2014-01-12 23:40:03 -03:00
Alexander van Gessel
548869fdfc Merge branch 'master' of github.com:wesnoth/wesnoth-old 2014-01-13 01:15:12 +01:00
Alexander van Gessel
724dd0f949 Fall back to variation_name if variation_id is not present (bug #21280) 2014-01-13 01:14:46 +01:00
Ignacio R. Morelle
9d6d59ee27 Display tooltips for Advanced Preferences list entries
This is intended to help in case any have been truncated. We add
tooltips for every entry for consistency.
2014-01-12 21:06:13 -03:00
Ignacio R. Morelle
02db755d70 Fallback to the entry name when an Advanced Preferences entry has no tooltip 2014-01-12 21:05:18 -03:00
Ignacio R. Morelle
152aa0b3f8 Shorten label for the savegame version prompt advanced preferences entry 2014-01-12 20:35:03 -03:00
Ignacio R. Morelle
b0417bc573 Truncate long Advanced Preferences entries with ellipses
This truncates long Advanced Preferences list entry labels and values
with ellipses using hardcoded character count limits in order to avoid
stretching out the listbox too much over the dialog's width.

Currently, this is notably necessary for the German translation.

The character count limits chosen for this commit (46 for the label, 8
for the value) only really work with the basic ASCII character set. Some
Unicode characters may be rendered wider. Furthermore, the Preferences
page selection list may container longer entries that push this listbox
further to the right, closer to the dialog's right edge.

Also, I really hope most languages have words for 'yes' or 'no' that are
at most 8 characters in length or can at least be read without ambiguity
when truncated to that limit. At least none of the translations we
support which have translated those words hit the limit.
2014-01-12 20:35:03 -03:00
Alarantalara
714bae2460 Make the trash terrains appear on the map again
They still need to be redone with standard macros or macroize the
existing code instead of leaving it all in terrain-graphics.cfg
2014-01-11 21:10:33 -05:00
Turuk
b282d315c4 UtBS: Adjusted for new Underground alias 2014-01-11 11:53:08 -05:00
Turuk
b74d723328 UtBS: Updating aliases to correct form. 2014-01-11 10:07:09 -05:00
Turuk
0ffa372f14 Villages fixed to give defense benefit again. 2014-01-11 09:50:30 -05:00
Emilien Rotival
6a531db9dc High res orb artwork for the Pandora theme 2014-01-10 17:06:48 +01:00
Ignacio R. Morelle
d6384695ec Fix broken image references in the Gameplay -> Time of Day help topic 2014-01-10 06:24:03 -03:00
Alarantalara
92b7e8fc39 Remove unneeded [and] 2014-01-09 16:20:38 -05:00
fendrin
a66a80efab Don't make assumptions on WML string value quote format. 2014-01-09 07:50:32 +01:00
fendrin
fa05514f5a Submenu for the "Back to turn x" autosave loading menu entries. 2014-01-09 07:17:57 +01:00
fendrin
159c91d492 Correct spelling in a comment. 2014-01-09 07:17:57 +01:00
fendrin
601b842709 Made an error message a little nicer. 2014-01-09 07:17:57 +01:00
fendrin
c25849b7ea Reduce the string for the village terrain from "Vit" to "Vt". 2014-01-09 07:17:57 +01:00
Ignacio R. Morelle
e9d5cecc27 Hide Village, Castle, and Keep Overlay terrains from help 2014-01-08 19:56:06 -03:00
Ignacio R. Morelle
614fe7d288 gui1: Gray out scrollbar buttons when the widget is first constructed
This makes it so the upwards scrolling arrow button is grayed out at
first when the scrollbar starts at the top; otherwise it was only grayed
out after the user scrolled down and then back to the top.
2014-01-08 05:44:13 -03:00
fendrin
708e0a7c94 Fix enemy moves not shown when hovering over the fiend's units. 2014-01-08 09:16:08 +01:00
Ignacio R. Morelle
e150c1d56f Don't list hide_help=yes unit type variations in the help system 2014-01-08 05:09:17 -03:00
Alexander van Gessel
0addcc7a11 Give '/' the same precedence as '*' (bug #18166) 2014-01-08 06:39:32 +01:00
Emilien Rotival
1c2f326dff Updated minimal artwork for small resolution themes.
The update is meant to accommodate an extra side button while giving more space to the map.
2014-01-08 00:33:14 +01:00
Allefant
66162c1374 [wmlparser2] Fixed another newline handling case.
The last commit fixed one issue but introduced yet another. Now both
should work. Need to investigate if parsing the .plain files really is
necessary, would make things much easier if there was no need for it.
2014-01-07 15:37:36 +01:00
Ignacio R. Morelle
164d632b54 New wesnoth-defaults utility script
I wrote this a long time ago and have been using it to ease testing of
Wesnoth's default configuration under different conditions ever since.

It creates a new configuration and data directory under /tmp that only
exists for the duration of the Wesnoth session, and disables WML cache
functionality.

This is extremely useful for quickly testing and debugging functionality
dependant on user configuration settings.
2014-01-07 02:39:31 -03:00
Alexander van Gessel
9c53daa2a5 Merge branch 'master' of github.com:trewe/wesnoth-old (PR #90) 2014-01-07 06:34:25 +01:00
Ignacio R. Morelle
3bf175313b Fix possible invalid memory access in the MP sides config code (bug #21449)
(thunderstruck, you may want to review this.)

It appears that using a a function or method that returns a temporary as
the second argument of BOOST_FOREACH does something unexpected:

  BOOST_FOREACH(const config* faction, engine_->flg().choosable_factions()) {
      ...
  }

mp::flg_manager()::choosable_factions() returns a new object by value
rather than reference. Somehow this may result in invalid memory
accesses with some Boost and gcc versions (e.g. gcc 4.6.3 and Boost
1.46.1 from the bug report crashes, gcc 4.8.2 and Boost 1.54.0 here does
not), apparently.

I don't know the code well enough to determine whether
choosable_factions() returning an object by const value rather than
const reference is a typing mistake, so for now create a temporary const
reference before the BOOST_FOREACH loop.
2014-01-06 23:36:24 -03:00
Ignacio R. Morelle
715618b385 wmllint: Clarify error message about existing spelling exceptions 2014-01-06 22:59:44 -03:00
fendrin
01a0a45e35 Change the selection tool to deselect with strg+left click.
Fixes bug https://gna.org/bugs/?20878
2014-01-07 02:32:15 +01:00
fendrin
374227f76f Adjust the id and terrain string for "Trash and litter" terrain.
Also sorts the terrain to not show it at the top of the palette.
Fixes https://gna.org/bugs/index.php?21447
2014-01-07 02:32:15 +01:00
fendrin
ddd610a809 Adjusments for the new minimap and end turn graphics. 2014-01-07 02:32:15 +01:00
fendrin
21bee9b848 New minimap image from LordBob. 2014-01-07 02:32:15 +01:00
fendrin
1b7b5b28c4 New "End Turn" button from LordBob. 2014-01-07 02:32:15 +01:00
fendrin
bc99e3efa6 Crop hotkey action icon overlays to 18x18 when used as menu entries. 2014-01-07 02:32:15 +01:00
Espreon
869060921f 'naptha' -> 'naphtha' for consistency. 2014-01-06 14:51:55 -05:00
trewe
67cc9beca7 bumped changelogs 2014-01-06 14:45:16 +00:00
trewe
c7f437961f updated po files for pt_PT 2014-01-06 14:44:16 +00:00
trewe
20458dcaf3 added new map overlays for DW, Lib and TRoW (pt) 2014-01-06 14:43:25 +00:00
trewe
acfc55f1cf removed obsolete map overlay 2014-01-06 14:41:58 +00:00
Emilien Rotival
bd035e5c2f Minor update of the 'villages' status icon and new favicon candidates 2014-01-06 09:41:22 +01:00
Ignacio R. Morelle
81626a10be preferences: Use standard constant for the WML column separator 2014-01-06 01:54:05 -03:00
Ignacio R. Morelle
e547a7b451 Bump Doxyfile version 2014-01-06 01:35:09 -03:00
Ignacio R. Morelle
d5097e34e6 Clear RELEASE_NOTES 2014-01-06 01:34:59 -03:00
Ignacio R. Morelle
1a39d268f2 Enable subtle magenta TC key bits for the Giant Mudcrawler 2014-01-06 01:33:37 -03:00
Alexander van Gessel
de24b14676 Error out if NDEBUG is defined 2014-01-06 02:41:56 +01:00
Allefant
3799631bd4 [wmlparser2] Last fix introduced a different bug.
Should work properly now.
2014-01-06 00:12:14 +01:00
Emilien Rotival
22c1b23e82 Alternate version of the 'village' status icon without transparency
This icon should eventually replace the current favicon of the website once the revamped UI will be included in a stable release.
2014-01-05 23:37:18 +01:00
Emilien Rotival
0670d34c5c New icon for the 'preferences>hotkeys>title screen' category that was added in 1.11.8 2014-01-05 23:18:39 +01:00