FreeBSD Bugzilla – Attachment 46293 Details for
Bug 71111
[PATCH] games/wesnoth: update to 0.8.3
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
wesnoth-0.8.3.patch
wesnoth-0.8.3.patch (text/plain), 90.11 KB, created by
Ulrich Spoerlein
on 2004-08-29 20:00:47 UTC
(
hide
)
Description:
wesnoth-0.8.3.patch
Filename:
MIME Type:
Creator:
Ulrich Spoerlein
Created:
2004-08-29 20:00:47 UTC
Size:
90.11 KB
patch
obsolete
>Index: Makefile >=================================================================== >RCS file: /home/ncvs/ports/games/wesnoth/Makefile,v >retrieving revision 1.16 >diff -u -u -r1.16 Makefile >--- Makefile 23 Jul 2004 08:07:48 -0000 1.16 >+++ Makefile 29 Aug 2004 18:51:19 -0000 >@@ -6,7 +6,7 @@ > # > > PORTNAME= wesnoth >-PORTVERSION= 0.8 >+PORTVERSION= 0.8.3 > CATEGORIES= games > MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} > MASTER_SITE_SUBDIR= wesnoth >@@ -18,20 +18,47 @@ > MAINTAINER= mezz@FreeBSD.org > COMMENT= A fantasy turn-based strategy game > >+USE_GCC= 3.3 > USE_SDL= image mixer net ttf > USE_GNOME= gnometarget > WANT_GNOME= yes > USE_X_PREFIX= yes > USE_REINPLACE= yes >+USE_GETTEXT= yes >+USE_ICONV= yes > GNU_CONFIGURE= yes > >+CONFIGURE_ARGS=--with-libiconv-prefix=${LOCALBASE} \ >+ --with-libintl-prefix=${LOCALBASE} >+ > MAN6= wesnoth.6 wesnoth_editor.6 wesnothd.6 > >+PLIST= ${WRKDIR}/PLIST >+PLIST_FILES= bin/wesnoth \ >+ share/locale/ca/LC_MESSAGES/wesnoth%%LITE%%.mo \ >+ share/locale/cs/LC_MESSAGES/wesnoth%%LITE%%.mo \ >+ share/locale/da/LC_MESSAGES/wesnoth%%LITE%%.mo \ >+ share/locale/de/LC_MESSAGES/wesnoth%%LITE%%.mo \ >+ share/locale/es/LC_MESSAGES/wesnoth%%LITE%%.mo \ >+ share/locale/fi/LC_MESSAGES/wesnoth%%LITE%%.mo \ >+ share/locale/fr/LC_MESSAGES/wesnoth%%LITE%%.mo \ >+ share/locale/hu/LC_MESSAGES/wesnoth%%LITE%%.mo \ >+ share/locale/it/LC_MESSAGES/wesnoth%%LITE%%.mo \ >+ share/locale/nl/LC_MESSAGES/wesnoth%%LITE%%.mo \ >+ share/locale/no/LC_MESSAGES/wesnoth%%LITE%%.mo \ >+ share/locale/pl/LC_MESSAGES/wesnoth%%LITE%%.mo \ >+ share/locale/pt_BR/LC_MESSAGES/wesnoth%%LITE%%.mo \ >+ share/locale/sk/LC_MESSAGES/wesnoth%%LITE%%.mo \ >+ share/locale/sv/LC_MESSAGES/wesnoth%%LITE%%.mo \ >+ >+DATA_DIRS= data fonts images sounds >+ > .if defined(LITE) > CONFIGURE_ARGS+= --enable-lite >-PLIST_SUB+= LITE:="@comment " >+PLIST_SUB+= LITE="-lite" > .else >-PLIST_SUB+= LITE:="" >+PLIST_SUB+= LITE="" >+DATA_DIRS+= music > .endif > > .if defined(WITH_DEBUG) >@@ -40,39 +67,32 @@ > > .if defined(WITH_EDITOR) || defined(PACKAGE_BUILDING) > CONFIGURE_ARGS+= --enable-editor >-PLIST_SUB+= EDITOR:="" >-.else >-PLIST_SUB+= EDITOR:="@comment " >+PLIST_FILES+= bin/wesnoth_editor > .endif > > .if defined(WITH_SERVER) || defined(PACKAGE_BUILDING) > CONFIGURE_ARGS+= --enable-server >-PLIST_SUB+= SERVER:="" >-.else >-PLIST_SUB+= SERVER:="@comment " >+PLIST_FILES+= bin/wesnothd > .endif > >-.if defined(WITH_TOOLS) || defined(PACKAGE_BUILDING) >-CONFIGURE_ARGS+= --enable-tools >-PLIST_SUB+= TOOLS:="" >-.else >-PLIST_SUB+= TOOLS:="@comment " >-.endif >+# Tools are broken for 0.8.3, already fixed in CVS HEAD >+#.if defined(WITH_TOOLS) || defined(PACKAGE_BUILDING) >+#CONFIGURE_ARGS+= --enable-tools >+#PLIST_FILES+= bin/make_translation bin/merge_translations >+#.endif > > .include <bsd.port.pre.mk> > > .if ${HAVE_GNOME:Mgnomehier}!="" > CONFIGURE_ARGS+= --enable-gnome >-PLIST_SUB+= GNOME:="" >-.else >-PLIST_SUB+= GNOME:="@comment " >+PLIST_FILES+= share/gnome/apps/Games/wesnoth.desktop \ >+ share/gnome/pixmaps/wesnoth-icon.png > .endif > > .if exists(${LOCALBASE}/bin/kde-config) > CONFIGURE_ARGS+= --enable-kde >-PLIST_SUB+= KDE:="" >-.else >-PLIST_SUB+= KDE:="@comment " >+PLIST_FILES+= share/applnk/Games/TacticStrategy/wesnoth.desktop \ >+ share/icons/wesnoth-icon.png > .endif > > pre-everything:: >@@ -92,13 +112,29 @@ > .if !defined(WITH_SERVER) > @${ECHO_MSG} "WITH_SERVER=yes for enable compilation of server." > .endif >-.if !defined(WITH_TOOLS) >- @${ECHO_MSG} "WITH_TOOLS=yes for enable compilation of translation tools." >-.endif >+#.if !defined(WITH_TOOLS) >+# @${ECHO_MSG} "WITH_TOOLS=yes for enable compilation of translation tools." >+#.endif > > post-patch: > @${REINPLACE_CMD} -e 's|[$$][(]datadir[)]/applications|${X11BASE}/share/gnome/apps/Games|g ; \ > s|[$$][(]datadir[)]/icons|${X11BASE}/share/gnome/pixmaps|g' \ > ${WRKSRC}/icons/Makefile.in >+ >+do-install: >+ @${RM} -f ${PLIST} >+.for dir in ${DATA_DIRS} >+ @cd ${WRKSRC} && ${FIND} ${dir} -type f | ${SED} 's#^#share/${PORTNAME}/#' >> ${PLIST} >+.endfor >+.for dir in ${DATA_DIRS} >+ @cd ${WRKSRC} && ${FIND} ${dir} -type d -exec ${MKDIR} ${DATADIR}/{} \; \ >+ -or -type f -exec ${INSTALL_DATA} {} ${DATADIR}/{} \; >+.endfor >+ @(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET}) >+.for dir in ${DATA_DIRS} >+ @cd ${WRKSRC} && ${FIND} ${dir} -type d | ${SORT} -r | \ >+ ${SED} 's#^#@dirrm share/${PORTNAME}/#' >> ${PLIST} >+.endfor >+ @${ECHO} "@dirrm share/${PORTNAME}" >> ${PLIST} > > .include <bsd.port.post.mk> >Index: distinfo >=================================================================== >RCS file: /home/ncvs/ports/games/wesnoth/distinfo,v >retrieving revision 1.11 >diff -u -u -r1.11 distinfo >--- distinfo 5 Jul 2004 03:36:47 -0000 1.11 >+++ distinfo 29 Aug 2004 18:51:19 -0000 >@@ -1,4 +1,4 @@ >-MD5 (wesnoth-0.8.tar.gz) = c6258d08645a97c311c9538128f5af6e >-SIZE (wesnoth-0.8.tar.gz) = 22171378 >-MD5 (wesnoth-lite-0.8.tar.gz) = 81d25853f528c13886f083a2585719c3 >-SIZE (wesnoth-lite-0.8.tar.gz) = 8872249 >+MD5 (wesnoth-0.8.3.tar.gz) = e6e3f4e454fe723a2242656151749741 >+SIZE (wesnoth-0.8.3.tar.gz) = 27752981 >+MD5 (wesnoth-lite-0.8.3.tar.gz) = 2e225ca7364dd6b5e23bd652420a418a >+SIZE (wesnoth-lite-0.8.3.tar.gz) = 13656927 >Index: pkg-plist >=================================================================== >RCS file: /home/ncvs/ports/games/wesnoth/pkg-plist,v >retrieving revision 1.10 >diff -u -u -r1.10 pkg-plist >--- pkg-plist 5 Jul 2004 03:36:47 -0000 1.10 >+++ pkg-plist 29 Aug 2004 18:51:19 -0000 >@@ -1,1849 +0,0 @@ >-%%TOOLS:%%bin/make_translation >-%%TOOLS:%%bin/merge_translations >-bin/wesnoth >-%%EDITOR:%%bin/wesnoth_editor >-%%SERVER:%%bin/wesnothd >-share/wesnoth/data/battleworld.cfg >-share/wesnoth/data/campaigns/README >-share/wesnoth/data/convert.pl >-share/wesnoth/data/deaths.cfg >-share/wesnoth/data/game.cfg >-share/wesnoth/data/help.cfg >-share/wesnoth/data/intro.cfg >-share/wesnoth/data/items.cfg >-share/wesnoth/data/maps/Eastern_Invasion/An_Elven_Alliance >-share/wesnoth/data/maps/Eastern_Invasion/An_Unexpected_Appearance >-share/wesnoth/data/maps/Eastern_Invasion/Captured >-share/wesnoth/data/maps/Eastern_Invasion/Lake_Vrug >-share/wesnoth/data/maps/Eastern_Invasion/Mal-Ravanals_Capital >-share/wesnoth/data/maps/Eastern_Invasion/Northern_Outpost >-share/wesnoth/data/maps/Eastern_Invasion/The_Crossing >-share/wesnoth/data/maps/Eastern_Invasion/The_Escape_Tunnel >-share/wesnoth/data/maps/Eastern_Invasion/The_Outpost >-share/wesnoth/data/maps/Eastern_Invasion/The_Undead_Border_Patrol >-share/wesnoth/data/maps/Eastern_Invasion/Training_the_Ogres >-share/wesnoth/data/maps/Eastern_Invasion/Tribal_Warfare >-share/wesnoth/data/maps/Eastern_Invasion/Two_Paths >-share/wesnoth/data/maps/Eastern_Invasion/Undead_Crossing >-share/wesnoth/data/maps/Eastern_Invasion/Weldyn_under_Attack >-share/wesnoth/data/maps/Eastern_Invasion/loyalistmap11 >-share/wesnoth/data/maps/Heir_To_The_Throne/A_Choice_Must_Be_Made >-share/wesnoth/data/maps/Heir_To_The_Throne/Bay_of_Pearls >-share/wesnoth/data/maps/Heir_To_The_Throne/Blackwater_Port >-share/wesnoth/data/maps/Heir_To_The_Throne/Crossroads >-share/wesnoth/data/maps/Heir_To_The_Throne/Dwarven_Doors >-share/wesnoth/data/maps/Heir_To_The_Throne/Elves_Besieged >-share/wesnoth/data/maps/Heir_To_The_Throne/Ford_of_Abez >-share/wesnoth/data/maps/Heir_To_The_Throne/Gryphon_Mountain >-share/wesnoth/data/maps/Heir_To_The_Throne/Hasty_Alliance >-share/wesnoth/data/maps/Heir_To_The_Throne/High_King_at_Sea >-share/wesnoth/data/maps/Heir_To_The_Throne/Home_Clan >-share/wesnoth/data/maps/Heir_To_The_Throne/Home_North_Elves >-share/wesnoth/data/maps/Heir_To_The_Throne/Isle_of_Anduin >-share/wesnoth/data/maps/Heir_To_The_Throne/Isle_of_the_Damned >-share/wesnoth/data/maps/Heir_To_The_Throne/Mountain_Pass >-share/wesnoth/data/maps/Heir_To_The_Throne/Muff_Malal_Peninsula >-share/wesnoth/data/maps/Heir_To_The_Throne/Northern_Winter >-share/wesnoth/data/maps/Heir_To_The_Throne/Plunging_Into_the_Darkness >-share/wesnoth/data/maps/Heir_To_The_Throne/Princess_of_Wesnoth >-share/wesnoth/data/maps/Heir_To_The_Throne/Return_to_Wesnoth >-share/wesnoth/data/maps/Heir_To_The_Throne/Sceptre >-share/wesnoth/data/maps/Heir_To_The_Throne/Snow_Plains >-share/wesnoth/data/maps/Heir_To_The_Throne/Swamp_Of_Dread >-share/wesnoth/data/maps/Heir_To_The_Throne/The_Lost_General >-share/wesnoth/data/maps/Heir_To_The_Throne/The_Siege_of_Elensefar >-share/wesnoth/data/maps/Heir_To_The_Throne/Valley_of_Death >-share/wesnoth/data/maps/Multiplayer/BattleWorld >-share/wesnoth/data/maps/Multiplayer/Castles >-share/wesnoth/data/maps/Multiplayer/ForestofFear >-share/wesnoth/data/maps/Multiplayer/King_of_the_Hill >-share/wesnoth/data/maps/Multiplayer/Three_Rivers >-share/wesnoth/data/maps/Multiplayer/Wesbowl >-share/wesnoth/data/maps/Multiplayer/Weslin >-share/wesnoth/data/maps/Son_Of_The_Black_Eye/Black_Flag >-share/wesnoth/data/maps/Son_Of_The_Black_Eye/Desert_Of_Death >-share/wesnoth/data/maps/Son_Of_The_Black_Eye/End_Of_Peace >-share/wesnoth/data/maps/Son_Of_The_Black_Eye/Saving_Inarix >-share/wesnoth/data/maps/Son_Of_The_Black_Eye/Shan_Taum_The_Smug >-share/wesnoth/data/maps/Son_Of_The_Black_Eye/Silent_Forest >-share/wesnoth/data/maps/Son_Of_The_Black_Eye/The_Siege_Of_Barag_Gor >-share/wesnoth/data/maps/Son_Of_The_Black_Eye/To_The_Harbour_Of_Tirigaz >-share/wesnoth/data/maps/Son_Of_The_Black_Eye/Towards_Mountains_of_Haag >-share/wesnoth/data/maps/The_Dark_Hordes/A_New_Chance >-share/wesnoth/data/maps/The_Dark_Hordes/Brother_Against_Brother >-share/wesnoth/data/maps/The_Dark_Hordes/Confrontation >-share/wesnoth/data/maps/The_Dark_Hordes/Crelanus_Book >-share/wesnoth/data/maps/The_Dark_Hordes/Inside_The_Tower >-share/wesnoth/data/maps/The_Dark_Hordes/Mages_And_Elves >-share/wesnoth/data/maps/The_Dark_Hordes/The_Skull_of_Agarash >-share/wesnoth/data/maps/Tutorial/Tutorial1 >-share/wesnoth/data/maps/Tutorial/Tutorial2 >-share/wesnoth/data/multiplayer.cfg >-share/wesnoth/data/names.cfg >-share/wesnoth/data/sample_translation.cfg >-share/wesnoth/data/scenario-test.cfg >-share/wesnoth/data/scenarios/Eastern_Invasion/Captured.cfg >-share/wesnoth/data/scenarios/Eastern_Invasion/Crossing.cfg >-share/wesnoth/data/scenarios/Eastern_Invasion/Elven_Alliance.cfg >-share/wesnoth/data/scenarios/Eastern_Invasion/Escape_Tunnel.cfg >-share/wesnoth/data/scenarios/Eastern_Invasion/Lake_Vrug.cfg >-share/wesnoth/data/scenarios/Eastern_Invasion/Mal-Ravanals_Capital.cfg >-share/wesnoth/data/scenarios/Eastern_Invasion/Northern_Outpost.cfg >-share/wesnoth/data/scenarios/Eastern_Invasion/Ogre_Training.cfg >-share/wesnoth/data/scenarios/Eastern_Invasion/The_Outpost.cfg >-share/wesnoth/data/scenarios/Eastern_Invasion/Tribal_Warfare.cfg >-share/wesnoth/data/scenarios/Eastern_Invasion/Two_Paths.cfg >-share/wesnoth/data/scenarios/Eastern_Invasion/Undead_Border_Patrol.cfg >-share/wesnoth/data/scenarios/Eastern_Invasion/Undead_Crossing.cfg >-share/wesnoth/data/scenarios/Eastern_Invasion/Unexpected_Appearance.cfg >-share/wesnoth/data/scenarios/Eastern_Invasion/Weldyn_Attack.cfg >-share/wesnoth/data/scenarios/Eastern_Invasion/deaths.cfg >-share/wesnoth/data/scenarios/Eastern_Invasion/intro.cfg >-share/wesnoth/data/scenarios/Heir_To_The_Throne/A_Choice_Must_Be_Made.cfg >-share/wesnoth/data/scenarios/Heir_To_The_Throne/Bay_of_Pearls.cfg >-share/wesnoth/data/scenarios/Heir_To_The_Throne/Blackwater_Port.cfg >-share/wesnoth/data/scenarios/Heir_To_The_Throne/Crossroads.cfg >-share/wesnoth/data/scenarios/Heir_To_The_Throne/Dwarven_Doors.cfg >-share/wesnoth/data/scenarios/Heir_To_The_Throne/Elven_Council.cfg >-share/wesnoth/data/scenarios/Heir_To_The_Throne/Elves_Besieged.cfg >-share/wesnoth/data/scenarios/Heir_To_The_Throne/Ford_of_Abez.cfg >-share/wesnoth/data/scenarios/Heir_To_The_Throne/Gryphon_Mountain.cfg >-share/wesnoth/data/scenarios/Heir_To_The_Throne/Hasty_Alliance.cfg >-share/wesnoth/data/scenarios/Heir_To_The_Throne/High_King_at_Sea.cfg >-share/wesnoth/data/scenarios/Heir_To_The_Throne/Home_Clan.cfg >-share/wesnoth/data/scenarios/Heir_To_The_Throne/Home_North_Elves.cfg >-share/wesnoth/data/scenarios/Heir_To_The_Throne/Isle_of_Anduin.cfg >-share/wesnoth/data/scenarios/Heir_To_The_Throne/Isle_of_the_Damned.cfg >-share/wesnoth/data/scenarios/Heir_To_The_Throne/Mountain_Pass.cfg >-share/wesnoth/data/scenarios/Heir_To_The_Throne/Muff_Malal_Peninsula.cfg >-share/wesnoth/data/scenarios/Heir_To_The_Throne/Northern_Winter.cfg >-share/wesnoth/data/scenarios/Heir_To_The_Throne/Plunging_Into_the_Darkness.cfg >-share/wesnoth/data/scenarios/Heir_To_The_Throne/Princess_of_Wesnoth.cfg >-share/wesnoth/data/scenarios/Heir_To_The_Throne/Return_to_Wesnoth.cfg >-share/wesnoth/data/scenarios/Heir_To_The_Throne/Sceptre.cfg >-share/wesnoth/data/scenarios/Heir_To_The_Throne/Snow_Plains.cfg >-share/wesnoth/data/scenarios/Heir_To_The_Throne/Swamp_Of_Dread.cfg >-share/wesnoth/data/scenarios/Heir_To_The_Throne/The_Lost_General.cfg >-share/wesnoth/data/scenarios/Heir_To_The_Throne/The_Siege_of_Elensefar.cfg >-share/wesnoth/data/scenarios/Heir_To_The_Throne/Valley_of_Death.cfg >-share/wesnoth/data/scenarios/Heir_To_The_Throne/Valley_of_Statues.cfg >-share/wesnoth/data/scenarios/Son_Of_The_Black_Eye/Black_Flag.cfg >-share/wesnoth/data/scenarios/Son_Of_The_Black_Eye/Clash_Of_Armies.cfg >-share/wesnoth/data/scenarios/Son_Of_The_Black_Eye/Desert_Of_Death.cfg >-share/wesnoth/data/scenarios/Son_Of_The_Black_Eye/End_Of_Peace.cfg >-share/wesnoth/data/scenarios/Son_Of_The_Black_Eye/Saving_Inarix.cfg >-share/wesnoth/data/scenarios/Son_Of_The_Black_Eye/Shan_Taum_The_Smug.cfg >-share/wesnoth/data/scenarios/Son_Of_The_Black_Eye/Silent_Forest.cfg >-share/wesnoth/data/scenarios/Son_Of_The_Black_Eye/The_Siege_Of_Barag_Gor.cfg >-share/wesnoth/data/scenarios/Son_Of_The_Black_Eye/To_The_Harbour_Of_Tirigaz.cfg >-share/wesnoth/data/scenarios/Son_Of_The_Black_Eye/Towards_Mountains_of_Haag.cfg >-share/wesnoth/data/scenarios/Son_Of_The_Black_Eye/deaths.cfg >-share/wesnoth/data/scenarios/Son_Of_The_Black_Eye/story.cfg >-share/wesnoth/data/scenarios/Son_Of_The_Black_Eye/utils.cfg >-share/wesnoth/data/scenarios/The_Dark_Hordes/A_New_Chance.cfg >-share/wesnoth/data/scenarios/The_Dark_Hordes/Brother_Against_Brother.cfg >-share/wesnoth/data/scenarios/The_Dark_Hordes/Confrontation.cfg >-share/wesnoth/data/scenarios/The_Dark_Hordes/Crelanus_Book.cfg >-share/wesnoth/data/scenarios/The_Dark_Hordes/Inside_The_Tower.cfg >-share/wesnoth/data/scenarios/The_Dark_Hordes/Mages_And_Elves.cfg >-share/wesnoth/data/scenarios/The_Dark_Hordes/The_Skull_of_Agarash.cfg >-share/wesnoth/data/scenarios/multiplayer/ForestOfFear.cfg >-share/wesnoth/data/scenarios/multiplayer/Random_Scenario.cfg >-share/wesnoth/data/scenarios/multiplayer/Wesbowl.cfg >-share/wesnoth/data/scenarios/multiplayer/WeslinBridge.cfg >-share/wesnoth/data/scenarios/multiplayer/battleworld.cfg >-share/wesnoth/data/scenarios/multiplayer/castles.cfg >-share/wesnoth/data/scenarios/multiplayer/scenarios.cfg >-share/wesnoth/data/schedules.cfg >-share/wesnoth/data/terrain-graphics.cfg >-share/wesnoth/data/terrain-graphics/adjacent-north.cfg >-share/wesnoth/data/terrain-graphics/adjacent.cfg >-share/wesnoth/data/terrain-graphics/base.cfg >-share/wesnoth/data/terrain-graphics/buildings.cfg >-share/wesnoth/data/terrain-graphics/castle-transitions.cfg >-share/wesnoth/data/terrain-graphics/castles.cfg >-share/wesnoth/data/terrain-graphics/util.cfg >-share/wesnoth/data/terrain.cfg >-share/wesnoth/data/themes/default.cfg >-share/wesnoth/data/themes/editor.cfg >-share/wesnoth/data/tools/exploder/castle-concave.cfg >-share/wesnoth/data/tools/exploder/castle-convex.cfg >-share/wesnoth/data/tools/exploder/castle-exploded-concave.cfg >-share/wesnoth/data/tools/exploder/castle-exploded-convex.cfg >-share/wesnoth/data/tools/exploder/models/castle.cfg >-share/wesnoth/data/translations/brazilian.cfg >-share/wesnoth/data/translations/catalan.cfg >-share/wesnoth/data/translations/czech.cfg >-share/wesnoth/data/translations/danish.cfg >-share/wesnoth/data/translations/dutch.cfg >-share/wesnoth/data/translations/english.cfg >-share/wesnoth/data/translations/finnish.cfg >-share/wesnoth/data/translations/french.cfg >-share/wesnoth/data/translations/german.cfg >-share/wesnoth/data/translations/hungarian.cfg >-share/wesnoth/data/translations/italian.cfg >-share/wesnoth/data/translations/norwegian.cfg >-share/wesnoth/data/translations/polish.cfg >-share/wesnoth/data/translations/portuguesebr.cfg >-share/wesnoth/data/translations/slovak.cfg >-share/wesnoth/data/translations/spanish.cfg >-share/wesnoth/data/translations/swedish.cfg >-share/wesnoth/data/tutorial.cfg >-share/wesnoth/data/tutorial2.cfg >-share/wesnoth/data/units/Ancient_Lich.cfg >-share/wesnoth/data/units/Ancient_Wose.cfg >-share/wesnoth/data/units/Arch_Mage.cfg >-share/wesnoth/data/units/Assassin.cfg >-share/wesnoth/data/units/Bandit.cfg >-share/wesnoth/data/units/Battle_Princess.cfg >-share/wesnoth/data/units/Blood_Bat.cfg >-share/wesnoth/data/units/Bone_Shooter.cfg >-share/wesnoth/data/units/Bowman.cfg >-share/wesnoth/data/units/Cavalier.cfg >-share/wesnoth/data/units/Cavalry.cfg >-share/wesnoth/data/units/Cavalryman.cfg >-share/wesnoth/data/units/Cave_Spider.cfg >-share/wesnoth/data/units/Chocobone.cfg >-share/wesnoth/data/units/Cockatrice.cfg >-share/wesnoth/data/units/Commander.cfg >-share/wesnoth/data/units/Cuttle_Fish.cfg >-share/wesnoth/data/units/Dark_Adept.cfg >-share/wesnoth/data/units/Dark_Spirit.cfg >-share/wesnoth/data/units/Death_Knight.cfg >-share/wesnoth/data/units/Deathmaster.cfg >-share/wesnoth/data/units/Demilich.cfg >-share/wesnoth/data/units/Direwolf_Rider.cfg >-share/wesnoth/data/units/Dragoon.cfg >-share/wesnoth/data/units/Drake_Beak.cfg >-share/wesnoth/data/units/Drake_Burner.cfg >-share/wesnoth/data/units/Drake_Clasher.cfg >-share/wesnoth/data/units/Drake_Fighter.cfg >-share/wesnoth/data/units/Drake_Fire.cfg >-share/wesnoth/data/units/Drake_Guard.cfg >-share/wesnoth/data/units/Drake_Mage.cfg >-share/wesnoth/data/units/Drake_Petit.cfg >-share/wesnoth/data/units/Drake_Slasher.cfg >-share/wesnoth/data/units/Drake_Slave.cfg >-share/wesnoth/data/units/Drake_Warrior.cfg >-share/wesnoth/data/units/Drake_Worker.cfg >-share/wesnoth/data/units/Duelist.cfg >-share/wesnoth/data/units/Dwarvish_Berserker.cfg >-share/wesnoth/data/units/Dwarvish_Dragonguard.cfg >-share/wesnoth/data/units/Dwarvish_Fighter.cfg >-share/wesnoth/data/units/Dwarvish_Lord.cfg >-share/wesnoth/data/units/Dwarvish_Runemaster.cfg >-share/wesnoth/data/units/Dwarvish_Steelclad.cfg >-share/wesnoth/data/units/Dwarvish_Thunderer.cfg >-share/wesnoth/data/units/Dwarvish_Thunderguard.cfg >-share/wesnoth/data/units/Dwarvish_Ulfserker.cfg >-share/wesnoth/data/units/Elder_Mage.cfg >-share/wesnoth/data/units/Elder_Wose.cfg >-share/wesnoth/data/units/Elvish_Archer.cfg >-share/wesnoth/data/units/Elvish_Avenger.cfg >-share/wesnoth/data/units/Elvish_Captain.cfg >-share/wesnoth/data/units/Elvish_Champion.cfg >-share/wesnoth/data/units/Elvish_Druid.cfg >-share/wesnoth/data/units/Elvish_Fighter.cfg >-share/wesnoth/data/units/Elvish_Hero.cfg >-share/wesnoth/data/units/Elvish_Lord.cfg >-share/wesnoth/data/units/Elvish_Marksman.cfg >-share/wesnoth/data/units/Elvish_Marshal.cfg >-share/wesnoth/data/units/Elvish_Outrider.cfg >-share/wesnoth/data/units/Elvish_Ranger.cfg >-share/wesnoth/data/units/Elvish_Rider.cfg >-share/wesnoth/data/units/Elvish_Scout.cfg >-share/wesnoth/data/units/Elvish_Shaman.cfg >-share/wesnoth/data/units/Elvish_Sharpshooter.cfg >-share/wesnoth/data/units/Elvish_Shyde.cfg >-share/wesnoth/data/units/Fencer.cfg >-share/wesnoth/data/units/Fighter.cfg >-share/wesnoth/data/units/Footpad.cfg >-share/wesnoth/data/units/Galleon.cfg >-share/wesnoth/data/units/Gate.cfg >-share/wesnoth/data/units/General.cfg >-share/wesnoth/data/units/Ghost.cfg >-share/wesnoth/data/units/Ghoul.cfg >-share/wesnoth/data/units/Giant_Scorpion.cfg >-share/wesnoth/data/units/Goblin_Direwolver.cfg >-share/wesnoth/data/units/Goblin_Knight.cfg >-share/wesnoth/data/units/Goblin_Pillager.cfg >-share/wesnoth/data/units/Grand_Knight.cfg >-share/wesnoth/data/units/Great_Mage.cfg >-share/wesnoth/data/units/Gryphon.cfg >-share/wesnoth/data/units/Gryphon_Master.cfg >-share/wesnoth/data/units/Gryphon_Rider.cfg >-share/wesnoth/data/units/Halbardier.cfg >-share/wesnoth/data/units/Heavy_Infantry.cfg >-share/wesnoth/data/units/Heavy_Infantryman.cfg >-share/wesnoth/data/units/Horseman.cfg >-share/wesnoth/data/units/Initiate.cfg >-share/wesnoth/data/units/Iron_Mauler.cfg >-share/wesnoth/data/units/Knight.cfg >-share/wesnoth/data/units/Lancer.cfg >-share/wesnoth/data/units/Lich.cfg >-share/wesnoth/data/units/Lieutenant.cfg >-share/wesnoth/data/units/Longbowman.cfg >-share/wesnoth/data/units/Lord.cfg >-share/wesnoth/data/units/Mage.cfg >-share/wesnoth/data/units/Mage_of_Light.cfg >-share/wesnoth/data/units/Master_Bowman.cfg >-share/wesnoth/data/units/Merman.cfg >-share/wesnoth/data/units/Merman_Lord.cfg >-share/wesnoth/data/units/Naga.cfg >-share/wesnoth/data/units/Necromancer.cfg >-share/wesnoth/data/units/Necrophage.cfg >-share/wesnoth/data/units/Nightgaunt.cfg >-share/wesnoth/data/units/Ogre.cfg >-share/wesnoth/data/units/Orcish_Archer.cfg >-share/wesnoth/data/units/Orcish_Assassin.cfg >-share/wesnoth/data/units/Orcish_Crossbow.cfg >-share/wesnoth/data/units/Orcish_Crossbowman.cfg >-share/wesnoth/data/units/Orcish_Grunt.cfg >-share/wesnoth/data/units/Orcish_Ruler.cfg >-share/wesnoth/data/units/Orcish_Shaman.cfg >-share/wesnoth/data/units/Orcish_Slayer.cfg >-share/wesnoth/data/units/Orcish_Warlord.cfg >-share/wesnoth/data/units/Orcish_Warrior.cfg >-share/wesnoth/data/units/Outlaw.cfg >-share/wesnoth/data/units/Paladin.cfg >-share/wesnoth/data/units/Pikeman.cfg >-share/wesnoth/data/units/Pirate_Galleon.cfg >-share/wesnoth/data/units/Poacher.cfg >-share/wesnoth/data/units/Princess.cfg >-share/wesnoth/data/units/Red_Mage.cfg >-share/wesnoth/data/units/Revenant.cfg >-share/wesnoth/data/units/Rogue.cfg >-share/wesnoth/data/units/Royal_Guard.cfg >-share/wesnoth/data/units/Saurian.cfg >-share/wesnoth/data/units/Saurian_Warrior.cfg >-share/wesnoth/data/units/Sea_Hag.cfg >-share/wesnoth/data/units/Sea_Orc.cfg >-share/wesnoth/data/units/Sea_Serpent.cfg >-share/wesnoth/data/units/Sergeant.cfg >-share/wesnoth/data/units/Shadow.cfg >-share/wesnoth/data/units/Shock_Trooper.cfg >-share/wesnoth/data/units/Silver_Mage.cfg >-share/wesnoth/data/units/Skeleton.cfg >-share/wesnoth/data/units/Skeleton_Archer.cfg >-share/wesnoth/data/units/Sleeping_Gryphon.cfg >-share/wesnoth/data/units/Soulless.cfg >-share/wesnoth/data/units/Spearman.cfg >-share/wesnoth/data/units/Spectre.cfg >-share/wesnoth/data/units/Swordsman.cfg >-share/wesnoth/data/units/Thief.cfg >-share/wesnoth/data/units/Thug.cfg >-share/wesnoth/data/units/Transport_Galleon.cfg >-share/wesnoth/data/units/Trapper.cfg >-share/wesnoth/data/units/Triton.cfg >-share/wesnoth/data/units/Troll.cfg >-share/wesnoth/data/units/Troll_Warrior.cfg >-share/wesnoth/data/units/Troll_Whelp.cfg >-share/wesnoth/data/units/Vampire_Bat.cfg >-share/wesnoth/data/units/Vampire_Lady.cfg >-share/wesnoth/data/units/Walking_Corpse.cfg >-share/wesnoth/data/units/Watch_Tower.cfg >-share/wesnoth/data/units/White_Mage.cfg >-share/wesnoth/data/units/Wolf_Rider.cfg >-share/wesnoth/data/units/Wose.cfg >-share/wesnoth/data/units/Wraith.cfg >-share/wesnoth/data/units/Yeti.cfg >-share/wesnoth/data/units/Young_Ogre.cfg >-share/wesnoth/data/units/Youth.cfg >-share/wesnoth/data/utils.cfg >-share/wesnoth/fonts/Bepa-Roman.ttf >-share/wesnoth/fonts/Vera.ttf >-share/wesnoth/images/Afternoon.png >-share/wesnoth/images/Dawn.png >-share/wesnoth/images/Day.png >-share/wesnoth/images/Dusk.png >-share/wesnoth/images/FirstWatch.png >-share/wesnoth/images/Morning.png >-share/wesnoth/images/Night.png >-share/wesnoth/images/SecondWatch.png >-share/wesnoth/images/Underground.png >-share/wesnoth/images/UndergroundIllum.png >-share/wesnoth/images/ally-energy.png >-share/wesnoth/images/arch-mage-attack.png >-share/wesnoth/images/arch-mage-attack1.png >-share/wesnoth/images/arch-mage-attack2.png >-share/wesnoth/images/arch-mage-defend.png >-share/wesnoth/images/arch-mage.png >-share/wesnoth/images/assassin-attack.png >-share/wesnoth/images/assassin-attack2.png >-share/wesnoth/images/assassin-defend.png >-share/wesnoth/images/assassin-throwknife1.png >-share/wesnoth/images/assassin-throwknife2.png >-share/wesnoth/images/assassin.png >-share/wesnoth/images/attacks/axe.png >-share/wesnoth/images/attacks/baneblade.png >-share/wesnoth/images/attacks/battleaxe.png >-share/wesnoth/images/attacks/beak.png >-share/wesnoth/images/attacks/bow.png >-share/wesnoth/images/attacks/claws.png >-share/wesnoth/images/attacks/club.png >-share/wesnoth/images/attacks/crossbow.png >-share/wesnoth/images/attacks/curse.png >-share/wesnoth/images/attacks/dagger.png >-share/wesnoth/images/attacks/dark-missile.png >-share/wesnoth/images/attacks/darkstaff.png >-share/wesnoth/images/attacks/darts.png >-share/wesnoth/images/attacks/dragonstaff.png >-share/wesnoth/images/attacks/druidstaff.png >-share/wesnoth/images/attacks/entangle.png >-share/wesnoth/images/attacks/faerie_touch.png >-share/wesnoth/images/attacks/fangs.png >-share/wesnoth/images/attacks/fireball.png >-share/wesnoth/images/attacks/fist.png >-share/wesnoth/images/attacks/frenzy.png >-share/wesnoth/images/attacks/gaze.png >-share/wesnoth/images/attacks/halberd.png >-share/wesnoth/images/attacks/hammer.png >-share/wesnoth/images/attacks/hatchet.png >-share/wesnoth/images/attacks/ink.png >-share/wesnoth/images/attacks/knife.png >-share/wesnoth/images/attacks/lance.png >-share/wesnoth/images/attacks/lightbeam.png >-share/wesnoth/images/attacks/lightingbolt.png >-share/wesnoth/images/attacks/longbow.png >-share/wesnoth/images/attacks/mace.png >-share/wesnoth/images/attacks/missile.png >-share/wesnoth/images/attacks/paladinsword.png >-share/wesnoth/images/attacks/pike.png >-share/wesnoth/images/attacks/pistol.png >-share/wesnoth/images/attacks/rapier.png >-share/wesnoth/images/attacks/short-sword.png >-share/wesnoth/images/attacks/sling.png >-share/wesnoth/images/attacks/spear.png >-share/wesnoth/images/attacks/staff.png >-share/wesnoth/images/attacks/sword.png >-share/wesnoth/images/attacks/tentacle.png >-share/wesnoth/images/attacks/thorns.png >-share/wesnoth/images/attacks/thunderstick.png >-share/wesnoth/images/attacks/torch.png >-share/wesnoth/images/attacks/touch.png >-share/wesnoth/images/attacks/trident.png >-share/wesnoth/images/attacks/wail.png >-share/wesnoth/images/attacks/waterspray.png >-share/wesnoth/images/attacks/web.png >-share/wesnoth/images/attacks/woodensword.png >-share/wesnoth/images/buttons/button-active.png >-share/wesnoth/images/buttons/button-pressed.png >-share/wesnoth/images/buttons/button.png >-share/wesnoth/images/buttons/checkbox-active-pressed.png >-share/wesnoth/images/buttons/checkbox-active.png >-share/wesnoth/images/buttons/checkbox-pressed.png >-share/wesnoth/images/buttons/checkbox.png >-share/wesnoth/images/buttons/downarrow-button-active.png >-share/wesnoth/images/buttons/downarrow-button-pressed.png >-share/wesnoth/images/buttons/downarrow-button.png >-share/wesnoth/images/buttons/lite-active.png >-share/wesnoth/images/buttons/lite-pressed.png >-share/wesnoth/images/buttons/lite.png >-share/wesnoth/images/buttons/lite_small-active.png >-share/wesnoth/images/buttons/lite_small-pressed.png >-share/wesnoth/images/buttons/lite_small.png >-share/wesnoth/images/buttons/scrollbottom-active.png >-share/wesnoth/images/buttons/scrollbottom.png >-share/wesnoth/images/buttons/scrollgroove-bottom.png >-share/wesnoth/images/buttons/scrollgroove-mid.png >-share/wesnoth/images/buttons/scrollgroove-top.png >-share/wesnoth/images/buttons/scrollmid-active.png >-share/wesnoth/images/buttons/scrollmid.png >-share/wesnoth/images/buttons/scrolltop-active.png >-share/wesnoth/images/buttons/scrolltop.png >-share/wesnoth/images/buttons/slider-selected.png >-share/wesnoth/images/buttons/slider.png >-share/wesnoth/images/buttons/uparrow-button-active.png >-share/wesnoth/images/buttons/uparrow-button-pressed.png >-share/wesnoth/images/buttons/uparrow-button.png >-share/wesnoth/images/cavespider.png >-share/wesnoth/images/cockatrice-attack1.png >-share/wesnoth/images/cockatrice-attack2.png >-share/wesnoth/images/cockatrice-defend.png >-share/wesnoth/images/cockatrice.png >-share/wesnoth/images/cursors-bw/attack.png >-share/wesnoth/images/cursors-bw/move.png >-share/wesnoth/images/cursors-bw/normal.png >-share/wesnoth/images/cursors-bw/select.png >-share/wesnoth/images/cursors-bw/wait.png >-share/wesnoth/images/cursors/attack.png >-share/wesnoth/images/cursors/move.png >-share/wesnoth/images/cursors/normal.png >-share/wesnoth/images/cursors/select.png >-share/wesnoth/images/cursors/wait.png >-share/wesnoth/images/cuttlefish-defend.png >-share/wesnoth/images/cuttlefish.png >-share/wesnoth/images/direwolf_rider.png >-share/wesnoth/images/drake-beak-attack.png >-share/wesnoth/images/drake-beak-defend.png >-share/wesnoth/images/drake-beak.png >-share/wesnoth/images/drake-burner-attack-close1.png >-share/wesnoth/images/drake-burner-attack-close2.png >-share/wesnoth/images/drake-burner-attack-ranged.png >-share/wesnoth/images/drake-burner-defend.png >-share/wesnoth/images/drake-burner-flying.png >-share/wesnoth/images/drake-burner.png >-share/wesnoth/images/drake-clasher-attack-spear1.png >-share/wesnoth/images/drake-clasher-attack-spear2.png >-share/wesnoth/images/drake-clasher-attack-sword1.png >-share/wesnoth/images/drake-clasher-attack-sword2.png >-share/wesnoth/images/drake-clasher-attack-sword3.png >-share/wesnoth/images/drake-clasher-attack-sword4.png >-share/wesnoth/images/drake-clasher-defend.png >-share/wesnoth/images/drake-clasher.png >-share/wesnoth/images/drake-fighter-attack-close1.png >-share/wesnoth/images/drake-fighter-attack-close2.png >-share/wesnoth/images/drake-fighter-attack-fire1.png >-share/wesnoth/images/drake-fighter-attack-fire2.png >-share/wesnoth/images/drake-fighter-defend.png >-share/wesnoth/images/drake-fighter-flying.png >-share/wesnoth/images/drake-fighter.png >-share/wesnoth/images/drake-fire-attack-close1.png >-share/wesnoth/images/drake-fire-attack-close2.png >-share/wesnoth/images/drake-fire-attack-ranged.png >-share/wesnoth/images/drake-fire-defend.png >-share/wesnoth/images/drake-fire.png >-share/wesnoth/images/drake-guard-attack-close1.png >-share/wesnoth/images/drake-guard-attack-close2.png >-share/wesnoth/images/drake-guard-attack-ranged.png >-share/wesnoth/images/drake-guard-defend.png >-share/wesnoth/images/drake-guard.png >-share/wesnoth/images/drake-mage-attack-close.png >-share/wesnoth/images/drake-mage-attack-ranged-breath.png >-share/wesnoth/images/drake-mage-attack-ranged-staff1.png >-share/wesnoth/images/drake-mage-attack-ranged-staff2.png >-share/wesnoth/images/drake-mage-defend.png >-share/wesnoth/images/drake-mage.png >-share/wesnoth/images/drake-petit-attack.png >-share/wesnoth/images/drake-petit-defend.png >-share/wesnoth/images/drake-petit.png >-share/wesnoth/images/drake-slasher-attack-blade1.png >-share/wesnoth/images/drake-slasher-attack-blade2.png >-share/wesnoth/images/drake-slasher-attack-blade3.png >-share/wesnoth/images/drake-slasher-attack-blade4.png >-share/wesnoth/images/drake-slasher-attack-mace1.png >-share/wesnoth/images/drake-slasher-attack-mace2.png >-share/wesnoth/images/drake-slasher-attack-spear1.png >-share/wesnoth/images/drake-slasher-attack-spear2.png >-share/wesnoth/images/drake-slasher-attack-spear3.png >-share/wesnoth/images/drake-slasher-defend.png >-share/wesnoth/images/drake-slasher.png >-share/wesnoth/images/drake-slave-attack1.png >-share/wesnoth/images/drake-slave-attack2.png >-share/wesnoth/images/drake-slave-defend.png >-share/wesnoth/images/drake-slave.png >-share/wesnoth/images/drake-warrior-attack-close1.png >-share/wesnoth/images/drake-warrior-attack-close2.png >-share/wesnoth/images/drake-warrior-attack-ranged.png >-share/wesnoth/images/drake-warrior-defend.png >-share/wesnoth/images/drake-warrior-flying.png >-share/wesnoth/images/drake-warrior.png >-share/wesnoth/images/drake-worker-attack1.png >-share/wesnoth/images/drake-worker-attack2.png >-share/wesnoth/images/drake-worker-defend.png >-share/wesnoth/images/drake-worker.png >-share/wesnoth/images/dwarf-berserker-attack.png >-share/wesnoth/images/dwarf-berserker-defend.png >-share/wesnoth/images/dwarf-berserker.png >-share/wesnoth/images/dwarf-dragonguard-attack-close.png >-share/wesnoth/images/dwarf-dragonguard-attack-ranged.png >-share/wesnoth/images/dwarf-dragonguard-defend.png >-share/wesnoth/images/dwarf-dragonguard.png >-share/wesnoth/images/dwarf-fighter-attack.png >-share/wesnoth/images/dwarf-fighter-defend.png >-share/wesnoth/images/dwarf-fighter.png >-share/wesnoth/images/dwarf-lord-attack.png >-share/wesnoth/images/dwarf-lord-defend.png >-share/wesnoth/images/dwarf-lord-ranged.png >-share/wesnoth/images/dwarf-lord.png >-share/wesnoth/images/dwarf-runemaster-attack.png >-share/wesnoth/images/dwarf-runemaster-defend.png >-share/wesnoth/images/dwarf-runemaster.png >-share/wesnoth/images/dwarf-thunderer-attack.png >-share/wesnoth/images/dwarf-thunderer-attack1.png >-share/wesnoth/images/dwarf-thunderer-defend.png >-share/wesnoth/images/dwarf-thunderer.png >-share/wesnoth/images/dwarf-thunderguard-attack.png >-share/wesnoth/images/dwarf-thunderguard-attack1.png >-share/wesnoth/images/dwarf-thunderguard-attack2.png >-share/wesnoth/images/dwarf-thunderguard-defend.png >-share/wesnoth/images/dwarf-thunderguard.png >-share/wesnoth/images/dwarf-ulfserker-attack.png >-share/wesnoth/images/dwarf-ulfserker-defend.png >-share/wesnoth/images/dwarf-ulfserker.png >-share/wesnoth/images/dwarf-warrior-attack.png >-share/wesnoth/images/dwarf-warrior-defend.png >-share/wesnoth/images/dwarf-warrior.png >-share/wesnoth/images/editor/brush-1.png >-share/wesnoth/images/editor/brush-2.png >-share/wesnoth/images/editor/brush-3.png >-share/wesnoth/images/elder-mage-attack.png >-share/wesnoth/images/elder-mage-defend.png >-share/wesnoth/images/elder-mage-ranged.png >-share/wesnoth/images/elder-mage.png >-share/wesnoth/images/elvish-archer-attack.png >-share/wesnoth/images/elvish-archer-attack1.png >-share/wesnoth/images/elvish-archer-attack2.png >-share/wesnoth/images/elvish-archer-attack3.png >-share/wesnoth/images/elvish-archer-bow-defend.png >-share/wesnoth/images/elvish-archer-defend.png >-share/wesnoth/images/elvish-archer.png >-share/wesnoth/images/elvish-avenger-attack.png >-share/wesnoth/images/elvish-avenger-attack1.png >-share/wesnoth/images/elvish-avenger-attack2.png >-share/wesnoth/images/elvish-avenger-bow-defend.png >-share/wesnoth/images/elvish-avenger-bow.png >-share/wesnoth/images/elvish-avenger-defend.png >-share/wesnoth/images/elvish-avenger.png >-share/wesnoth/images/elvish-captain-attack.png >-share/wesnoth/images/elvish-captain-bow-attack1.png >-share/wesnoth/images/elvish-captain-bow-attack2.png >-share/wesnoth/images/elvish-captain-bow-attack3.png >-share/wesnoth/images/elvish-captain-bow-defend.png >-share/wesnoth/images/elvish-captain-bow.png >-share/wesnoth/images/elvish-captain-defend.png >-share/wesnoth/images/elvish-captain-leading.png >-share/wesnoth/images/elvish-captain.png >-share/wesnoth/images/elvish-champion-attack.png >-share/wesnoth/images/elvish-champion-bow-defend.png >-share/wesnoth/images/elvish-champion-bow.png >-share/wesnoth/images/elvish-champion-defend.png >-share/wesnoth/images/elvish-champion-range1.png >-share/wesnoth/images/elvish-champion-range2.png >-share/wesnoth/images/elvish-champion.png >-share/wesnoth/images/elvish-druid-attack.png >-share/wesnoth/images/elvish-druid-defend.png >-share/wesnoth/images/elvish-druid-healing.png >-share/wesnoth/images/elvish-druid-healing1.png >-share/wesnoth/images/elvish-druid-healing2.png >-share/wesnoth/images/elvish-druid-healing3.png >-share/wesnoth/images/elvish-druid-healing4.png >-share/wesnoth/images/elvish-druid-healing5.png >-share/wesnoth/images/elvish-druid-ranged.png >-share/wesnoth/images/elvish-druid.png >-share/wesnoth/images/elvish-fighter-attack.png >-share/wesnoth/images/elvish-fighter-bow-attack1.png >-share/wesnoth/images/elvish-fighter-bow-attack2.png >-share/wesnoth/images/elvish-fighter-bow-attack3.png >-share/wesnoth/images/elvish-fighter-bow-defend.png >-share/wesnoth/images/elvish-fighter-bow.png >-share/wesnoth/images/elvish-fighter-defend.png >-share/wesnoth/images/elvish-fighter.png >-share/wesnoth/images/elvish-hero-attack.png >-share/wesnoth/images/elvish-hero-bow-attack.png >-share/wesnoth/images/elvish-hero-bow-defend.png >-share/wesnoth/images/elvish-hero-bow.png >-share/wesnoth/images/elvish-hero-defend.png >-share/wesnoth/images/elvish-hero.png >-share/wesnoth/images/elvish-lord-defend.png >-share/wesnoth/images/elvish-lord-melee.png >-share/wesnoth/images/elvish-lord-ranged1.png >-share/wesnoth/images/elvish-lord-ranged2.png >-share/wesnoth/images/elvish-lord.png >-share/wesnoth/images/elvish-marksman-attack.png >-share/wesnoth/images/elvish-marksman-attack1.png >-share/wesnoth/images/elvish-marksman-attack2.png >-share/wesnoth/images/elvish-marksman-attack3.png >-share/wesnoth/images/elvish-marksman-bow-defend.png >-share/wesnoth/images/elvish-marksman-defend.png >-share/wesnoth/images/elvish-marksman.png >-share/wesnoth/images/elvish-marshal-attack.png >-share/wesnoth/images/elvish-marshal-attack3.png >-share/wesnoth/images/elvish-marshal-bow.png >-share/wesnoth/images/elvish-marshal-defend.png >-share/wesnoth/images/elvish-marshal-leading.png >-share/wesnoth/images/elvish-marshal.png >-share/wesnoth/images/elvish-outrider-attack.png >-share/wesnoth/images/elvish-outrider-attack1.png >-share/wesnoth/images/elvish-outrider-attack2.png >-share/wesnoth/images/elvish-outrider-defend.png >-share/wesnoth/images/elvish-outrider.png >-share/wesnoth/images/elvish-ranger-attack.png >-share/wesnoth/images/elvish-ranger-attack1.png >-share/wesnoth/images/elvish-ranger-attack2.png >-share/wesnoth/images/elvish-ranger-attack3.png >-share/wesnoth/images/elvish-ranger-bow-defend.png >-share/wesnoth/images/elvish-ranger-defend.png >-share/wesnoth/images/elvish-ranger.png >-share/wesnoth/images/elvish-rider-attack.png >-share/wesnoth/images/elvish-rider-attack1.png >-share/wesnoth/images/elvish-rider-attack2.png >-share/wesnoth/images/elvish-rider-defend.png >-share/wesnoth/images/elvish-rider-moving.png >-share/wesnoth/images/elvish-rider.png >-share/wesnoth/images/elvish-scout-attack.png >-share/wesnoth/images/elvish-scout-attack1.png >-share/wesnoth/images/elvish-scout-attack2.png >-share/wesnoth/images/elvish-scout-defend.png >-share/wesnoth/images/elvish-scout-moving.png >-share/wesnoth/images/elvish-scout.png >-share/wesnoth/images/elvish-shaman-attack.png >-share/wesnoth/images/elvish-shaman-attack2.png >-share/wesnoth/images/elvish-shaman-defend.png >-share/wesnoth/images/elvish-shaman-heal1.png >-share/wesnoth/images/elvish-shaman-heal2.png >-share/wesnoth/images/elvish-shaman-heal3.png >-share/wesnoth/images/elvish-shaman-heal4.png >-share/wesnoth/images/elvish-shaman-heal5.png >-share/wesnoth/images/elvish-shaman-healing.png >-share/wesnoth/images/elvish-shaman.png >-share/wesnoth/images/elvish-sharpshooter-attack.png >-share/wesnoth/images/elvish-sharpshooter-attack1.png >-share/wesnoth/images/elvish-sharpshooter-attack2.png >-share/wesnoth/images/elvish-sharpshooter-attack3.png >-share/wesnoth/images/elvish-sharpshooter-defend.png >-share/wesnoth/images/elvish-sharpshooter.png >-share/wesnoth/images/elvish-shyde-defend.png >-share/wesnoth/images/elvish-shyde-ftouch-attack1.png >-share/wesnoth/images/elvish-shyde-ftouch-attack2.png >-share/wesnoth/images/elvish-shyde-ftouch-attack3.png >-share/wesnoth/images/elvish-shyde-healing1.png >-share/wesnoth/images/elvish-shyde-healing10.png >-share/wesnoth/images/elvish-shyde-healing11.png >-share/wesnoth/images/elvish-shyde-healing12.png >-share/wesnoth/images/elvish-shyde-healing2.png >-share/wesnoth/images/elvish-shyde-healing3.png >-share/wesnoth/images/elvish-shyde-healing4.png >-share/wesnoth/images/elvish-shyde-healing5.png >-share/wesnoth/images/elvish-shyde-healing6.png >-share/wesnoth/images/elvish-shyde-healing7.png >-share/wesnoth/images/elvish-shyde-healing8.png >-share/wesnoth/images/elvish-shyde-healing9.png >-share/wesnoth/images/elvish-shyde-ranged.png >-share/wesnoth/images/elvish-shyde.png >-share/wesnoth/images/enemy-energy.png >-share/wesnoth/images/entangle.png >-share/wesnoth/images/fireball-halo.png >-share/wesnoth/images/galleon.png >-share/wesnoth/images/goblin-direwolver-attack.png >-share/wesnoth/images/goblin-direwolver.png >-share/wesnoth/images/goblin-knight-attack.png >-share/wesnoth/images/goblin-knight.png >-share/wesnoth/images/goblin-pillager-attack.png >-share/wesnoth/images/goblin-pillager-attack2.png >-share/wesnoth/images/goblin-pillager-defend.png >-share/wesnoth/images/goblin-pillager.png >-share/wesnoth/images/grand-knight-moving.png >-share/wesnoth/images/grand-knight.png >-share/wesnoth/images/great-mage-attack.png >-share/wesnoth/images/great-mage-attack1.png >-share/wesnoth/images/great-mage-attack2.png >-share/wesnoth/images/great-mage-defend.png >-share/wesnoth/images/great-mage.png >-share/wesnoth/images/gryphon-master-attack1.png >-share/wesnoth/images/gryphon-master-attack2.png >-share/wesnoth/images/gryphon-master-defend.png >-share/wesnoth/images/gryphon-master.png >-share/wesnoth/images/gryphon-rider-attack.png >-share/wesnoth/images/gryphon-rider-defend.png >-share/wesnoth/images/gryphon-rider.png >-share/wesnoth/images/gryphon-sleeping.png >-share/wesnoth/images/gryphon.png >-share/wesnoth/images/halo/blood-halo1.png >-share/wesnoth/images/halo/blood-halo2.png >-share/wesnoth/images/halo/elder-mage-halo.png >-share/wesnoth/images/halo/elder-mage-halo1.png >-share/wesnoth/images/halo/elder-mage-halo2.png >-share/wesnoth/images/halo/elder-mage-halo3.png >-share/wesnoth/images/halo/elder-mage-halo4.png >-share/wesnoth/images/halo/elder-mage-halo5.png >-share/wesnoth/images/halo/elder-mage-halo6.png >-share/wesnoth/images/halo/fireball-big1.png >-share/wesnoth/images/halo/fireball-big2.png >-share/wesnoth/images/halo/fireball-big3.png >-share/wesnoth/images/halo/fireball-big4.png >-share/wesnoth/images/halo/fireball-big5.png >-share/wesnoth/images/halo/fireball-big6.png >-share/wesnoth/images/halo/fireball-big7.png >-share/wesnoth/images/halo/fireball-halo.png >-share/wesnoth/images/halo/fireball-halo1.png >-share/wesnoth/images/halo/fireball-halo2.png >-share/wesnoth/images/halo/fireball-halo3.png >-share/wesnoth/images/halo/fireball-halo4.png >-share/wesnoth/images/halo/fireball-halo7.png >-share/wesnoth/images/halo/fireball1.png >-share/wesnoth/images/halo/fireball2.png >-share/wesnoth/images/halo/fireball3.png >-share/wesnoth/images/halo/fireball4.png >-share/wesnoth/images/halo/fireball5.png >-share/wesnoth/images/halo/fireball6.png >-share/wesnoth/images/halo/fireball7.png >-share/wesnoth/images/halo/mage-halo1.png >-share/wesnoth/images/halo/mage-halo10.png >-share/wesnoth/images/halo/mage-halo11.png >-share/wesnoth/images/halo/mage-halo12.png >-share/wesnoth/images/halo/mage-halo13.png >-share/wesnoth/images/halo/mage-halo2.png >-share/wesnoth/images/halo/mage-halo3.png >-share/wesnoth/images/halo/mage-halo4.png >-share/wesnoth/images/halo/mage-halo5.png >-share/wesnoth/images/halo/mage-halo6.png >-share/wesnoth/images/halo/mage-halo7.png >-share/wesnoth/images/halo/mage-halo8.png >-share/wesnoth/images/halo/mage-halo9.png >-share/wesnoth/images/halo/silver-mage-halo1.png >-share/wesnoth/images/halo/silver-mage-halo10.png >-share/wesnoth/images/halo/silver-mage-halo11.png >-share/wesnoth/images/halo/silver-mage-halo12.png >-share/wesnoth/images/halo/silver-mage-halo2.png >-share/wesnoth/images/halo/silver-mage-halo3.png >-share/wesnoth/images/halo/silver-mage-halo4.png >-share/wesnoth/images/halo/silver-mage-halo5.png >-share/wesnoth/images/halo/silver-mage-halo6.png >-share/wesnoth/images/halo/silver-mage-halo7.png >-share/wesnoth/images/halo/silver-mage-halo8.png >-share/wesnoth/images/halo/silver-mage-halo9.png >-share/wesnoth/images/halo/white-cleric-aura.png >-share/wesnoth/images/help/closed_section.png >-share/wesnoth/images/help/open_section.png >-share/wesnoth/images/help/recruit.png >-share/wesnoth/images/help/tooltip.png >-share/wesnoth/images/help/topic.png >-share/wesnoth/images/horseman-attack.png >-share/wesnoth/images/horseman-defend.png >-share/wesnoth/images/horseman-moving.png >-share/wesnoth/images/horseman.png >-share/wesnoth/images/human-battleprincess-attack.png >-share/wesnoth/images/human-battleprincess-defend.png >-share/wesnoth/images/human-battleprincess-leading.png >-share/wesnoth/images/human-battleprincess.png >-share/wesnoth/images/human-bowman-attack-sword.png >-share/wesnoth/images/human-bowman-attack1.png >-share/wesnoth/images/human-bowman-attack2.png >-share/wesnoth/images/human-bowman-attack3.png >-share/wesnoth/images/human-bowman-defend.png >-share/wesnoth/images/human-bowman.png >-share/wesnoth/images/human-cavalier-attack.png >-share/wesnoth/images/human-cavalier-defend.png >-share/wesnoth/images/human-cavalier-moving.png >-share/wesnoth/images/human-cavalier-range1.png >-share/wesnoth/images/human-cavalier-range2.png >-share/wesnoth/images/human-cavalier.png >-share/wesnoth/images/human-dragoon-attack.png >-share/wesnoth/images/human-dragoon-defend.png >-share/wesnoth/images/human-dragoon-moving.png >-share/wesnoth/images/human-dragoon-range1.png >-share/wesnoth/images/human-dragoon-range2.png >-share/wesnoth/images/human-dragoon.png >-share/wesnoth/images/human-duelist-defend.png >-share/wesnoth/images/human-duelist.png >-share/wesnoth/images/human-fencer-attack.png >-share/wesnoth/images/human-fencer-defend.png >-share/wesnoth/images/human-fencer.png >-share/wesnoth/images/human-general-defend.png >-share/wesnoth/images/human-general-leading.png >-share/wesnoth/images/human-general.png >-share/wesnoth/images/human-halbardier.png >-share/wesnoth/images/human-heavyinfantry-attack.png >-share/wesnoth/images/human-heavyinfantry-defend.png >-share/wesnoth/images/human-heavyinfantry.png >-share/wesnoth/images/human-lieutenant-defend.png >-share/wesnoth/images/human-lieutenant-leading.png >-share/wesnoth/images/human-lieutenant.png >-share/wesnoth/images/human-longbowman-attack-sword.png >-share/wesnoth/images/human-longbowman-attack1.png >-share/wesnoth/images/human-longbowman-attack2.png >-share/wesnoth/images/human-longbowman-defend-close.png >-share/wesnoth/images/human-longbowman-defend.png >-share/wesnoth/images/human-longbowman.png >-share/wesnoth/images/human-masterbowman-defend.png >-share/wesnoth/images/human-masterbowman.png >-share/wesnoth/images/human-pikeman-defend.png >-share/wesnoth/images/human-pikeman.png >-share/wesnoth/images/human-princess-attack.png >-share/wesnoth/images/human-princess-defend.png >-share/wesnoth/images/human-princess-leading.png >-share/wesnoth/images/human-princess.png >-share/wesnoth/images/human-queen.png >-share/wesnoth/images/human-royalguard-defend.png >-share/wesnoth/images/human-royalguard.png >-share/wesnoth/images/human-scout-attack.png >-share/wesnoth/images/human-scout-defend.png >-share/wesnoth/images/human-scout-moving.png >-share/wesnoth/images/human-scout.png >-share/wesnoth/images/human-sergeant-attack.png >-share/wesnoth/images/human-sergeant-defend.png >-share/wesnoth/images/human-sergeant.png >-share/wesnoth/images/human-shocktrooper-attack.png >-share/wesnoth/images/human-shocktrooper-defend.png >-share/wesnoth/images/human-shocktrooper.png >-share/wesnoth/images/human-siegetrooper-defend.png >-share/wesnoth/images/human-siegetrooper-melee.png >-share/wesnoth/images/human-siegetrooper.png >-share/wesnoth/images/human-spearman-attack.png >-share/wesnoth/images/human-spearman-attack2.png >-share/wesnoth/images/human-spearman-defend.png >-share/wesnoth/images/human-spearman.png >-share/wesnoth/images/human-swordman-attack.png >-share/wesnoth/images/human-swordman-defend.png >-share/wesnoth/images/human-swordman.png >-share/wesnoth/images/icons/icon-display.png >-share/wesnoth/images/icons/icon-general.png >-share/wesnoth/images/icons/icon-hostgame.png >-share/wesnoth/images/icons/icon-music.png >-share/wesnoth/images/icons/icon-server.png >-share/wesnoth/images/icons/icon-serverother.png >-share/wesnoth/images/item-ball1.png >-share/wesnoth/images/item-ball2.png >-share/wesnoth/images/item-barrel.png >-share/wesnoth/images/item-book1.png >-share/wesnoth/images/item-book2.png >-share/wesnoth/images/item-book3.png >-share/wesnoth/images/item-book4.png >-share/wesnoth/images/item-box.png >-share/wesnoth/images/item-dragonstatue.png >-share/wesnoth/images/item-flower1.png >-share/wesnoth/images/item-flower2.png >-share/wesnoth/images/item-flower3.png >-share/wesnoth/images/item-flower4.png >-share/wesnoth/images/item-leanto.png >-share/wesnoth/images/item-monolith.png >-share/wesnoth/images/item-monolith1.png >-share/wesnoth/images/item-monolith2.png >-share/wesnoth/images/item-monolith3.png >-share/wesnoth/images/item-monolith4.png >-share/wesnoth/images/item-ornate1.png >-share/wesnoth/images/item-ornate2.png >-share/wesnoth/images/item-pine1.png >-share/wesnoth/images/item-pine2.png >-share/wesnoth/images/item-potion1.png >-share/wesnoth/images/item-potion2.png >-share/wesnoth/images/item-potion3.png >-share/wesnoth/images/item-potion4.png >-share/wesnoth/images/item-ring1.png >-share/wesnoth/images/item-ring2.png >-share/wesnoth/images/item-rock1.png >-share/wesnoth/images/item-rock2.png >-share/wesnoth/images/item-rock3.png >-share/wesnoth/images/item-rock4.png >-share/wesnoth/images/item-slab.png >-share/wesnoth/images/item-well.png >-share/wesnoth/images/knight-attack.png >-share/wesnoth/images/knight-defend.png >-share/wesnoth/images/knight-moving.png >-share/wesnoth/images/knight.png >-share/wesnoth/images/konrad-commander-attack.png >-share/wesnoth/images/konrad-commander-defend.png >-share/wesnoth/images/konrad-commander-leading.png >-share/wesnoth/images/konrad-commander-ranged-defend.png >-share/wesnoth/images/konrad-commander-ranged.png >-share/wesnoth/images/konrad-commander.png >-share/wesnoth/images/konrad-fighter-attack.png >-share/wesnoth/images/konrad-fighter-defend.png >-share/wesnoth/images/konrad-fighter.png >-share/wesnoth/images/konrad-lord-attack.png >-share/wesnoth/images/konrad-lord-defend.png >-share/wesnoth/images/konrad-lord-leading.png >-share/wesnoth/images/konrad-lord.png >-share/wesnoth/images/konrad-young-attack.png >-share/wesnoth/images/konrad-young-defend.png >-share/wesnoth/images/konrad-young.png >-share/wesnoth/images/lancer-attack.png >-share/wesnoth/images/lancer-defend.png >-share/wesnoth/images/lancer.png >-share/wesnoth/images/lightning-bolt.png >-share/wesnoth/images/lightning-n.png >-share/wesnoth/images/lightning-ne.png >-share/wesnoth/images/mage-attack.png >-share/wesnoth/images/mage-attack1.png >-share/wesnoth/images/mage-attack2.png >-share/wesnoth/images/mage-attack3.png >-share/wesnoth/images/mage-defend.png >-share/wesnoth/images/mage.png >-share/wesnoth/images/merman-attack.png >-share/wesnoth/images/merman-defend.png >-share/wesnoth/images/merman-king-attack.png >-share/wesnoth/images/merman-king-defend.png >-share/wesnoth/images/merman-king.png >-share/wesnoth/images/merman.png >-share/wesnoth/images/misc/ball.png >-share/wesnoth/images/misc/blank.png >-share/wesnoth/images/misc/botleft-corner.png >-share/wesnoth/images/misc/botright-corner.png >-share/wesnoth/images/misc/cage.png >-share/wesnoth/images/misc/character-box.png >-share/wesnoth/images/misc/chest.png >-share/wesnoth/images/misc/compass-north.png >-share/wesnoth/images/misc/compass-south.png >-share/wesnoth/images/misc/cross.png >-share/wesnoth/images/misc/delfador.png >-share/wesnoth/images/misc/disk.png >-share/wesnoth/images/misc/dot.png >-share/wesnoth/images/misc/ellipse-1-bottom.png >-share/wesnoth/images/misc/ellipse-1-top.png >-share/wesnoth/images/misc/ellipse-1.png >-share/wesnoth/images/misc/ellipse-10-bottom.png >-share/wesnoth/images/misc/ellipse-10-top.png >-share/wesnoth/images/misc/ellipse-10.png >-share/wesnoth/images/misc/ellipse-2-bottom.png >-share/wesnoth/images/misc/ellipse-2-top.png >-share/wesnoth/images/misc/ellipse-2.png >-share/wesnoth/images/misc/ellipse-3-bottom.png >-share/wesnoth/images/misc/ellipse-3-top.png >-share/wesnoth/images/misc/ellipse-3.png >-share/wesnoth/images/misc/ellipse-4-bottom.png >-share/wesnoth/images/misc/ellipse-4-top.png >-share/wesnoth/images/misc/ellipse-4.png >-share/wesnoth/images/misc/ellipse-5-bottom.png >-share/wesnoth/images/misc/ellipse-5-top.png >-share/wesnoth/images/misc/ellipse-5.png >-share/wesnoth/images/misc/ellipse-6-bottom.png >-share/wesnoth/images/misc/ellipse-6-top.png >-share/wesnoth/images/misc/ellipse-6.png >-share/wesnoth/images/misc/ellipse-7-bottom.png >-share/wesnoth/images/misc/ellipse-7-top.png >-share/wesnoth/images/misc/ellipse-7.png >-share/wesnoth/images/misc/ellipse-8-bottom.png >-share/wesnoth/images/misc/ellipse-8-top.png >-share/wesnoth/images/misc/ellipse-8.png >-share/wesnoth/images/misc/ellipse-9-bottom.png >-share/wesnoth/images/misc/ellipse-9-top.png >-share/wesnoth/images/misc/ellipse-9.png >-share/wesnoth/images/misc/eye.png >-share/wesnoth/images/misc/folder-icon.png >-share/wesnoth/images/misc/font8x8.png >-share/wesnoth/images/misc/foot-left-n.png >-share/wesnoth/images/misc/foot-left-nw.png >-share/wesnoth/images/misc/foot-right-n.png >-share/wesnoth/images/misc/foot-right-nw.png >-share/wesnoth/images/misc/gold.png >-share/wesnoth/images/misc/income.png >-share/wesnoth/images/misc/invisible.png >-share/wesnoth/images/misc/item-darktome.png >-share/wesnoth/images/misc/item-flamesword.png >-share/wesnoth/images/misc/item-healingpotion.png >-share/wesnoth/images/misc/item-holywater.png >-share/wesnoth/images/misc/item-sceptreoffire.png >-share/wesnoth/images/misc/item-staff.png >-share/wesnoth/images/misc/item-stormtrident.png >-share/wesnoth/images/misc/kalenz.png >-share/wesnoth/images/misc/konrad.png >-share/wesnoth/images/misc/lisar.png >-share/wesnoth/images/misc/lisar_b.png >-share/wesnoth/images/misc/lobby.png >-share/wesnoth/images/misc/logo.png >-share/wesnoth/images/misc/mainmenu-background.png >-share/wesnoth/images/misc/mainmenu-border-botleft.png >-share/wesnoth/images/misc/mainmenu-border-botright.png >-share/wesnoth/images/misc/mainmenu-border-bottom.png >-share/wesnoth/images/misc/mainmenu-border-left.png >-share/wesnoth/images/misc/mainmenu-border-right.png >-share/wesnoth/images/misc/mainmenu-border-top.png >-share/wesnoth/images/misc/mainmenu-border-topleft.png >-share/wesnoth/images/misc/mainmenu-border-topright.png >-share/wesnoth/images/misc/map.png >-share/wesnoth/images/misc/menu-background.png >-share/wesnoth/images/misc/menu-border-botleft.png >-share/wesnoth/images/misc/menu-border-botright.png >-share/wesnoth/images/misc/menu-border-bottom.png >-share/wesnoth/images/misc/menu-border-left.png >-share/wesnoth/images/misc/menu-border-right.png >-share/wesnoth/images/misc/menu-border-top.png >-share/wesnoth/images/misc/menu-border-topleft.png >-share/wesnoth/images/misc/menu-border-topright.png >-share/wesnoth/images/misc/menu2-background.png >-share/wesnoth/images/misc/menu2-border-botleft.png >-share/wesnoth/images/misc/menu2-border-botright.png >-share/wesnoth/images/misc/menu2-border-bottom.png >-share/wesnoth/images/misc/menu2-border-left.png >-share/wesnoth/images/misc/menu2-border-right.png >-share/wesnoth/images/misc/menu2-border-top.png >-share/wesnoth/images/misc/menu2-border-topleft.png >-share/wesnoth/images/misc/menu2-border-topright.png >-share/wesnoth/images/misc/poisoned.png >-share/wesnoth/images/misc/rightside-bg.png >-share/wesnoth/images/misc/rightside-bottom.png >-share/wesnoth/images/misc/rightside-editor.png >-share/wesnoth/images/misc/rightside.png >-share/wesnoth/images/misc/slowed.png >-share/wesnoth/images/misc/status-bg.png >-%%LITE:%%share/wesnoth/images/misc/story0a.png >-%%LITE:%%share/wesnoth/images/misc/story0b.png >-%%LITE:%%share/wesnoth/images/misc/story1.png >-%%LITE:%%share/wesnoth/images/misc/story2.png >-%%LITE:%%share/wesnoth/images/misc/story3.png >-%%LITE:%%share/wesnoth/images/misc/story4.png >-%%LITE:%%share/wesnoth/images/misc/story5.png >-%%LITE:%%share/wesnoth/images/misc/story6.png >-%%LITE:%%share/wesnoth/images/misc/story7.png >-%%LITE:%%share/wesnoth/images/misc/story8.png >-%%LITE:%%share/wesnoth/images/misc/story9.png >-share/wesnoth/images/misc/title.png >-share/wesnoth/images/misc/top-bg.png >-share/wesnoth/images/misc/topleft-corner.png >-share/wesnoth/images/misc/topright-corner.png >-share/wesnoth/images/misc/trapdoor.png >-%%LITE:%%share/wesnoth/images/misc/tutorial1.png >-%%LITE:%%share/wesnoth/images/misc/tutorial2.png >-%%LITE:%%share/wesnoth/images/misc/tutorial3.png >-%%LITE:%%share/wesnoth/images/misc/tutorial3b.png >-%%LITE:%%share/wesnoth/images/misc/tutorial4.png >-%%LITE:%%share/wesnoth/images/misc/tutorial5.png >-%%LITE:%%share/wesnoth/images/misc/tutorial6.png >-%%LITE:%%share/wesnoth/images/misc/tutorial7.png >-share/wesnoth/images/misc/units.png >-share/wesnoth/images/misc/upkeep.png >-share/wesnoth/images/misc/villages.png >-share/wesnoth/images/moved-energy.png >-share/wesnoth/images/naga-attack.png >-share/wesnoth/images/naga-defend.png >-share/wesnoth/images/naga.png >-share/wesnoth/images/neutral-bandit-attack.png >-share/wesnoth/images/neutral-bandit-defend.png >-share/wesnoth/images/neutral-bandit.png >-share/wesnoth/images/neutral-footpad-attack.png >-share/wesnoth/images/neutral-footpad-attack1.png >-share/wesnoth/images/neutral-footpad-attack2.png >-share/wesnoth/images/neutral-footpad-defend.png >-share/wesnoth/images/neutral-footpad.png >-share/wesnoth/images/neutral-outlaw-attack.png >-share/wesnoth/images/neutral-outlaw-attack1.png >-share/wesnoth/images/neutral-outlaw-attack2.png >-share/wesnoth/images/neutral-outlaw-defend.png >-share/wesnoth/images/neutral-outlaw.png >-share/wesnoth/images/neutral-poacher-attack.png >-share/wesnoth/images/neutral-poacher-attack1.png >-share/wesnoth/images/neutral-poacher-attack2.png >-share/wesnoth/images/neutral-poacher-defend.png >-share/wesnoth/images/neutral-poacher.png >-share/wesnoth/images/neutral-thug-attack.png >-share/wesnoth/images/neutral-thug-defend.png >-share/wesnoth/images/neutral-thug.png >-share/wesnoth/images/neutral-trapper-attack.png >-share/wesnoth/images/neutral-trapper-attack1.png >-share/wesnoth/images/neutral-trapper-attack2.png >-share/wesnoth/images/neutral-trapper-defend.png >-share/wesnoth/images/neutral-trapper.png >-share/wesnoth/images/ogre.png >-share/wesnoth/images/orc-archer-attack.png >-share/wesnoth/images/orc-archer-attack2.png >-share/wesnoth/images/orc-archer-defend.png >-share/wesnoth/images/orc-archer.png >-share/wesnoth/images/orc-assassin-attack.png >-share/wesnoth/images/orc-assassin-defend.png >-share/wesnoth/images/orc-assassin-knife.png >-share/wesnoth/images/orc-assassin.png >-share/wesnoth/images/orc-slayer-attack1.png >-share/wesnoth/images/orc-slayer-attack2.png >-share/wesnoth/images/orc-slayer-defend.png >-share/wesnoth/images/orc-slayer-ranged.png >-share/wesnoth/images/orc-slayer.png >-share/wesnoth/images/orc-xbowman-attack.png >-share/wesnoth/images/orc-xbowman-defend.png >-share/wesnoth/images/orc-xbowman-ranged.png >-share/wesnoth/images/orc-xbowman.png >-share/wesnoth/images/orcish-grunt-attack.png >-share/wesnoth/images/orcish-grunt-defend.png >-share/wesnoth/images/orcish-grunt.png >-share/wesnoth/images/orcish-ruler.png >-share/wesnoth/images/orcish-shaman.png >-share/wesnoth/images/orcish-shaman1.png >-share/wesnoth/images/orcish-shaman2.png >-share/wesnoth/images/orcish-warlord.png >-share/wesnoth/images/orcish-warrior-defend.png >-share/wesnoth/images/orcish-warrior-melee1.png >-share/wesnoth/images/orcish-warrior.png >-share/wesnoth/images/paladin-healing.png >-share/wesnoth/images/paladin-moving.png >-share/wesnoth/images/paladin.png >-share/wesnoth/images/partmoved-energy.png >-share/wesnoth/images/pirate-galleon.png >-share/wesnoth/images/projectiles/bone-n.png >-share/wesnoth/images/projectiles/bone-ne.png >-share/wesnoth/images/projectiles/bullet.png >-share/wesnoth/images/projectiles/dagger-n.png >-share/wesnoth/images/projectiles/dagger-ne.png >-share/wesnoth/images/projectiles/darkmissile-n.png >-share/wesnoth/images/projectiles/darkmissile-ne.png >-share/wesnoth/images/projectiles/fireball.png >-share/wesnoth/images/projectiles/gaze.png >-share/wesnoth/images/projectiles/hatchet.png >-share/wesnoth/images/projectiles/ink.png >-share/wesnoth/images/projectiles/magicmissile-n.png >-share/wesnoth/images/projectiles/magicmissile-ne.png >-share/wesnoth/images/projectiles/missile-n.png >-share/wesnoth/images/projectiles/missile-ne.png >-share/wesnoth/images/projectiles/missile-nw.png >-share/wesnoth/images/projectiles/missile-s.png >-share/wesnoth/images/projectiles/missile-se.png >-share/wesnoth/images/projectiles/missile-sw.png >-share/wesnoth/images/projectiles/missile.png >-share/wesnoth/images/projectiles/spear-n.png >-share/wesnoth/images/projectiles/spear-ne.png >-share/wesnoth/images/projectiles/stone.png >-share/wesnoth/images/projectiles/thorns.png >-share/wesnoth/images/projectiles/water_spay.png >-share/wesnoth/images/projectiles/web.png >-share/wesnoth/images/projectiles/whitemissile-n.png >-share/wesnoth/images/projectiles/whitemissile-ne.png >-share/wesnoth/images/random-enemy.png >-share/wesnoth/images/red-mage-attack.png >-share/wesnoth/images/red-mage-attack1.png >-share/wesnoth/images/red-mage-defend.png >-share/wesnoth/images/red-mage.png >-share/wesnoth/images/rogue-attack.png >-share/wesnoth/images/rogue-defend.png >-share/wesnoth/images/rogue-ranged.png >-share/wesnoth/images/rogue.png >-share/wesnoth/images/saurian-attack1.png >-share/wesnoth/images/saurian-attack2.png >-share/wesnoth/images/saurian-attack3.png >-share/wesnoth/images/saurian-defend.png >-share/wesnoth/images/saurian-warrior-attack1.png >-share/wesnoth/images/saurian-warrior-attack2.png >-share/wesnoth/images/saurian-warrior-defend.png >-share/wesnoth/images/saurian-warrior-ranged.png >-share/wesnoth/images/saurian-warrior.png >-share/wesnoth/images/saurian.png >-share/wesnoth/images/scorpion-pincers-attack.png >-share/wesnoth/images/scorpion.png >-share/wesnoth/images/sea-hag-defend.png >-share/wesnoth/images/sea-hag.png >-share/wesnoth/images/sea-orc-attack.png >-share/wesnoth/images/sea-orc-defend.png >-share/wesnoth/images/sea-orc.png >-share/wesnoth/images/seaserpent.png >-share/wesnoth/images/silver-mage-attack1.png >-share/wesnoth/images/silver-mage-attack2.png >-share/wesnoth/images/silver-mage-attack3.png >-share/wesnoth/images/silver-mage-defend.png >-share/wesnoth/images/silver-mage-melee.png >-share/wesnoth/images/silver-mage.png >-share/wesnoth/images/sotbe/bigmap.png >-share/wesnoth/images/sotbe/fire.png >-share/wesnoth/images/sotbe/flag.png >-share/wesnoth/images/sotbe/map1.png >-share/wesnoth/images/sotbe/map2.png >-share/wesnoth/images/sotbe/map3.png >-share/wesnoth/images/terrain/alpha.png >-share/wesnoth/images/terrain/alphamask.png >-share/wesnoth/images/terrain/bridge-n-s.png >-share/wesnoth/images/terrain/bridge-ne-sw.png >-share/wesnoth/images/terrain/bridge-se-nw.png >-share/wesnoth/images/terrain/bridge.png >-share/wesnoth/images/terrain/castle-bg-concave-e.png >-share/wesnoth/images/terrain/castle-bg-concave-ne.png >-share/wesnoth/images/terrain/castle-bg-concave-nw.png >-share/wesnoth/images/terrain/castle-bg-concave-se.png >-share/wesnoth/images/terrain/castle-bg-concave-sw.png >-share/wesnoth/images/terrain/castle-bg-concave-w.png >-share/wesnoth/images/terrain/castle-bg-convex-e.png >-share/wesnoth/images/terrain/castle-bg-convex-ne.png >-share/wesnoth/images/terrain/castle-bg-convex-nw.png >-share/wesnoth/images/terrain/castle-bg-convex-se.png >-share/wesnoth/images/terrain/castle-bg-convex-sw.png >-share/wesnoth/images/terrain/castle-bg-convex-w.png >-share/wesnoth/images/terrain/castle-fg-concave-e.png >-share/wesnoth/images/terrain/castle-fg-concave-ne.png >-share/wesnoth/images/terrain/castle-fg-concave-nw.png >-share/wesnoth/images/terrain/castle-fg-concave-se.png >-share/wesnoth/images/terrain/castle-fg-concave-sw.png >-share/wesnoth/images/terrain/castle-fg-concave-w.png >-share/wesnoth/images/terrain/castle-fg-convex-e.png >-share/wesnoth/images/terrain/castle-fg-convex-ne.png >-share/wesnoth/images/terrain/castle-fg-convex-nw.png >-share/wesnoth/images/terrain/castle-fg-convex-se.png >-share/wesnoth/images/terrain/castle-fg-convex-sw.png >-share/wesnoth/images/terrain/castle-fg-convex-w.png >-share/wesnoth/images/terrain/castle.png >-share/wesnoth/images/terrain/cave-n-ne-se-s.png >-share/wesnoth/images/terrain/cave-n-ne-se.png >-share/wesnoth/images/terrain/cave-n-ne.png >-share/wesnoth/images/terrain/cave-n.png >-share/wesnoth/images/terrain/cave-ne-se-s.png >-share/wesnoth/images/terrain/cave-ne-se.png >-share/wesnoth/images/terrain/cave-ne.png >-share/wesnoth/images/terrain/cave-nw-n.png >-share/wesnoth/images/terrain/cave-nw.png >-share/wesnoth/images/terrain/cave-s-sw-nw-n.png >-share/wesnoth/images/terrain/cave-s-sw-nw.png >-share/wesnoth/images/terrain/cave-s-sw.png >-share/wesnoth/images/terrain/cave-s.png >-share/wesnoth/images/terrain/cave-se-s.png >-share/wesnoth/images/terrain/cave-se-sw-nw.png >-share/wesnoth/images/terrain/cave-se.png >-share/wesnoth/images/terrain/cave-sw-nw-n.png >-share/wesnoth/images/terrain/cave-sw-nw.png >-share/wesnoth/images/terrain/cave-sw.png >-share/wesnoth/images/terrain/cave.png >-share/wesnoth/images/terrain/cavewall.png >-share/wesnoth/images/terrain/coast-n.png >-share/wesnoth/images/terrain/coast-ne.png >-share/wesnoth/images/terrain/coast-nw.png >-share/wesnoth/images/terrain/coast-s.png >-share/wesnoth/images/terrain/coast-se.png >-share/wesnoth/images/terrain/coast-sw.png >-share/wesnoth/images/terrain/coast.png >-share/wesnoth/images/terrain/dark_grass.png >-share/wesnoth/images/terrain/dawn.png >-share/wesnoth/images/terrain/desert-n.png >-share/wesnoth/images/terrain/desert-ne.png >-share/wesnoth/images/terrain/desert-nw.png >-share/wesnoth/images/terrain/desert-plant.png >-share/wesnoth/images/terrain/desert-s.png >-share/wesnoth/images/terrain/desert-se.png >-share/wesnoth/images/terrain/desert-sw.png >-share/wesnoth/images/terrain/desert.png >-share/wesnoth/images/terrain/dirt-n.png >-share/wesnoth/images/terrain/dirt-ne.png >-share/wesnoth/images/terrain/dirt-nw.png >-share/wesnoth/images/terrain/dirt-s.png >-share/wesnoth/images/terrain/dirt-se.png >-share/wesnoth/images/terrain/dirt-sw.png >-share/wesnoth/images/terrain/dirt.png >-share/wesnoth/images/terrain/dwarven-doors.png >-share/wesnoth/images/terrain/encampment-bg-concave-e.png >-share/wesnoth/images/terrain/encampment-bg-concave-ne.png >-share/wesnoth/images/terrain/encampment-bg-concave-nw.png >-share/wesnoth/images/terrain/encampment-bg-concave-se.png >-share/wesnoth/images/terrain/encampment-bg-concave-sw.png >-share/wesnoth/images/terrain/encampment-bg-concave-w.png >-share/wesnoth/images/terrain/encampment-bg-convex-e.png >-share/wesnoth/images/terrain/encampment-bg-convex-ne.png >-share/wesnoth/images/terrain/encampment-bg-convex-nw.png >-share/wesnoth/images/terrain/encampment-bg-convex-se.png >-share/wesnoth/images/terrain/encampment-bg-convex-sw.png >-share/wesnoth/images/terrain/encampment-bg-convex-w.png >-share/wesnoth/images/terrain/encampment-fg-concave-e.png >-share/wesnoth/images/terrain/encampment-fg-concave-ne.png >-share/wesnoth/images/terrain/encampment-fg-concave-nw.png >-share/wesnoth/images/terrain/encampment-fg-concave-se.png >-share/wesnoth/images/terrain/encampment-fg-concave-sw.png >-share/wesnoth/images/terrain/encampment-fg-concave-w.png >-share/wesnoth/images/terrain/encampment-fg-convex-e.png >-share/wesnoth/images/terrain/encampment-fg-convex-ne.png >-share/wesnoth/images/terrain/encampment-fg-convex-nw.png >-share/wesnoth/images/terrain/encampment-fg-convex-se.png >-share/wesnoth/images/terrain/encampment-fg-convex-sw.png >-share/wesnoth/images/terrain/encampment-fg-convex-w.png >-share/wesnoth/images/terrain/flag-team1.png >-share/wesnoth/images/terrain/flag-team10.png >-share/wesnoth/images/terrain/flag-team2.png >-share/wesnoth/images/terrain/flag-team3.png >-share/wesnoth/images/terrain/flag-team4.png >-share/wesnoth/images/terrain/flag-team5.png >-share/wesnoth/images/terrain/flag-team6.png >-share/wesnoth/images/terrain/flag-team7.png >-share/wesnoth/images/terrain/flag-team8.png >-share/wesnoth/images/terrain/flag-team9.png >-share/wesnoth/images/terrain/fog-n-ne-se-s.png >-share/wesnoth/images/terrain/fog-n-ne-se.png >-share/wesnoth/images/terrain/fog-n-ne.png >-share/wesnoth/images/terrain/fog-n.png >-share/wesnoth/images/terrain/fog-ne-se-s.png >-share/wesnoth/images/terrain/fog-ne-se.png >-share/wesnoth/images/terrain/fog-ne.png >-share/wesnoth/images/terrain/fog-nw-n-ne.png >-share/wesnoth/images/terrain/fog-nw-n.png >-share/wesnoth/images/terrain/fog-nw.png >-share/wesnoth/images/terrain/fog-s-sw-nw-n.png >-share/wesnoth/images/terrain/fog-s-sw-nw.png >-share/wesnoth/images/terrain/fog-s-sw.png >-share/wesnoth/images/terrain/fog-s.png >-share/wesnoth/images/terrain/fog-se-s-sw.png >-share/wesnoth/images/terrain/fog-se-s.png >-share/wesnoth/images/terrain/fog-se.png >-share/wesnoth/images/terrain/fog-sw-nw-n.png >-share/wesnoth/images/terrain/fog-sw-nw.png >-share/wesnoth/images/terrain/fog-sw.png >-share/wesnoth/images/terrain/fog.png >-share/wesnoth/images/terrain/forest-ctrans-n-ne.png >-share/wesnoth/images/terrain/forest-ctrans-n.png >-share/wesnoth/images/terrain/forest-ctrans-ne.png >-share/wesnoth/images/terrain/forest-ctrans-nw-n-ne.png >-share/wesnoth/images/terrain/forest-ctrans-nw-n.png >-share/wesnoth/images/terrain/forest-ctrans-nw.png >-share/wesnoth/images/terrain/forest-etrans-ne.png >-share/wesnoth/images/terrain/forest-etrans-nw-n-ne.png >-share/wesnoth/images/terrain/forest-etrans-nw.png >-share/wesnoth/images/terrain/forest-n-ne-se.png >-share/wesnoth/images/terrain/forest-n-ne.png >-share/wesnoth/images/terrain/forest-n.png >-share/wesnoth/images/terrain/forest-ne-se-s.png >-share/wesnoth/images/terrain/forest-ne-se.png >-share/wesnoth/images/terrain/forest-ne.png >-share/wesnoth/images/terrain/forest-nw-n-ne-se.png >-share/wesnoth/images/terrain/forest-nw-n-ne.png >-share/wesnoth/images/terrain/forest-nw-n.png >-share/wesnoth/images/terrain/forest-nw.png >-share/wesnoth/images/terrain/forest-s-sw-nw-n.png >-share/wesnoth/images/terrain/forest-s-sw-nw.png >-share/wesnoth/images/terrain/forest-s-sw.png >-share/wesnoth/images/terrain/forest-s.png >-share/wesnoth/images/terrain/forest-se-s-sw.png >-share/wesnoth/images/terrain/forest-se-s.png >-share/wesnoth/images/terrain/forest-se.png >-share/wesnoth/images/terrain/forest-stones1.png >-share/wesnoth/images/terrain/forest-stones2.png >-share/wesnoth/images/terrain/forest-stones3.png >-share/wesnoth/images/terrain/forest-stones4.png >-share/wesnoth/images/terrain/forest-sw-nw-n.png >-share/wesnoth/images/terrain/forest-sw-nw.png >-share/wesnoth/images/terrain/forest-sw.png >-share/wesnoth/images/terrain/forest-to-water-n-ne.png >-share/wesnoth/images/terrain/forest-to-water-n.png >-share/wesnoth/images/terrain/forest-to-water-ne-se.png >-share/wesnoth/images/terrain/forest-to-water-ne.png >-share/wesnoth/images/terrain/forest-to-water-nw-n-ne.png >-share/wesnoth/images/terrain/forest-to-water-nw-n.png >-share/wesnoth/images/terrain/forest-to-water-nw.png >-share/wesnoth/images/terrain/forest-to-water-s.png >-share/wesnoth/images/terrain/forest-to-water-se-s.png >-share/wesnoth/images/terrain/forest-to-water-se.png >-share/wesnoth/images/terrain/forest-to-water-sw-nw.png >-share/wesnoth/images/terrain/forest-to-water-sw.png >-share/wesnoth/images/terrain/forest.png >-share/wesnoth/images/terrain/forest2.png >-share/wesnoth/images/terrain/forest3.png >-share/wesnoth/images/terrain/forest4.png >-share/wesnoth/images/terrain/forest5.png >-share/wesnoth/images/terrain/forest6.png >-share/wesnoth/images/terrain/forest7.png >-share/wesnoth/images/terrain/forest8.png >-share/wesnoth/images/terrain/grassland-flowers.png >-share/wesnoth/images/terrain/grassland-n-ne-se-s.png >-share/wesnoth/images/terrain/grassland-n-ne-se.png >-share/wesnoth/images/terrain/grassland-n-ne.png >-share/wesnoth/images/terrain/grassland-n.png >-share/wesnoth/images/terrain/grassland-ne-se-s.png >-share/wesnoth/images/terrain/grassland-ne-se.png >-share/wesnoth/images/terrain/grassland-ne.png >-share/wesnoth/images/terrain/grassland-nw-n.png >-share/wesnoth/images/terrain/grassland-nw.png >-share/wesnoth/images/terrain/grassland-rocks.png >-share/wesnoth/images/terrain/grassland-s-sw-nw-n.png >-share/wesnoth/images/terrain/grassland-s-sw-nw.png >-share/wesnoth/images/terrain/grassland-s-sw.png >-share/wesnoth/images/terrain/grassland-s.png >-share/wesnoth/images/terrain/grassland-se-s.png >-share/wesnoth/images/terrain/grassland-se-sw-nw.png >-share/wesnoth/images/terrain/grassland-se.png >-share/wesnoth/images/terrain/grassland-sw-nw-n.png >-share/wesnoth/images/terrain/grassland-sw-nw.png >-share/wesnoth/images/terrain/grassland-sw.png >-share/wesnoth/images/terrain/grassland.png >-share/wesnoth/images/terrain/grid.png >-share/wesnoth/images/terrain/hills-n-ne.png >-share/wesnoth/images/terrain/hills-n.png >-share/wesnoth/images/terrain/hills-ne.png >-share/wesnoth/images/terrain/hills-nw.png >-share/wesnoth/images/terrain/hills-s-se.png >-share/wesnoth/images/terrain/hills-s.png >-share/wesnoth/images/terrain/hills-se.png >-share/wesnoth/images/terrain/hills-sw.png >-share/wesnoth/images/terrain/hills-variation1.png >-share/wesnoth/images/terrain/hills-variation2.png >-share/wesnoth/images/terrain/hills-variation3.png >-share/wesnoth/images/terrain/hills.png >-share/wesnoth/images/terrain/ice-bridge-ne-sw.png >-share/wesnoth/images/terrain/ice-n.png >-share/wesnoth/images/terrain/ice-ne.png >-share/wesnoth/images/terrain/ice-nw.png >-share/wesnoth/images/terrain/ice-pier.png >-share/wesnoth/images/terrain/ice-s.png >-share/wesnoth/images/terrain/ice-se.png >-share/wesnoth/images/terrain/ice-sw.png >-share/wesnoth/images/terrain/ice.png >-share/wesnoth/images/terrain/icebridge-se-nw.png >-share/wesnoth/images/terrain/keep-bg-inside-e.png >-share/wesnoth/images/terrain/keep-bg-inside-ne.png >-share/wesnoth/images/terrain/keep-bg-inside-nw.png >-share/wesnoth/images/terrain/keep-bg-inside-se.png >-share/wesnoth/images/terrain/keep-bg-inside-sw.png >-share/wesnoth/images/terrain/keep-bg-inside-w.png >-share/wesnoth/images/terrain/keep-bg-wall-0-e.png >-share/wesnoth/images/terrain/keep-bg-wall-0-ne.png >-share/wesnoth/images/terrain/keep-bg-wall-0-nw.png >-share/wesnoth/images/terrain/keep-bg-wall-0-se.png >-share/wesnoth/images/terrain/keep-bg-wall-0-sw.png >-share/wesnoth/images/terrain/keep-bg-wall-0-w.png >-share/wesnoth/images/terrain/keep-bg-wall-1-e.png >-share/wesnoth/images/terrain/keep-bg-wall-1-ne.png >-share/wesnoth/images/terrain/keep-bg-wall-1-nw.png >-share/wesnoth/images/terrain/keep-bg-wall-1-se.png >-share/wesnoth/images/terrain/keep-bg-wall-1-sw.png >-share/wesnoth/images/terrain/keep-bg-wall-1-w.png >-share/wesnoth/images/terrain/keep-bg-wall-e.png >-share/wesnoth/images/terrain/keep-bg-wall-ne.png >-share/wesnoth/images/terrain/keep-bg-wall-nw.png >-share/wesnoth/images/terrain/keep-bg-wall-se.png >-share/wesnoth/images/terrain/keep-bg-wall-sw.png >-share/wesnoth/images/terrain/keep-bg-wall-w.png >-share/wesnoth/images/terrain/keep-fg-inside-e.png >-share/wesnoth/images/terrain/keep-fg-inside-ne.png >-share/wesnoth/images/terrain/keep-fg-inside-nw.png >-share/wesnoth/images/terrain/keep-fg-inside-se.png >-share/wesnoth/images/terrain/keep-fg-inside-sw.png >-share/wesnoth/images/terrain/keep-fg-inside-w.png >-share/wesnoth/images/terrain/keep-fg-wall-0-e.png >-share/wesnoth/images/terrain/keep-fg-wall-0-ne.png >-share/wesnoth/images/terrain/keep-fg-wall-0-nw.png >-share/wesnoth/images/terrain/keep-fg-wall-0-se.png >-share/wesnoth/images/terrain/keep-fg-wall-0-sw.png >-share/wesnoth/images/terrain/keep-fg-wall-0-w.png >-share/wesnoth/images/terrain/keep-fg-wall-1-e.png >-share/wesnoth/images/terrain/keep-fg-wall-1-ne.png >-share/wesnoth/images/terrain/keep-fg-wall-1-nw.png >-share/wesnoth/images/terrain/keep-fg-wall-1-se.png >-share/wesnoth/images/terrain/keep-fg-wall-1-sw.png >-share/wesnoth/images/terrain/keep-fg-wall-1-w.png >-share/wesnoth/images/terrain/keep-fg-wall-e.png >-share/wesnoth/images/terrain/keep-fg-wall-ne.png >-share/wesnoth/images/terrain/keep-fg-wall-nw.png >-share/wesnoth/images/terrain/keep-fg-wall-se.png >-share/wesnoth/images/terrain/keep-fg-wall-sw.png >-share/wesnoth/images/terrain/keep-fg-wall-w.png >-share/wesnoth/images/terrain/keep.png >-share/wesnoth/images/terrain/lava.png >-share/wesnoth/images/terrain/mask.png >-share/wesnoth/images/terrain/mine.png >-share/wesnoth/images/terrain/mountains-n.png >-share/wesnoth/images/terrain/mountains-ne.png >-share/wesnoth/images/terrain/mountains-nw.png >-share/wesnoth/images/terrain/mountains-s.png >-share/wesnoth/images/terrain/mountains-se.png >-share/wesnoth/images/terrain/mountains-sw.png >-share/wesnoth/images/terrain/mountains.png >-share/wesnoth/images/terrain/nest-empty.png >-share/wesnoth/images/terrain/nest-full.png >-share/wesnoth/images/terrain/ocean-n.png >-share/wesnoth/images/terrain/ocean-ne.png >-share/wesnoth/images/terrain/ocean-nw.png >-share/wesnoth/images/terrain/ocean-s.png >-share/wesnoth/images/terrain/ocean-se.png >-share/wesnoth/images/terrain/ocean-sw.png >-share/wesnoth/images/terrain/ocean.png >-share/wesnoth/images/terrain/out.png >-share/wesnoth/images/terrain/pier.png >-share/wesnoth/images/terrain/road.png >-share/wesnoth/images/terrain/rocks.png >-share/wesnoth/images/terrain/signpost.png >-share/wesnoth/images/terrain/snow-forest-n.png >-share/wesnoth/images/terrain/snow-forest-ne.png >-share/wesnoth/images/terrain/snow-forest-nw.png >-share/wesnoth/images/terrain/snow-forest-s.png >-share/wesnoth/images/terrain/snow-forest-se.png >-share/wesnoth/images/terrain/snow-forest-sw.png >-share/wesnoth/images/terrain/snow-forest.png >-share/wesnoth/images/terrain/snow-hills-n-ne.png >-share/wesnoth/images/terrain/snow-hills-n.png >-share/wesnoth/images/terrain/snow-hills-ne.png >-share/wesnoth/images/terrain/snow-hills-nw.png >-share/wesnoth/images/terrain/snow-hills-s-sw.png >-share/wesnoth/images/terrain/snow-hills-s.png >-share/wesnoth/images/terrain/snow-hills-se.png >-share/wesnoth/images/terrain/snow-hills-sw.png >-share/wesnoth/images/terrain/snow-hills.png >-share/wesnoth/images/terrain/snow-n-ne-se-s.png >-share/wesnoth/images/terrain/snow-n-ne-se.png >-share/wesnoth/images/terrain/snow-n-ne.png >-share/wesnoth/images/terrain/snow-n.png >-share/wesnoth/images/terrain/snow-ne-se-s.png >-share/wesnoth/images/terrain/snow-ne-se.png >-share/wesnoth/images/terrain/snow-ne.png >-share/wesnoth/images/terrain/snow-nw-n.png >-share/wesnoth/images/terrain/snow-nw.png >-share/wesnoth/images/terrain/snow-s-sw-nw-n.png >-share/wesnoth/images/terrain/snow-s-sw-nw.png >-share/wesnoth/images/terrain/snow-s-sw.png >-share/wesnoth/images/terrain/snow-s.png >-share/wesnoth/images/terrain/snow-se-s.png >-share/wesnoth/images/terrain/snow-se-sw-nw.png >-share/wesnoth/images/terrain/snow-se.png >-share/wesnoth/images/terrain/snow-sw-nw-n.png >-share/wesnoth/images/terrain/snow-sw-nw.png >-share/wesnoth/images/terrain/snow-sw.png >-share/wesnoth/images/terrain/snow.png >-share/wesnoth/images/terrain/snow2.png >-share/wesnoth/images/terrain/snowbits.png >-share/wesnoth/images/terrain/swampwater-n.png >-share/wesnoth/images/terrain/swampwater-ne.png >-share/wesnoth/images/terrain/swampwater-nw.png >-share/wesnoth/images/terrain/swampwater-s.png >-share/wesnoth/images/terrain/swampwater-se.png >-share/wesnoth/images/terrain/swampwater-sw.png >-share/wesnoth/images/terrain/swampwater.png >-share/wesnoth/images/terrain/swampwater2.png >-share/wesnoth/images/terrain/swampwater3.png >-share/wesnoth/images/terrain/temple.png >-share/wesnoth/images/terrain/tent.png >-share/wesnoth/images/terrain/test.png >-share/wesnoth/images/terrain/trash.png >-share/wesnoth/images/terrain/village-cave.png >-share/wesnoth/images/terrain/village-coast.png >-share/wesnoth/images/terrain/village-dusk.png >-share/wesnoth/images/terrain/village-first_watch.png >-share/wesnoth/images/terrain/village-human.png >-share/wesnoth/images/terrain/village-n.png >-share/wesnoth/images/terrain/village-ne.png >-share/wesnoth/images/terrain/village-nw.png >-share/wesnoth/images/terrain/village-s.png >-share/wesnoth/images/terrain/village-se.png >-share/wesnoth/images/terrain/village-second_watch.png >-share/wesnoth/images/terrain/village-snow.png >-share/wesnoth/images/terrain/village-sw.png >-share/wesnoth/images/terrain/village-swampwater.png >-share/wesnoth/images/terrain/village.png >-share/wesnoth/images/terrain/void-n-ne-se-s.png >-share/wesnoth/images/terrain/void-n-ne-se.png >-share/wesnoth/images/terrain/void-n-ne.png >-share/wesnoth/images/terrain/void-n.png >-share/wesnoth/images/terrain/void-ne-se-s.png >-share/wesnoth/images/terrain/void-ne-se.png >-share/wesnoth/images/terrain/void-ne.png >-share/wesnoth/images/terrain/void-nw-n-ne.png >-share/wesnoth/images/terrain/void-nw-n.png >-share/wesnoth/images/terrain/void-nw.png >-share/wesnoth/images/terrain/void-s-sw-nw-n.png >-share/wesnoth/images/terrain/void-s-sw-nw.png >-share/wesnoth/images/terrain/void-s-sw.png >-share/wesnoth/images/terrain/void-s.png >-share/wesnoth/images/terrain/void-se-s-sw.png >-share/wesnoth/images/terrain/void-se-s.png >-share/wesnoth/images/terrain/void-se.png >-share/wesnoth/images/terrain/void-sw-nw-n.png >-share/wesnoth/images/terrain/void-sw-nw.png >-share/wesnoth/images/terrain/void-sw.png >-share/wesnoth/images/terrain/void.png >-share/wesnoth/images/thief-attack.png >-share/wesnoth/images/thief-defend.png >-share/wesnoth/images/thief.png >-share/wesnoth/images/tools/exploder/mask-castle-e.png >-share/wesnoth/images/tools/exploder/mask-castle-ne.png >-share/wesnoth/images/tools/exploder/mask-castle-nw.png >-share/wesnoth/images/tools/exploder/mask-castle-se.png >-share/wesnoth/images/tools/exploder/mask-castle-sw.png >-share/wesnoth/images/tools/exploder/mask-castle-w.png >-share/wesnoth/images/tower.png >-share/wesnoth/images/troll-grunt-attack.png >-share/wesnoth/images/troll-grunt-defend.png >-share/wesnoth/images/troll-grunt.png >-share/wesnoth/images/troll-warrior-attack.png >-share/wesnoth/images/troll-warrior.png >-share/wesnoth/images/troll-whelp-attack.png >-share/wesnoth/images/troll-whelp-defend.png >-share/wesnoth/images/troll-whelp.png >-share/wesnoth/images/undead-adept-attack.png >-share/wesnoth/images/undead-adept-defend.png >-share/wesnoth/images/undead-adept.png >-share/wesnoth/images/undead-ancient-lich-attack.png >-share/wesnoth/images/undead-ancient-lich-defend.png >-share/wesnoth/images/undead-ancient-lich.png >-share/wesnoth/images/undead-archer-attack.png >-share/wesnoth/images/undead-archer-attack1.png >-share/wesnoth/images/undead-archer-attack2.png >-share/wesnoth/images/undead-archer.png >-share/wesnoth/images/undead-bat-attack.png >-share/wesnoth/images/undead-bat-defend.png >-share/wesnoth/images/undead-bat.png >-share/wesnoth/images/undead-blackspell.png >-share/wesnoth/images/undead-bloodbat-attack.png >-share/wesnoth/images/undead-bloodbat-defend.png >-share/wesnoth/images/undead-bloodbat.png >-share/wesnoth/images/undead-boneshooter-attack.png >-share/wesnoth/images/undead-boneshooter-attack1.png >-share/wesnoth/images/undead-boneshooter-attack2.png >-share/wesnoth/images/undead-boneshooter-defend.png >-share/wesnoth/images/undead-boneshooter.png >-share/wesnoth/images/undead-chocobone-attack.png >-share/wesnoth/images/undead-chocobone-defend.png >-share/wesnoth/images/undead-chocobone-moving.png >-share/wesnoth/images/undead-chocobone.png >-share/wesnoth/images/undead-darkspirit-attack.png >-share/wesnoth/images/undead-darkspirit-attack1.png >-share/wesnoth/images/undead-darkspirit-defend.png >-share/wesnoth/images/undead-darkspirit.png >-share/wesnoth/images/undead-deathknight.png >-share/wesnoth/images/undead-deathmaster-attack1.png >-share/wesnoth/images/undead-deathmaster-attack2.png >-share/wesnoth/images/undead-deathmaster-defend.png >-share/wesnoth/images/undead-deathmaster-ranged1.png >-share/wesnoth/images/undead-deathmaster-ranged2.png >-share/wesnoth/images/undead-deathmaster-ranged3.png >-share/wesnoth/images/undead-deathmaster-ranged4.png >-share/wesnoth/images/undead-deathmaster.png >-share/wesnoth/images/undead-demilich-attack.png >-share/wesnoth/images/undead-demilich-ranged1.png >-share/wesnoth/images/undead-demilich-ranged2.png >-share/wesnoth/images/undead-demilich.png >-share/wesnoth/images/undead-ghost-attack.png >-share/wesnoth/images/undead-ghost-attack1.png >-share/wesnoth/images/undead-ghost-defend.png >-share/wesnoth/images/undead-ghost.png >-share/wesnoth/images/undead-ghoul-attack.png >-share/wesnoth/images/undead-ghoul-defend.png >-share/wesnoth/images/undead-ghoul.png >-share/wesnoth/images/undead-initiate-attack1.png >-share/wesnoth/images/undead-initiate-attack2.png >-share/wesnoth/images/undead-initiate-defend.png >-share/wesnoth/images/undead-initiate.png >-share/wesnoth/images/undead-lich-defend.png >-share/wesnoth/images/undead-lich-melee.png >-share/wesnoth/images/undead-lich-ranged1.png >-share/wesnoth/images/undead-lich-ranged2.png >-share/wesnoth/images/undead-lich.png >-share/wesnoth/images/undead-necromancer-attack.png >-share/wesnoth/images/undead-necromancer-attack2.png >-share/wesnoth/images/undead-necromancer-defend.png >-share/wesnoth/images/undead-necromancer.png >-share/wesnoth/images/undead-necrophage-attack.png >-share/wesnoth/images/undead-necrophage-defend.png >-share/wesnoth/images/undead-necrophage.png >-share/wesnoth/images/undead-nightgaunt-attack.png >-share/wesnoth/images/undead-nightgaunt-attack2.png >-share/wesnoth/images/undead-nightgaunt-defend.png >-share/wesnoth/images/undead-nightgaunt.png >-share/wesnoth/images/undead-revenant-attack.png >-share/wesnoth/images/undead-revenant.png >-share/wesnoth/images/undead-shadow-attack.png >-share/wesnoth/images/undead-shadow-defend.png >-share/wesnoth/images/undead-shadow.png >-share/wesnoth/images/undead-skeleton-attack.png >-share/wesnoth/images/undead-skeleton-attackb.png >-share/wesnoth/images/undead-skeleton-defend.png >-share/wesnoth/images/undead-skeleton.png >-share/wesnoth/images/undead-soulless-defend.png >-share/wesnoth/images/undead-soulless-melee.png >-share/wesnoth/images/undead-soulless.png >-share/wesnoth/images/undead-spectre-attack.png >-share/wesnoth/images/undead-spectre-attack1.png >-share/wesnoth/images/undead-spectre-defend.png >-share/wesnoth/images/undead-spectre.png >-share/wesnoth/images/undead-vampirelady-attack.png >-share/wesnoth/images/undead-vampirelady-defend.png >-share/wesnoth/images/undead-vampirelady-range.png >-share/wesnoth/images/undead-vampirelady.png >-share/wesnoth/images/undead-wraith-attack.png >-share/wesnoth/images/undead-wraith-attack1.png >-share/wesnoth/images/undead-wraith-defend.png >-share/wesnoth/images/undead-wraith.png >-share/wesnoth/images/undead-zombie-attack.png >-share/wesnoth/images/undead-zombie.png >-share/wesnoth/images/unmoved-energy.png >-share/wesnoth/images/wesnoth-icon.png >-share/wesnoth/images/white-cleric-attack.png >-share/wesnoth/images/white-cleric-attack1.png >-share/wesnoth/images/white-cleric-defend.png >-share/wesnoth/images/white-cleric.png >-share/wesnoth/images/white-mage-attack.png >-share/wesnoth/images/white-mage-attack1.png >-share/wesnoth/images/white-mage-defend.png >-share/wesnoth/images/white-mage.png >-share/wesnoth/images/wolf-rider-attack.png >-share/wesnoth/images/wolf-rider-defend.png >-share/wesnoth/images/wolf-rider-moving.png >-share/wesnoth/images/wolf-rider.png >-share/wesnoth/images/wose-ancient-attack-1.png >-share/wesnoth/images/wose-ancient-attack-2.png >-share/wesnoth/images/wose-ancient.png >-share/wesnoth/images/wose-attack.png >-share/wesnoth/images/wose-defend.png >-share/wesnoth/images/wose-elder-attack.png >-share/wesnoth/images/wose-elder-defend.png >-share/wesnoth/images/wose-elder.png >-share/wesnoth/images/wose-sapling-attack.png >-share/wesnoth/images/wose-sapling-defend.png >-share/wesnoth/images/wose-sapling.png >-share/wesnoth/images/wose.png >-share/wesnoth/images/yeti-attack1.png >-share/wesnoth/images/yeti-attack2.png >-share/wesnoth/images/yeti-defend.png >-share/wesnoth/images/yeti.png >-share/wesnoth/images/young-ogre-attack.png >-share/wesnoth/images/young-ogre.png >-%%LITE:%%share/wesnoth/music/elf-land.ogg >-%%LITE:%%share/wesnoth/music/frantic.ogg >-%%LITE:%%share/wesnoth/music/underground.ogg >-%%LITE:%%share/wesnoth/music/wesnoth-1.ogg >-%%LITE:%%share/wesnoth/music/wesnoth-2.ogg >-%%LITE:%%share/wesnoth/music/wesnoth-3.ogg >-%%LITE:%%share/wesnoth/music/wesnoth-4.ogg >-%%LITE:%%share/wesnoth/music/wesnoth-5.ogg >-%%LITE:%%share/wesnoth/music/wesnoth-6.ogg >-%%LITE:%%share/wesnoth/music/wesnoth-7.ogg >-%%LITE:%%share/wesnoth/music/wesnoth-8.ogg >-share/wesnoth/sounds/arrive.wav >-share/wesnoth/sounds/arrow-hit.wav >-share/wesnoth/sounds/arrow-miss.wav >-share/wesnoth/sounds/bell.wav >-share/wesnoth/sounds/dagger-swish.wav >-share/wesnoth/sounds/dart.wav >-share/wesnoth/sounds/female-hit.wav >-share/wesnoth/sounds/fire.wav >-share/wesnoth/sounds/firearrow.wav >-share/wesnoth/sounds/fist-swish.wav >-share/wesnoth/sounds/ghoul-hit.wav >-share/wesnoth/sounds/ghoul-swish.wav >-share/wesnoth/sounds/groan.wav >-share/wesnoth/sounds/gunshot.wav >-share/wesnoth/sounds/heal.wav >-share/wesnoth/sounds/horse-canter.wav >-share/wesnoth/sounds/knife.wav >-share/wesnoth/sounds/leave.wav >-share/wesnoth/sounds/lightning.wav >-share/wesnoth/sounds/mace.wav >-share/wesnoth/sounds/magicmissile.wav >-share/wesnoth/sounds/mermen-hit.wav >-share/wesnoth/sounds/net.wav >-share/wesnoth/sounds/open-chest.wav >-share/wesnoth/sounds/orc-hit.wav >-share/wesnoth/sounds/pistol.wav >-share/wesnoth/sounds/receive.wav >-share/wesnoth/sounds/skeleton-hit.wav >-share/wesnoth/sounds/spear.wav >-share/wesnoth/sounds/staff.wav >-share/wesnoth/sounds/sword-clang.wav >-share/wesnoth/sounds/sword-swish.wav >-share/wesnoth/sounds/torch-swish.wav >-share/wesnoth/sounds/ugg.wav >-share/wesnoth/sounds/wolf-attack.wav >-share/wesnoth/sounds/wolf-cry.wav >-share/wesnoth/sounds/zombie-attack.wav >-share/wesnoth/sounds/zombie-hit.wav >-@dirrm share/wesnoth/sounds >-%%LITE:%%@dirrm share/wesnoth/music >-@dirrm share/wesnoth/images/tools/exploder >-@dirrm share/wesnoth/images/tools >-@dirrm share/wesnoth/images/terrain >-@dirrm share/wesnoth/images/sotbe >-@dirrm share/wesnoth/images/projectiles >-@dirrm share/wesnoth/images/misc >-@dirrm share/wesnoth/images/icons >-@dirrm share/wesnoth/images/help >-@dirrm share/wesnoth/images/halo >-@dirrm share/wesnoth/images/editor >-@dirrm share/wesnoth/images/cursors-bw >-@dirrm share/wesnoth/images/cursors >-@dirrm share/wesnoth/images/buttons >-@dirrm share/wesnoth/images/attacks >-@dirrm share/wesnoth/images >-@dirrm share/wesnoth/fonts >-@dirrm share/wesnoth/data/units >-@dirrm share/wesnoth/data/translations >-@dirrm share/wesnoth/data/tools/exploder/models >-@dirrm share/wesnoth/data/tools/exploder >-@dirrm share/wesnoth/data/tools >-@dirrm share/wesnoth/data/themes >-@dirrm share/wesnoth/data/terrain-graphics >-@dirrm share/wesnoth/data/scenarios/multiplayer >-@dirrm share/wesnoth/data/scenarios/The_Dark_Hordes >-@dirrm share/wesnoth/data/scenarios/Son_Of_The_Black_Eye >-@dirrm share/wesnoth/data/scenarios/Heir_To_The_Throne >-@dirrm share/wesnoth/data/scenarios/Eastern_Invasion >-@dirrm share/wesnoth/data/scenarios >-@dirrm share/wesnoth/data/maps/Tutorial >-@dirrm share/wesnoth/data/maps/The_Dark_Hordes >-@dirrm share/wesnoth/data/maps/Son_Of_The_Black_Eye >-@dirrm share/wesnoth/data/maps/Multiplayer >-@dirrm share/wesnoth/data/maps/Heir_To_The_Throne >-@dirrm share/wesnoth/data/maps/Eastern_Invasion >-@dirrm share/wesnoth/data/maps >-@dirrm share/wesnoth/data/campaigns >-@dirrm share/wesnoth/data >-@dirrm share/wesnoth >-%%GNOME:%%share/gnome/apps/Games/wesnoth.desktop >-%%GNOME:%%share/gnome/pixmaps/wesnoth-icon.png >- >-%%KDE:%%@cwd %%LOCALBASE%% >-%%KDE:%%share/applnk/Games/TacticStrategy/wesnoth.desktop >-%%KDE:%%share/icons/wesnoth-icon.png >Index: files/patch-src::help.cpp >=================================================================== >RCS file: /home/ncvs/ports/games/wesnoth/files/patch-src::help.cpp,v >retrieving revision 1.1 >diff -u -u -r1.1 patch-src::help.cpp >--- files/patch-src::help.cpp 4 Jul 2004 02:19:30 -0000 1.1 >+++ files/patch-src::help.cpp 29 Aug 2004 18:51:19 -0000 >@@ -1,10 +0,0 @@ >---- src/help.cpp.orig Sat Jul 3 20:44:17 2004 >-+++ src/help.cpp Sat Jul 3 20:44:25 2004 >-@@ -27,7 +27,6 @@ >- #include <cassert> >- #include <algorithm> >- #include <iostream> >--#include <locale> >- #include <queue> >- #include <set> >- #include <stack> >Index: files/patch-src::scoped_resource.hpp >=================================================================== >RCS file: /home/ncvs/ports/games/wesnoth/files/patch-src::scoped_resource.hpp,v >retrieving revision 1.1 >diff -u -u -r1.1 patch-src::scoped_resource.hpp >--- files/patch-src::scoped_resource.hpp 4 Jul 2004 02:19:30 -0000 1.1 >+++ files/patch-src::scoped_resource.hpp 29 Aug 2004 18:51:19 -0000 >@@ -1,11 +0,0 @@ >---- src/scoped_resource.hpp.orig Sat Jul 3 16:23:45 2004 >-+++ src/scoped_resource.hpp Sat Jul 3 16:24:35 2004 >-@@ -13,6 +13,8 @@ >- #ifndef SCOPED_RESOURCE_H_INCLUDED >- #define SCOPED_RESOURCE_H_INCLUDED >- >-+#include <cstdio> >-+ >- /** >- * The util namespace should take all classes which are of a generic type, >- * used to perform common tasks which are not BibleTime-specific. See
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 71111
: 46293