From dbbbc26ae8ed3755a4a250baeb84d0fbf6eb1ec7 Mon Sep 17 00:00:00 2001 From: Max Brazhnikov Date: Sat, 16 May 2015 10:06:43 +0000 Subject: [PATCH] =?UTF-8?q?games/supertux-devel:=20-=20Update=20to=200.3.5?= =?UTF-8?q?.=20In=20this=20release,=20dedicated=20to=20SuperTux=E2=80=99s?= =?UTF-8?q?=2015=20year=20=20=20anniversary,=20among=20major=20changes=20a?= =?UTF-8?q?re=20switch=20to=20SDL2=20for=20graphics=20=20=20rendering,=20p?= =?UTF-8?q?erformance=20improvements,=20lots=20of=20bugfixes,=20new=20tile?= =?UTF-8?q?s=20and=20=20=20sounds,=20new=20bonuses=20and=20powerups,=20new?= =?UTF-8?q?=20badguys,=20massive=20improvements=20=20=20to=20localization.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- games/supertux-devel/Makefile | 13 +- games/supertux-devel/distinfo | 4 +- .../supertux-devel/files/patch-CMakeLists.txt | 14 +- .../files/patch-src-scripting-sound_error.hpp | 10 - .../patch-src-scripting-squirrel_error.hpp | 10 - games/supertux-devel/pkg-plist | 621 ++++++++++++++++-- 6 files changed, 599 insertions(+), 73 deletions(-) delete mode 100644 games/supertux-devel/files/patch-src-scripting-sound_error.hpp delete mode 100644 games/supertux-devel/files/patch-src-scripting-squirrel_error.hpp diff --git a/games/supertux-devel/Makefile b/games/supertux-devel/Makefile index f912f366504d..862ff46f68d5 100644 --- a/games/supertux-devel/Makefile +++ b/games/supertux-devel/Makefile @@ -1,10 +1,9 @@ # $FreeBSD$ PORTNAME= supertux -PORTVERSION= 0.3.4 -PORTREVISION= 2 +PORTVERSION= 0.3.5 CATEGORIES= games -MASTER_SITES= GOOGLE_CODE +MASTER_SITES= https://github.com/SuperTux/supertux/releases/download/v${PORTVERSION}/ PKGNAMESUFFIX= -devel MAINTAINER= makc@FreeBSD.org @@ -15,10 +14,14 @@ LIB_DEPENDS= libphysfs.so:${PORTSDIR}/devel/physfs \ libcurl.so:${PORTSDIR}/ftp/curl \ libvorbis.so:${PORTSDIR}/audio/libvorbis -USE_SDL= image +USE_SDL= sdl2 image2 USE_GL= glew -USES= cmake:outsource iconv openal:al tar:bzip2 +USES= cmake:outsource compiler:c++11-lib iconv openal:al pkgconfig tar:bzip2 LDFLAGS+= -L${LOCALBASE}/lib ${ICONV_LIB} +# Unhide std::to_string() to fix build with GCC (see ports/193528 for details) +CFLAGS+= -D_GLIBCXX_USE_C99 + +OPTIONS_DEFINE= DOCS post-patch: ${REINPLACE_CMD} -e '/^Icon=/s,supertux.png,supertux2.png,' \ diff --git a/games/supertux-devel/distinfo b/games/supertux-devel/distinfo index e1dbc7de194d..eed39462defb 100644 --- a/games/supertux-devel/distinfo +++ b/games/supertux-devel/distinfo @@ -1,2 +1,2 @@ -SHA256 (supertux-0.3.4.tar.bz2) = 741d7aa83ec84e3f19e90459236457baa2b8b87f1c494251d315a44b3599e7b6 -SIZE (supertux-0.3.4.tar.bz2) = 69266076 +SHA256 (supertux-0.3.5.tar.bz2) = cdc6c937323e24ad510c5a5488518f283d0f3543253d55b9d0614b5220375b0f +SIZE (supertux-0.3.5.tar.bz2) = 72977597 diff --git a/games/supertux-devel/files/patch-CMakeLists.txt b/games/supertux-devel/files/patch-CMakeLists.txt index 8e4283050a53..2a04948d204c 100644 --- a/games/supertux-devel/files/patch-CMakeLists.txt +++ b/games/supertux-devel/files/patch-CMakeLists.txt @@ -1,6 +1,6 @@ ---- ./CMakeLists.txt.orig 2010-03-01 12:40:55.000000000 +0000 -+++ ./CMakeLists.txt 2012-09-10 22:29:07.183039461 +0000 -@@ -379,13 +379,15 @@ +--- CMakeLists.txt.orig 2015-04-11 13:49:50 UTC ++++ CMakeLists.txt +@@ -421,13 +421,15 @@ IF(${CMAKE_SYSTEM_NAME} MATCHES "Darwin" ELSE(${CMAKE_SYSTEM_NAME} MATCHES "Darwin") @@ -18,3 +18,11 @@ ENDIF(${CMAKE_SYSTEM_NAME} MATCHES "Darwin") ENDIF(WIN32 AND NOT UNIX) +@@ -438,7 +440,6 @@ INSTALL(FILES ${CMAKE_CURRENT_SOURCE_DIR + + INSTALL(FILES ${CMAKE_CURRENT_SOURCE_DIR}/data/credits.txt DESTINATION ${INSTALL_SUBDIR_SHARE}) + +-INSTALL(FILES ${CMAKE_CURRENT_SOURCE_DIR}/supertux2.appdata.xml DESTINATION "share/appdata" ) + + INSTALL(DIRECTORY data/images + data/fonts diff --git a/games/supertux-devel/files/patch-src-scripting-sound_error.hpp b/games/supertux-devel/files/patch-src-scripting-sound_error.hpp deleted file mode 100644 index 7af70a199150..000000000000 --- a/games/supertux-devel/files/patch-src-scripting-sound_error.hpp +++ /dev/null @@ -1,10 +0,0 @@ ---- src/audio/sound_error.hpp.orig 2013-07-09 01:03:45.000000000 +0200 -+++ src/audio/sound_error.hpp 2013-09-13 17:09:14.252645154 +0200 -@@ -18,6 +18,7 @@ - #define HEADER_SUPERTUX_AUDIO_SOUND_ERROR_HPP - - #include -+#include - - class SoundError : public std::exception - { diff --git a/games/supertux-devel/files/patch-src-scripting-squirrel_error.hpp b/games/supertux-devel/files/patch-src-scripting-squirrel_error.hpp deleted file mode 100644 index 71b5cfa7eac6..000000000000 --- a/games/supertux-devel/files/patch-src-scripting-squirrel_error.hpp +++ /dev/null @@ -1,10 +0,0 @@ ---- src/scripting/squirrel_error.hpp.orig 2013-07-09 01:03:45.000000000 +0200 -+++ src/scripting/squirrel_error.hpp 2013-09-13 14:48:42.828225953 +0200 -@@ -19,6 +19,7 @@ - - #include - #include -+#include - - namespace scripting { - diff --git a/games/supertux-devel/pkg-plist b/games/supertux-devel/pkg-plist index 85d6f0b3dc49..b5ec8c0b9ab4 100644 --- a/games/supertux-devel/pkg-plist +++ b/games/supertux-devel/pkg-plist @@ -1,17 +1,30 @@ bin/supertux2 share/applications/supertux2.desktop -share/doc/supertux2/COPYING -share/doc/supertux2/INSTALL -share/doc/supertux2/README -share/doc/supertux2/WHATSNEW.txt +%%PORTDOCS%%%%DOCSDIR%%2/INSTALL.md +%%PORTDOCS%%%%DOCSDIR%%2/LICENSE +%%PORTDOCS%%%%DOCSDIR%%2/README.md +%%PORTDOCS%%%%DOCSDIR%%2/WHATSNEW.txt share/games/supertux2/credits.txt +share/games/supertux2/fonts/Deva-voy-white-big.stf +share/games/supertux2/fonts/Deva-voy-white.stf +share/games/supertux2/fonts/Deva-white-big.stf +share/games/supertux2/fonts/Deva-white.stf share/games/supertux2/fonts/README share/games/supertux2/fonts/andale10.stf share/games/supertux2/fonts/andale12.stf +share/games/supertux2/fonts/ara-white-big.stf +share/games/supertux2/fonts/ara-white-small.stf +share/games/supertux2/fonts/ara-white.stf share/games/supertux2/fonts/console2.stf share/games/supertux2/fonts/cyr-white-big.stf share/games/supertux2/fonts/cyr-white-small.stf share/games/supertux2/fonts/cyr-white.stf +share/games/supertux2/fonts/greek-white-big.stf +share/games/supertux2/fonts/greek-white-small.stf +share/games/supertux2/fonts/greek-white.stf +share/games/supertux2/fonts/ko-white-big.stf +share/games/supertux2/fonts/ko-white-small.stf +share/games/supertux2/fonts/ko-white.stf share/games/supertux2/fonts/white-big.stf share/games/supertux2/fonts/white-small.stf share/games/supertux2/fonts/white.stf @@ -55,6 +68,12 @@ share/games/supertux2/images/background/forest_para2.png share/games/supertux2/images/background/forest_para3.png share/games/supertux2/images/background/forest_para3_bottom.png share/games/supertux2/images/background/ghostforest.jpg +share/games/supertux2/images/background/halloween/fog.png +share/games/supertux2/images/background/halloween/intro.jpg +share/games/supertux2/images/background/halloween/mountain.png +share/games/supertux2/images/background/halloween/outro.jpg +share/games/supertux2/images/background/halloween/sky.png +share/games/supertux2/images/background/halloween/vignette.png share/games/supertux2/images/background/leaves.png share/games/supertux2/images/background/nightsky.png share/games/supertux2/images/background/nightsky_bottom.png @@ -106,6 +125,12 @@ share/games/supertux2/images/creatures/dummyguy/stand.png share/games/supertux2/images/creatures/dummyguy/throw.png share/games/supertux2/images/creatures/dummyguy/walk-1.png share/games/supertux2/images/creatures/dummyguy/walk-2.png +share/games/supertux2/images/creatures/fatbat/fatbat.sprite +share/games/supertux2/images/creatures/fatbat/fly-0.png +share/games/supertux2/images/creatures/fatbat/fly-1.png +share/games/supertux2/images/creatures/fatbat/fly-2.png +share/games/supertux2/images/creatures/fatbat/fly-3.png +share/games/supertux2/images/creatures/fatbat/squished.png share/games/supertux2/images/creatures/fish/down.png share/games/supertux2/images/creatures/fish/fish.sprite share/games/supertux2/images/creatures/fish/iced-down.png @@ -115,7 +140,25 @@ share/games/supertux2/images/creatures/fish/left-1.png share/games/supertux2/images/creatures/flame/flame-0.png share/games/supertux2/images/creatures/flame/flame-1.png share/games/supertux2/images/creatures/flame/flame-editor.png +share/games/supertux2/images/creatures/flame/flame-fade-0.png +share/games/supertux2/images/creatures/flame/flame-fade-1.png +share/games/supertux2/images/creatures/flame/flame-fade-2.png +share/games/supertux2/images/creatures/flame/flame-fade-3.png share/games/supertux2/images/creatures/flame/flame.sprite +share/games/supertux2/images/creatures/flame/ghostflame-0.png +share/games/supertux2/images/creatures/flame/ghostflame-1.png +share/games/supertux2/images/creatures/flame/ghostflame-2.png +share/games/supertux2/images/creatures/flame/ghostflame-3.png +share/games/supertux2/images/creatures/flame/ghostflame-4.png +share/games/supertux2/images/creatures/flame/ghostflame-editor.png +share/games/supertux2/images/creatures/flame/ghostflame.sprite +share/games/supertux2/images/creatures/flame/ghostflame.xcf +share/games/supertux2/images/creatures/flame/iceflame-editor.png +share/games/supertux2/images/creatures/flame/iceflame-fade-0.png +share/games/supertux2/images/creatures/flame/iceflame-fade-1.png +share/games/supertux2/images/creatures/flame/iceflame-fade-2.png +share/games/supertux2/images/creatures/flame/iceflame.png +share/games/supertux2/images/creatures/flame/iceflame.sprite share/games/supertux2/images/creatures/flame_fish/down.png share/games/supertux2/images/creatures/flame_fish/flame_fish.sprite share/games/supertux2/images/creatures/flame_fish/left-0.png @@ -142,6 +185,16 @@ share/games/supertux2/images/creatures/ghosttree/root-base-3.png share/games/supertux2/images/creatures/ghosttree/root-base.sprite share/games/supertux2/images/creatures/ghosttree/root.png share/games/supertux2/images/creatures/ghosttree/root.sprite +share/games/supertux2/images/creatures/gold_bomb/exploding-left-0.png +share/games/supertux2/images/creatures/gold_bomb/exploding-left-1.png +share/games/supertux2/images/creatures/gold_bomb/exploding-left-2.png +share/games/supertux2/images/creatures/gold_bomb/exploding-left-3.png +share/games/supertux2/images/creatures/gold_bomb/exploding-left-4.png +share/games/supertux2/images/creatures/gold_bomb/gold_bomb.sprite +share/games/supertux2/images/creatures/gold_bomb/iced-left.png +share/games/supertux2/images/creatures/gold_bomb/left-0.png +share/games/supertux2/images/creatures/gold_bomb/left-1.png +share/games/supertux2/images/creatures/gold_bomb/left-2.png share/games/supertux2/images/creatures/haywire/haywire.sprite share/games/supertux2/images/creatures/haywire/iced-left.png share/games/supertux2/images/creatures/haywire/left-0.png @@ -154,9 +207,18 @@ share/games/supertux2/images/creatures/haywire/ticking-3.png share/games/supertux2/images/creatures/haywire/ticking-4.png share/games/supertux2/images/creatures/haywire/ticking-5.png share/games/supertux2/images/creatures/icecrusher/iceblock.png +share/games/supertux2/images/creatures/icecrusher/iceblock.xcf +share/games/supertux2/images/creatures/icecrusher/iceblock_lefteye.png +share/games/supertux2/images/creatures/icecrusher/iceblock_main.png +share/games/supertux2/images/creatures/icecrusher/iceblock_righteye.png +share/games/supertux2/images/creatures/icecrusher/iceblock_whites.png share/games/supertux2/images/creatures/icecrusher/icecrusher.sprite share/games/supertux2/images/creatures/icecrusher/krosh.png share/games/supertux2/images/creatures/icecrusher/krosh.sprite +share/games/supertux2/images/creatures/icecrusher/krosh_lefteye.png +share/games/supertux2/images/creatures/icecrusher/krosh_main.png +share/games/supertux2/images/creatures/icecrusher/krosh_righteye.png +share/games/supertux2/images/creatures/icecrusher/krosh_whites.png share/games/supertux2/images/creatures/igel/igel.sprite share/games/supertux2/images/creatures/igel/walk-0.png share/games/supertux2/images/creatures/igel/walk-1.png @@ -167,6 +229,16 @@ share/games/supertux2/images/creatures/jumpy/jumpy.sprite share/games/supertux2/images/creatures/jumpy/left-down.png share/games/supertux2/images/creatures/jumpy/left-middle.png share/games/supertux2/images/creatures/jumpy/left-up.png +share/games/supertux2/images/creatures/kirby/kirby.sprite +share/games/supertux2/images/creatures/kirby/squished-left.png +share/games/supertux2/images/creatures/kirby/walk-0.png +share/games/supertux2/images/creatures/kirby/walk-1.png +share/games/supertux2/images/creatures/kirby/walk-2.png +share/games/supertux2/images/creatures/kirby/walk-3.png +share/games/supertux2/images/creatures/kirby/walk-4.png +share/games/supertux2/images/creatures/kirby/walk-5.png +share/games/supertux2/images/creatures/kirby/walk-6.png +share/games/supertux2/images/creatures/kirby/walk-7.png share/games/supertux2/images/creatures/kugelblitz/falling-0.png share/games/supertux2/images/creatures/kugelblitz/falling-1.png share/games/supertux2/images/creatures/kugelblitz/falling-2.png @@ -178,6 +250,25 @@ share/games/supertux2/images/creatures/kugelblitz/pop-0.png share/games/supertux2/images/creatures/kugelblitz/pop-1.png share/games/supertux2/images/creatures/kugelblitz/pop-2.png share/games/supertux2/images/creatures/kugelblitz/pop-3.png +share/games/supertux2/images/creatures/livefire/extinguish-left-0.png +share/games/supertux2/images/creatures/livefire/extinguish-left-1.png +share/games/supertux2/images/creatures/livefire/extinguish-left-2.png +share/games/supertux2/images/creatures/livefire/extinguish-left-3.png +share/games/supertux2/images/creatures/livefire/extinguish-left-4.png +share/games/supertux2/images/creatures/livefire/extinguish-left-5.png +share/games/supertux2/images/creatures/livefire/left-0.png +share/games/supertux2/images/creatures/livefire/left-1.png +share/games/supertux2/images/creatures/livefire/left-2.png +share/games/supertux2/images/creatures/livefire/left-3.png +share/games/supertux2/images/creatures/livefire/livefire.sprite +share/games/supertux2/images/creatures/livefire/sleeping-left-0.png +share/games/supertux2/images/creatures/livefire/sleeping-left-1.png +share/games/supertux2/images/creatures/livefire/sleeping-left-2.png +share/games/supertux2/images/creatures/livefire/sleeping-left-3.png +share/games/supertux2/images/creatures/livefire/waking-left-0.png +share/games/supertux2/images/creatures/livefire/waking-left-1.png +share/games/supertux2/images/creatures/livefire/waking-left-2.png +share/games/supertux2/images/creatures/livefire/waking-left-3.png share/games/supertux2/images/creatures/mole/mole-0.png share/games/supertux2/images/creatures/mole/mole-1.png share/games/supertux2/images/creatures/mole/mole-2.png @@ -208,6 +299,7 @@ share/games/supertux2/images/creatures/mr_bomb/ticking-1.png share/games/supertux2/images/creatures/mr_bomb/ticking-2.png share/games/supertux2/images/creatures/mr_bomb/ticking-3.png share/games/supertux2/images/creatures/mr_cherry/cherry.sprite +share/games/supertux2/images/creatures/mr_cherry/cherrybomb-freeze.png share/games/supertux2/images/creatures/mr_cherry/cherrybomb.png share/games/supertux2/images/creatures/mr_cherry/cherrybomb1.png share/games/supertux2/images/creatures/mr_cherry/cherrybomb2.png @@ -221,6 +313,7 @@ share/games/supertux2/images/creatures/mr_cherry/cherrybomb_hit_3.png share/games/supertux2/images/creatures/mr_cherry/cherrybomb_hit_4.png share/games/supertux2/images/creatures/mr_cherry/cherrybomb_hit_5.png share/games/supertux2/images/creatures/mr_cherry/cherrybomb_hit_6.png +share/games/supertux2/images/creatures/mr_cherry/juicebox-freeze.png share/games/supertux2/images/creatures/mr_cherry/juicebox-stand.png share/games/supertux2/images/creatures/mr_cherry/juicebox.sprite share/games/supertux2/images/creatures/mr_cherry/juicebox1.png @@ -251,8 +344,12 @@ share/games/supertux2/images/creatures/mr_iceblock/flat-left.png share/games/supertux2/images/creatures/mr_iceblock/left-0.png share/games/supertux2/images/creatures/mr_iceblock/left-1.png share/games/supertux2/images/creatures/mr_iceblock/left-2.png -share/games/supertux2/images/creatures/mr_iceblock/left-3.png share/games/supertux2/images/creatures/mr_iceblock/mr_iceblock.sprite +share/games/supertux2/images/creatures/mr_iceblock/smart_block/flat-left.png +share/games/supertux2/images/creatures/mr_iceblock/smart_block/left-0.png +share/games/supertux2/images/creatures/mr_iceblock/smart_block/left-1.png +share/games/supertux2/images/creatures/mr_iceblock/smart_block/left-2.png +share/games/supertux2/images/creatures/mr_iceblock/smart_block/smart_block.sprite share/games/supertux2/images/creatures/mr_tree/dizzy-0.png share/games/supertux2/images/creatures/mr_tree/dizzy-1.png share/games/supertux2/images/creatures/mr_tree/dizzy-2.png @@ -416,15 +513,16 @@ share/games/supertux2/images/creatures/tumbleweed/tumbleweed0.png share/games/supertux2/images/creatures/tumbleweed/tumbleweed1.png share/games/supertux2/images/creatures/tumbleweed/tumbleweed2.png share/games/supertux2/images/creatures/tumbleweed/tumbleweed3.png -share/games/supertux2/images/creatures/tux/big/backflip-0.png -share/games/supertux2/images/creatures/tux/big/backflip-1.png -share/games/supertux2/images/creatures/tux/big/backflip-2.png -share/games/supertux2/images/creatures/tux/big/backflip-3.png -share/games/supertux2/images/creatures/tux/big/backflip-4.png -share/games/supertux2/images/creatures/tux/big/backflip-5.png -share/games/supertux2/images/creatures/tux/big/backflip-6.png -share/games/supertux2/images/creatures/tux/big/backflip-7.png -share/games/supertux2/images/creatures/tux/big/backflip-8.png +share/games/supertux2/images/creatures/tux/air/hat/backflip.png +share/games/supertux2/images/creatures/tux/air/hat/duck.png +share/games/supertux2/images/creatures/tux/air/hat/skid.png +share/games/supertux2/images/creatures/tux/air/hat/spin-1.png +share/games/supertux2/images/creatures/tux/air/hat/spin-2.png +share/games/supertux2/images/creatures/tux/air/hat/spin-3.png +share/games/supertux2/images/creatures/tux/air/hat/stand.png +share/games/supertux2/images/creatures/tux/air/hat/walk-0.png +share/games/supertux2/images/creatures/tux/air/hat/walk-1.png +share/games/supertux2/images/creatures/tux/big/backflip.png share/games/supertux2/images/creatures/tux/big/buttjump-0.png share/games/supertux2/images/creatures/tux/big/duck-0.png share/games/supertux2/images/creatures/tux/big/idle-0.png @@ -443,15 +541,27 @@ share/games/supertux2/images/creatures/tux/big/walk-2.png share/games/supertux2/images/creatures/tux/big/walk-3.png share/games/supertux2/images/creatures/tux/big/walk-4.png share/games/supertux2/images/creatures/tux/big/walk-5.png -share/games/supertux2/images/creatures/tux/fire/backflip-0.png -share/games/supertux2/images/creatures/tux/fire/backflip-1.png -share/games/supertux2/images/creatures/tux/fire/backflip-2.png -share/games/supertux2/images/creatures/tux/fire/backflip-3.png -share/games/supertux2/images/creatures/tux/fire/backflip-4.png -share/games/supertux2/images/creatures/tux/fire/backflip-5.png -share/games/supertux2/images/creatures/tux/fire/backflip-6.png -share/games/supertux2/images/creatures/tux/fire/backflip-7.png -share/games/supertux2/images/creatures/tux/fire/backflip-8.png +share/games/supertux2/images/creatures/tux/earth/backflip.png +share/games/supertux2/images/creatures/tux/earth/buttjump.png +share/games/supertux2/images/creatures/tux/earth/duck.png +share/games/supertux2/images/creatures/tux/earth/hardhat/backflip.png +share/games/supertux2/images/creatures/tux/earth/hardhat/duck.png +share/games/supertux2/images/creatures/tux/earth/hardhat/skid.png +share/games/supertux2/images/creatures/tux/earth/hardhat/stand.png +share/games/supertux2/images/creatures/tux/earth/hardhat/walk-0.png +share/games/supertux2/images/creatures/tux/earth/hardhat/walk-1.png +share/games/supertux2/images/creatures/tux/earth/head.png +share/games/supertux2/images/creatures/tux/earth/jump.png +share/games/supertux2/images/creatures/tux/earth/kick.png +share/games/supertux2/images/creatures/tux/earth/ladder.png +share/games/supertux2/images/creatures/tux/earth/light/backflip.png +share/games/supertux2/images/creatures/tux/earth/light/duck.png +share/games/supertux2/images/creatures/tux/earth/light/skid.png +share/games/supertux2/images/creatures/tux/earth/light/stand.png +share/games/supertux2/images/creatures/tux/earth/skid.png +share/games/supertux2/images/creatures/tux/earth/stand.png +share/games/supertux2/images/creatures/tux/earth/walk.png +share/games/supertux2/images/creatures/tux/fire/backflip.png share/games/supertux2/images/creatures/tux/fire/buttjump-0.png share/games/supertux2/images/creatures/tux/fire/duck-0.png share/games/supertux2/images/creatures/tux/fire/idle-0.png @@ -462,6 +572,12 @@ share/games/supertux2/images/creatures/tux/fire/ladder-0.png share/games/supertux2/images/creatures/tux/fire/ladder-1.png share/games/supertux2/images/creatures/tux/fire/ladder-2.png share/games/supertux2/images/creatures/tux/fire/ladder-3.png +share/games/supertux2/images/creatures/tux/fire/santa_cap/backflip.png +share/games/supertux2/images/creatures/tux/fire/santa_cap/duck.png +share/games/supertux2/images/creatures/tux/fire/santa_cap/skid.png +share/games/supertux2/images/creatures/tux/fire/santa_cap/stand.png +share/games/supertux2/images/creatures/tux/fire/santa_cap/walk-0.png +share/games/supertux2/images/creatures/tux/fire/santa_cap/walk-1.png share/games/supertux2/images/creatures/tux/fire/skid-0.png share/games/supertux2/images/creatures/tux/fire/stand-0.png share/games/supertux2/images/creatures/tux/fire/walk-0.png @@ -470,15 +586,7 @@ share/games/supertux2/images/creatures/tux/fire/walk-2.png share/games/supertux2/images/creatures/tux/fire/walk-3.png share/games/supertux2/images/creatures/tux/fire/walk-4.png share/games/supertux2/images/creatures/tux/fire/walk-5.png -share/games/supertux2/images/creatures/tux/ice/backflip-0.png -share/games/supertux2/images/creatures/tux/ice/backflip-1.png -share/games/supertux2/images/creatures/tux/ice/backflip-2.png -share/games/supertux2/images/creatures/tux/ice/backflip-3.png -share/games/supertux2/images/creatures/tux/ice/backflip-4.png -share/games/supertux2/images/creatures/tux/ice/backflip-5.png -share/games/supertux2/images/creatures/tux/ice/backflip-6.png -share/games/supertux2/images/creatures/tux/ice/backflip-7.png -share/games/supertux2/images/creatures/tux/ice/backflip-8.png +share/games/supertux2/images/creatures/tux/ice/backflip.png share/games/supertux2/images/creatures/tux/ice/buttjump-0.png share/games/supertux2/images/creatures/tux/ice/duck-0.png share/games/supertux2/images/creatures/tux/ice/idle-0.png @@ -497,6 +605,8 @@ share/games/supertux2/images/creatures/tux/ice/walk-2.png share/games/supertux2/images/creatures/tux/ice/walk-3.png share/games/supertux2/images/creatures/tux/ice/walk-4.png share/games/supertux2/images/creatures/tux/ice/walk-5.png +share/games/supertux2/images/creatures/tux/light.sprite +share/games/supertux2/images/creatures/tux/powerups.sprite share/games/supertux2/images/creatures/tux/small/gameover-0.png share/games/supertux2/images/creatures/tux/small/gameover-1.png share/games/supertux2/images/creatures/tux/small/grow-0.png @@ -608,16 +718,21 @@ share/games/supertux2/images/credits/wolfgang.jpg share/games/supertux2/images/decal/explanations/billboard-backflip.png share/games/supertux2/images/decal/explanations/billboard-bigtux.png share/games/supertux2/images/decal/explanations/billboard-buttjump.png +share/games/supertux2/images/decal/explanations/billboard-climbing.png share/games/supertux2/images/decal/explanations/billboard-fireflower.png share/games/supertux2/images/decal/explanations/billboard-resetpoint.png share/games/supertux2/images/decal/explanations/billboard-runjump.png share/games/supertux2/images/decal/explanations/billboard-star.png share/games/supertux2/images/decal/explanations/billboard-switch.png share/games/supertux2/images/decal/explanations/billboard-trampoline.png +share/games/supertux2/images/decal/halloween/exit.png +share/games/supertux2/images/decal/halloween/exitfg.png +share/games/supertux2/images/decal/halloween/gravestone1.png +share/games/supertux2/images/decal/halloween/gravestone2.png +share/games/supertux2/images/decal/halloween/tree.png share/games/supertux2/images/decal/nightcave/lightflower1.png share/games/supertux2/images/decal/nightcave/lightflower2.png share/games/supertux2/images/decal/nightcave/lightflower3.png -share/games/supertux2/images/effects/light_red.png share/games/supertux2/images/engine/console.jpg share/games/supertux2/images/engine/console.png share/games/supertux2/images/engine/console2.png @@ -627,6 +742,7 @@ share/games/supertux2/images/engine/editor/arrow.png share/games/supertux2/images/engine/editor/background.png share/games/supertux2/images/engine/editor/bicycleplatform.png share/games/supertux2/images/engine/editor/camera.png +share/games/supertux2/images/engine/editor/climbable.png share/games/supertux2/images/engine/editor/clock.png share/games/supertux2/images/engine/editor/clouds.png share/games/supertux2/images/engine/editor/decal.png @@ -655,6 +771,12 @@ share/games/supertux2/images/engine/fonts/andale10-shadow.png share/games/supertux2/images/engine/fonts/andale10.png share/games/supertux2/images/engine/fonts/andale12-shadow.png share/games/supertux2/images/engine/fonts/andale12.png +share/games/supertux2/images/engine/fonts/arabic/shadow-big.png +share/games/supertux2/images/engine/fonts/arabic/shadow-small.png +share/games/supertux2/images/engine/fonts/arabic/shadow.png +share/games/supertux2/images/engine/fonts/arabic/white-big.png +share/games/supertux2/images/engine/fonts/arabic/white-small.png +share/games/supertux2/images/engine/fonts/arabic/white.png share/games/supertux2/images/engine/fonts/console2-shadow.png share/games/supertux2/images/engine/fonts/console2.png share/games/supertux2/images/engine/fonts/cyr/AUTHORS @@ -664,6 +786,27 @@ share/games/supertux2/images/engine/fonts/cyr/shadow.png share/games/supertux2/images/engine/fonts/cyr/white-big.png share/games/supertux2/images/engine/fonts/cyr/white-small.png share/games/supertux2/images/engine/fonts/cyr/white.png +share/games/supertux2/images/engine/fonts/devanagari/AUTHOR +share/games/supertux2/images/engine/fonts/devanagari/File +share/games/supertux2/images/engine/fonts/devanagari/shadow-voy.png +share/games/supertux2/images/engine/fonts/devanagari/shadow.png +share/games/supertux2/images/engine/fonts/devanagari/white-voy.png +share/games/supertux2/images/engine/fonts/devanagari/white.png +share/games/supertux2/images/engine/fonts/devanagari/white.xcf +share/games/supertux2/images/engine/fonts/greek/AUTHOR +share/games/supertux2/images/engine/fonts/greek/Shadow-small.png +share/games/supertux2/images/engine/fonts/greek/shadow-big.png +share/games/supertux2/images/engine/fonts/greek/shadow-small.png +share/games/supertux2/images/engine/fonts/greek/shadow.png +share/games/supertux2/images/engine/fonts/greek/white-big.png +share/games/supertux2/images/engine/fonts/greek/white-small.png +share/games/supertux2/images/engine/fonts/greek/white.png +share/games/supertux2/images/engine/fonts/ko/shadow-big.png +share/games/supertux2/images/engine/fonts/ko/shadow-small.png +share/games/supertux2/images/engine/fonts/ko/shadow.png +share/games/supertux2/images/engine/fonts/ko/white-big.png +share/games/supertux2/images/engine/fonts/ko/white-small.png +share/games/supertux2/images/engine/fonts/ko/white.png share/games/supertux2/images/engine/fonts/shadow-big.png share/games/supertux2/images/engine/fonts/shadow-small.png share/games/supertux2/images/engine/fonts/shadow.png @@ -692,7 +835,10 @@ share/games/supertux2/images/engine/menu/checkbox-checked.png share/games/supertux2/images/engine/menu/checkbox-unchecked.png share/games/supertux2/images/engine/menu/frame.png share/games/supertux2/images/engine/menu/logo.png +share/games/supertux2/images/engine/menu/logo.sprite share/games/supertux2/images/engine/menu/logo_dev.png +share/games/supertux2/images/engine/menu/mousecursor-click.png +share/games/supertux2/images/engine/menu/mousecursor-link.png share/games/supertux2/images/engine/menu/mousecursor.png share/games/supertux2/images/engine/menu/score-backdrop.png share/games/supertux2/images/engine/menu/scroll-down.png @@ -704,15 +850,22 @@ share/games/supertux2/images/help/rockhowto2.png share/games/supertux2/images/help/rockhowto3.png share/games/supertux2/images/ice_world.strf share/games/supertux2/images/objects/bonus_block/bonus-1up.png +share/games/supertux2/images/objects/bonus_block/bonus-air_flower.png +share/games/supertux2/images/objects/bonus_block/bonus-earth_flower.png +share/games/supertux2/images/objects/bonus_block/bonus-explode.png share/games/supertux2/images/objects/bonus_block/bonus-fire_flower.png share/games/supertux2/images/objects/bonus_block/bonus-herring.png share/games/supertux2/images/objects/bonus_block/bonus-ice_flower.png share/games/supertux2/images/objects/bonus_block/bonus-invisible.png +share/games/supertux2/images/objects/bonus_block/bonus-levelflip.png share/games/supertux2/images/objects/bonus_block/bonus-porttramp.png +share/games/supertux2/images/objects/bonus_block/bonus-rain.png share/games/supertux2/images/objects/bonus_block/bonus-rock.png share/games/supertux2/images/objects/bonus_block/bonus-tramp.png share/games/supertux2/images/objects/bonus_block/bonusblock.sprite share/games/supertux2/images/objects/bonus_block/brick.sprite +share/games/supertux2/images/objects/bonus_block/brickIce.sprite +share/games/supertux2/images/objects/bonus_block/brickWeb.sprite share/games/supertux2/images/objects/bonus_block/empty.png share/games/supertux2/images/objects/bonus_block/full-0.png share/games/supertux2/images/objects/bonus_block/full-1.png @@ -748,9 +901,20 @@ share/games/supertux2/images/objects/candle/candle-2.png share/games/supertux2/images/objects/candle/candle-3.png share/games/supertux2/images/objects/candle/candle-4.png share/games/supertux2/images/objects/candle/candle-light-1.png +share/games/supertux2/images/objects/candle/candle-light-1.sprite share/games/supertux2/images/objects/candle/candle-light-2.png +share/games/supertux2/images/objects/candle/candle-light-2.sprite +share/games/supertux2/images/objects/candle/candle-light-white-1.png +share/games/supertux2/images/objects/candle/candle-light-white-2.png share/games/supertux2/images/objects/candle/candle.sprite +share/games/supertux2/images/objects/candle/no_candle.sprite share/games/supertux2/images/objects/candle/off.png +share/games/supertux2/images/objects/candle/torch/torch-off.png +share/games/supertux2/images/objects/candle/torch/torch.sprite +share/games/supertux2/images/objects/candle/torch/torch1.png +share/games/supertux2/images/objects/candle/torch/torch2.png +share/games/supertux2/images/objects/candle/torch/torch3.png +share/games/supertux2/images/objects/candle/torch/torch4.png share/games/supertux2/images/objects/castledoor/castledoor.png share/games/supertux2/images/objects/castledoor/castledoor.sprite share/games/supertux2/images/objects/castledoor/keyholes.png @@ -771,6 +935,8 @@ share/games/supertux2/images/objects/coin/coin-5.png share/games/supertux2/images/objects/coin/coin-6.png share/games/supertux2/images/objects/coin/coin-7.png share/games/supertux2/images/objects/coin/coin.sprite +share/games/supertux2/images/objects/coin/heavy_coin.png +share/games/supertux2/images/objects/coin/path_coin.png share/games/supertux2/images/objects/door/door-0.png share/games/supertux2/images/objects/door/door-1.png share/games/supertux2/images/objects/door/door-2.png @@ -784,6 +950,7 @@ share/games/supertux2/images/objects/eat-me/eat-me.sprite share/games/supertux2/images/objects/explosion/explosion-0.png share/games/supertux2/images/objects/explosion/explosion-1.png share/games/supertux2/images/objects/explosion/explosion.sprite +share/games/supertux2/images/objects/explosion/pop-0.png share/games/supertux2/images/objects/firefly/firefly.sprite share/games/supertux2/images/objects/firefly/firefly1.png share/games/supertux2/images/objects/firefly/firefly2.png @@ -801,6 +968,7 @@ share/games/supertux2/images/objects/flying_platform/flying_platform-3.png share/games/supertux2/images/objects/flying_platform/flying_platform.sprite share/games/supertux2/images/objects/icecube/icecube.png share/games/supertux2/images/objects/icecube/icecube.sprite +share/games/supertux2/images/objects/icecube/iceslick.png share/games/supertux2/images/objects/invisible/invisible.png share/games/supertux2/images/objects/invisible/invisible.sprite share/games/supertux2/images/objects/ispy/alert-1.png @@ -866,15 +1034,27 @@ share/games/supertux2/images/objects/lantern/lantern-off-open.png share/games/supertux2/images/objects/lantern/lantern-off.png share/games/supertux2/images/objects/lantern/lantern.sprite share/games/supertux2/images/objects/lightmap_light/bonusblock_light.png +share/games/supertux2/images/objects/lightmap_light/lightmap_light-large.png +share/games/supertux2/images/objects/lightmap_light/lightmap_light-large.sprite +share/games/supertux2/images/objects/lightmap_light/lightmap_light-medium.png +share/games/supertux2/images/objects/lightmap_light/lightmap_light-medium.sprite +share/games/supertux2/images/objects/lightmap_light/lightmap_light-small.png +share/games/supertux2/images/objects/lightmap_light/lightmap_light-small.sprite +share/games/supertux2/images/objects/lightmap_light/lightmap_light-tiny.png +share/games/supertux2/images/objects/lightmap_light/lightmap_light-tiny.sprite share/games/supertux2/images/objects/lightmap_light/lightmap_light.png share/games/supertux2/images/objects/lightmap_light/lightmap_light.sprite share/games/supertux2/images/objects/logo/logo.sprite share/games/supertux2/images/objects/magicblock/magicblock-solid.png share/games/supertux2/images/objects/magicblock/magicblock.png share/games/supertux2/images/objects/magicblock/magicblock.sprite +share/games/supertux2/images/objects/particles/airtux-hat.png +share/games/supertux2/images/objects/particles/airtux-hat.sprite share/games/supertux2/images/objects/particles/bark-0.png share/games/supertux2/images/objects/particles/bark.sprite share/games/supertux2/images/objects/particles/cloud.png +share/games/supertux2/images/objects/particles/earthtux-hardhat.png +share/games/supertux2/images/objects/particles/earthtux-hardhat.sprite share/games/supertux2/images/objects/particles/explosion-0.png share/games/supertux2/images/objects/particles/explosion-1.png share/games/supertux2/images/objects/particles/explosion-2.png @@ -918,6 +1098,8 @@ share/games/supertux2/images/objects/particles/rainsplash-vertical.sprite share/games/supertux2/images/objects/particles/rainsplash.sprite share/games/supertux2/images/objects/particles/reset.png share/games/supertux2/images/objects/particles/reset.sprite +share/games/supertux2/images/objects/particles/santatux-hat.png +share/games/supertux2/images/objects/particles/santatux-hat.sprite share/games/supertux2/images/objects/particles/smoke-1.png share/games/supertux2/images/objects/particles/smoke-2.png share/games/supertux2/images/objects/particles/smoke-3.png @@ -947,6 +1129,8 @@ share/games/supertux2/images/objects/platforms/small.png share/games/supertux2/images/objects/platforms/small.sprite share/games/supertux2/images/objects/platforms/vertical-wood.png share/games/supertux2/images/objects/platforms/vertical-wood.sprite +share/games/supertux2/images/objects/platforms/wood-fivetiles.png +share/games/supertux2/images/objects/platforms/wood-fivetiles.sprite share/games/supertux2/images/objects/platforms/wood-tiny.png share/games/supertux2/images/objects/platforms/wood-tiny.sprite share/games/supertux2/images/objects/pushbutton/pushbutton-0.png @@ -1030,6 +1214,24 @@ share/games/supertux2/images/objects/switch/switch-0.png share/games/supertux2/images/objects/switch/switch-1.png share/games/supertux2/images/objects/switch/switch-2.png share/games/supertux2/images/objects/switch/switch.sprite +share/games/supertux2/images/objects/torch/flame.sprite +share/games/supertux2/images/objects/torch/flame1.png +share/games/supertux2/images/objects/torch/flame2.png +share/games/supertux2/images/objects/torch/flame3.png +share/games/supertux2/images/objects/torch/flame4.png +share/games/supertux2/images/objects/torch/flame_glow.sprite +share/games/supertux2/images/objects/torch/flame_glow1.png +share/games/supertux2/images/objects/torch/flame_glow2.png +share/games/supertux2/images/objects/torch/flame_glow3.png +share/games/supertux2/images/objects/torch/flame_glow4.png +share/games/supertux2/images/objects/torch/flame_light.png +share/games/supertux2/images/objects/torch/flame_light.sprite +share/games/supertux2/images/objects/torch/torch1.png +share/games/supertux2/images/objects/torch/torch1.sprite +share/games/supertux2/images/objects/torch/torch2.png +share/games/supertux2/images/objects/torch/torch2.sprite +share/games/supertux2/images/objects/torch/torch3.png +share/games/supertux2/images/objects/torch/torch3.sprite share/games/supertux2/images/objects/trampoline/trampoline.sprite share/games/supertux2/images/objects/trampoline/trampoline1-0.png share/games/supertux2/images/objects/trampoline/trampoline1-1.png @@ -1092,6 +1294,17 @@ share/games/supertux2/images/objects/weak_block/straw_12.png share/games/supertux2/images/objects/weak_block/strawbox.sprite share/games/supertux2/images/powerups/1up/1up.png share/games/supertux2/images/powerups/1up/1up.sprite +share/games/supertux2/images/powerups/airflower/air_flower-0.png +share/games/supertux2/images/powerups/airflower/air_flower-1.png +share/games/supertux2/images/powerups/airflower/air_flower-2.png +share/games/supertux2/images/powerups/airflower/air_flower-3.png +share/games/supertux2/images/powerups/airflower/airflower.sprite +share/games/supertux2/images/powerups/earthflower/earth_flower-0.png +share/games/supertux2/images/powerups/earthflower/earth_flower-1.png +share/games/supertux2/images/powerups/earthflower/earth_flower-2.png +share/games/supertux2/images/powerups/earthflower/earth_flower-3.png +share/games/supertux2/images/powerups/earthflower/earthflower.sprite +share/games/supertux2/images/powerups/egg/egg-shade.png share/games/supertux2/images/powerups/egg/egg.png share/games/supertux2/images/powerups/egg/egg.sprite share/games/supertux2/images/powerups/fireflower/fire_flower-0.png @@ -1104,6 +1317,7 @@ share/games/supertux2/images/powerups/fish/fish_small.png share/games/supertux2/images/powerups/iceflower/ice_flower-0.png share/games/supertux2/images/powerups/iceflower/ice_flower-1.png share/games/supertux2/images/powerups/iceflower/ice_flower-2.png +share/games/supertux2/images/powerups/iceflower/ice_flower-3.png share/games/supertux2/images/powerups/iceflower/iceflower.sprite share/games/supertux2/images/powerups/potions/blue-potion.png share/games/supertux2/images/powerups/potions/blue-potion.sprite @@ -1132,6 +1346,7 @@ share/games/supertux2/images/tiles/background/backgroundtile4.png share/games/supertux2/images/tiles/background/backgroundtile5.png share/games/supertux2/images/tiles/background/bkgd.png share/games/supertux2/images/tiles/background/cloud.png +share/games/supertux2/images/tiles/background/rope.png share/games/supertux2/images/tiles/background/snow-para-1.png share/games/supertux2/images/tiles/background/snow-para-2.png share/games/supertux2/images/tiles/blocks/bigblock.png @@ -1145,7 +1360,10 @@ share/games/supertux2/images/tiles/blocks/brick0.png share/games/supertux2/images/tiles/blocks/brick0_full.png share/games/supertux2/images/tiles/blocks/brick1.png share/games/supertux2/images/tiles/blocks/brick1_full.png +share/games/supertux2/images/tiles/blocks/brick2.png +share/games/supertux2/images/tiles/blocks/brick2_full.png share/games/supertux2/images/tiles/blocks/icebridge.png +share/games/supertux2/images/tiles/blocks/industrial.png share/games/supertux2/images/tiles/blocks/rock_plate.png share/games/supertux2/images/tiles/castle/background.png share/games/supertux2/images/tiles/castle/brown.png @@ -1160,10 +1378,15 @@ share/games/supertux2/images/tiles/castle/grey3.png share/games/supertux2/images/tiles/castle/grey4.png share/games/supertux2/images/tiles/castle/grey5.png share/games/supertux2/images/tiles/castle/grey6.png +share/games/supertux2/images/tiles/castle/grey7.png +share/games/supertux2/images/tiles/castle/grey8.png share/games/supertux2/images/tiles/castle/grey_jungle.png +share/games/supertux2/images/tiles/castle/hearttile.png +share/games/supertux2/images/tiles/castle/pennyhere.png share/games/supertux2/images/tiles/castle/stone.png share/games/supertux2/images/tiles/castle/stones.png share/games/supertux2/images/tiles/castle/stonewindow.png +share/games/supertux2/images/tiles/castle/swall.png share/games/supertux2/images/tiles/castle/walltorch.png share/games/supertux2/images/tiles/castle/walltorch/flame-0.png share/games/supertux2/images/tiles/castle/walltorch/flame-1.png @@ -1176,9 +1399,11 @@ share/games/supertux2/images/tiles/castle/walltorch/flame-base-0.png share/games/supertux2/images/tiles/castle/web.png share/games/supertux2/images/tiles/castle/window.png share/games/supertux2/images/tiles/crystalcave/ground.png +share/games/supertux2/images/tiles/darksnow/concave2.png share/games/supertux2/images/tiles/darksnow/convex.png share/games/supertux2/images/tiles/darksnow/convex2.png share/games/supertux2/images/tiles/darksnow/low.png +share/games/supertux2/images/tiles/darksnow/slope2.png share/games/supertux2/images/tiles/darksnow/small.png share/games/supertux2/images/tiles/darksnow/wall.png share/games/supertux2/images/tiles/doodads/blueice.png @@ -1199,6 +1424,7 @@ share/games/supertux2/images/tiles/doodads/plant1.png share/games/supertux2/images/tiles/doodads/platter.png share/games/supertux2/images/tiles/doodads/stone1.png share/games/supertux2/images/tiles/doodads/stone2.png +share/games/supertux2/images/tiles/doodads/tux-statue.png share/games/supertux2/images/tiles/forest/branch.png share/games/supertux2/images/tiles/forest/brush.png share/games/supertux2/images/tiles/forest/concave.png @@ -1268,6 +1494,13 @@ share/games/supertux2/images/tiles/goal/goal2-2.png share/games/supertux2/images/tiles/goal/goal2-3.png share/games/supertux2/images/tiles/goal/goal2-4.png share/games/supertux2/images/tiles/goal/goal2-5.png +share/games/supertux2/images/tiles/halloween/base.png +share/games/supertux2/images/tiles/halloween/black.png +share/games/supertux2/images/tiles/halloween/darkness.png +share/games/supertux2/images/tiles/halloween/inner.png +share/games/supertux2/images/tiles/halloween/innerdarkness.png +share/games/supertux2/images/tiles/halloween/outerdarkness.png +share/games/supertux2/images/tiles/halloween/variation.png share/games/supertux2/images/tiles/jungle/concave.png share/games/supertux2/images/tiles/jungle/convex.png share/games/supertux2/images/tiles/jungle/jungle12-1.png @@ -1360,6 +1593,7 @@ share/games/supertux2/images/tiles/pipe/green.png share/games/supertux2/images/tiles/pipe/mask.png share/games/supertux2/images/tiles/pole/bend.png share/games/supertux2/images/tiles/pole/cross.png +share/games/supertux2/images/tiles/pole/diagonals.png share/games/supertux2/images/tiles/pole/horz.png share/games/supertux2/images/tiles/pole/t-cross.png share/games/supertux2/images/tiles/pole/vert.png @@ -1367,11 +1601,13 @@ share/games/supertux2/images/tiles/signs/color_cyan.png share/games/supertux2/images/tiles/signs/color_yellow.png share/games/supertux2/images/tiles/signs/danger.png share/games/supertux2/images/tiles/signs/down.png +share/games/supertux2/images/tiles/signs/icehold.png share/games/supertux2/images/tiles/signs/left.png share/games/supertux2/images/tiles/signs/leftdown.png share/games/supertux2/images/tiles/signs/leftup.png share/games/supertux2/images/tiles/signs/needrock.png share/games/supertux2/images/tiles/signs/right.png +share/games/supertux2/images/tiles/signs/right.sprite share/games/supertux2/images/tiles/signs/rightdown.png share/games/supertux2/images/tiles/signs/rightup.png share/games/supertux2/images/tiles/signs/run.png @@ -1383,10 +1619,12 @@ share/games/supertux2/images/tiles/snow/background2.png share/games/supertux2/images/tiles/snow/concave.png share/games/supertux2/images/tiles/snow/convex.png share/games/supertux2/images/tiles/snow/crack.png +share/games/supertux2/images/tiles/snow/custom.png share/games/supertux2/images/tiles/snow/platform.png -share/games/supertux2/images/tiles/snow/slope-upper.png share/games/supertux2/images/tiles/snow/slope_transitions.png +share/games/supertux2/images/tiles/snow/snowmerge.png share/games/supertux2/images/tiles/snow/special.png +share/games/supertux2/images/tiles/snow/special2.png share/games/supertux2/images/tiles/snow/spike.png share/games/supertux2/images/tiles/snow/unisolid.png share/games/supertux2/images/tiles/snow/unisolid2.png @@ -1499,6 +1737,10 @@ share/games/supertux2/images/worldmap/common/leveldot_blue-02.png share/games/supertux2/images/worldmap/common/leveldot_blue-03.png share/games/supertux2/images/worldmap/common/leveldot_blue.xcf share/games/supertux2/images/worldmap/common/leveldot_green.png +share/games/supertux2/images/worldmap/common/leveldot_green_perfect-0.png +share/games/supertux2/images/worldmap/common/leveldot_green_perfect-1.png +share/games/supertux2/images/worldmap/common/leveldot_green_perfect-2.png +share/games/supertux2/images/worldmap/common/leveldot_green_perfect-3.png share/games/supertux2/images/worldmap/common/leveldot_red.png share/games/supertux2/images/worldmap/common/messagedot.png share/games/supertux2/images/worldmap/common/messagedot.sprite @@ -1514,30 +1756,47 @@ share/games/supertux2/images/worldmap/common/shroom5.png share/games/supertux2/images/worldmap/common/shroom6.png share/games/supertux2/images/worldmap/common/smalltux.png share/games/supertux2/images/worldmap/common/smalltux1.png +share/games/supertux2/images/worldmap/common/smalltux1_air.png +share/games/supertux2/images/worldmap/common/smalltux1_earth.png share/games/supertux2/images/worldmap/common/smalltux1_fire.png share/games/supertux2/images/worldmap/common/smalltux1_ice.png share/games/supertux2/images/worldmap/common/smalltux2.png +share/games/supertux2/images/worldmap/common/smalltux2_air.png +share/games/supertux2/images/worldmap/common/smalltux2_earth.png share/games/supertux2/images/worldmap/common/smalltux2_fire.png share/games/supertux2/images/worldmap/common/smalltux2_ice.png share/games/supertux2/images/worldmap/common/smalltux3.png +share/games/supertux2/images/worldmap/common/smalltux3_air.png +share/games/supertux2/images/worldmap/common/smalltux3_earth.png share/games/supertux2/images/worldmap/common/smalltux3_fire.png share/games/supertux2/images/worldmap/common/smalltux3_ice.png share/games/supertux2/images/worldmap/common/smalltux4.png +share/games/supertux2/images/worldmap/common/smalltux4_air.png +share/games/supertux2/images/worldmap/common/smalltux4_earth.png share/games/supertux2/images/worldmap/common/smalltux4_fire.png share/games/supertux2/images/worldmap/common/smalltux4_ice.png share/games/supertux2/images/worldmap/common/smalltux5.png +share/games/supertux2/images/worldmap/common/smalltux5_air.png +share/games/supertux2/images/worldmap/common/smalltux5_earth.png share/games/supertux2/images/worldmap/common/smalltux5_fire.png share/games/supertux2/images/worldmap/common/smalltux5_ice.png share/games/supertux2/images/worldmap/common/smalltux6.png +share/games/supertux2/images/worldmap/common/smalltux6_air.png +share/games/supertux2/images/worldmap/common/smalltux6_earth.png share/games/supertux2/images/worldmap/common/smalltux6_fire.png share/games/supertux2/images/worldmap/common/smalltux6_ice.png share/games/supertux2/images/worldmap/common/smalltux7.png +share/games/supertux2/images/worldmap/common/smalltux7_air.png +share/games/supertux2/images/worldmap/common/smalltux7_earth.png share/games/supertux2/images/worldmap/common/smalltux7_fire.png share/games/supertux2/images/worldmap/common/smalltux7_ice.png share/games/supertux2/images/worldmap/common/smalltux8.png +share/games/supertux2/images/worldmap/common/smalltux8_air.png +share/games/supertux2/images/worldmap/common/smalltux8_earth.png share/games/supertux2/images/worldmap/common/smalltux8_fire.png share/games/supertux2/images/worldmap/common/smalltux8_ice.png -share/games/supertux2/images/worldmap/common/smalltux9.png +share/games/supertux2/images/worldmap/common/smalltux_air.png +share/games/supertux2/images/worldmap/common/smalltux_earth.png share/games/supertux2/images/worldmap/common/smalltux_fire.png share/games/supertux2/images/worldmap/common/smalltux_ice.png share/games/supertux2/images/worldmap/common/smoke1.png @@ -1588,6 +1847,16 @@ share/games/supertux2/images/worldmap/forest/small_water.sprite share/games/supertux2/images/worldmap/forest/small_wood.png share/games/supertux2/images/worldmap/forest/small_wood.sprite share/games/supertux2/images/worldmap/forest/stream.png +share/games/supertux2/images/worldmap/halloween/darkness.png +share/games/supertux2/images/worldmap/halloween/home.png +share/games/supertux2/images/worldmap/halloween/roads.png +share/games/supertux2/images/worldmap/halloween/scarecrow.png +share/games/supertux2/images/worldmap/halloween/splash1.png +share/games/supertux2/images/worldmap/halloween/splash2.png +share/games/supertux2/images/worldmap/halloween/splash3.png +share/games/supertux2/images/worldmap/halloween/tiles.png +share/games/supertux2/images/worldmap/halloween/tree1.png +share/games/supertux2/images/worldmap/halloween/tree2.png share/games/supertux2/images/worldmap/ice/cave_cracks.png share/games/supertux2/images/worldmap/ice/crystal.png share/games/supertux2/images/worldmap/ice/gimp/cracks.xcf @@ -1640,39 +1909,62 @@ share/games/supertux2/levels/bonus1/abednego-level1.stl share/games/supertux2/levels/bonus1/abednego-level2.stl share/games/supertux2/levels/bonus1/abednego-level3.stl share/games/supertux2/levels/bonus1/abednego-level4.stl +share/games/supertux2/levels/bonus1/ar.po +share/games/supertux2/levels/bonus1/az.po +share/games/supertux2/levels/bonus1/be.po +share/games/supertux2/levels/bonus1/bg.po share/games/supertux2/levels/bonus1/bonus-level1.stl share/games/supertux2/levels/bonus1/bonus-level2.stl share/games/supertux2/levels/bonus1/bonus-level3.stl share/games/supertux2/levels/bonus1/bonus-level4.stl share/games/supertux2/levels/bonus1/bonus-level5.stl share/games/supertux2/levels/bonus1/ca.po +share/games/supertux2/levels/bonus1/cmn.po share/games/supertux2/levels/bonus1/cs.po share/games/supertux2/levels/bonus1/da.po share/games/supertux2/levels/bonus1/de.po +share/games/supertux2/levels/bonus1/el.po +share/games/supertux2/levels/bonus1/eo.po share/games/supertux2/levels/bonus1/es.po +share/games/supertux2/levels/bonus1/et.po share/games/supertux2/levels/bonus1/extro.txt share/games/supertux2/levels/bonus1/fi.po share/games/supertux2/levels/bonus1/fr.po +share/games/supertux2/levels/bonus1/hi_IN.po +share/games/supertux2/levels/bonus1/hr.po share/games/supertux2/levels/bonus1/hu.po share/games/supertux2/levels/bonus1/info share/games/supertux2/levels/bonus1/it.po +share/games/supertux2/levels/bonus1/ja.po +share/games/supertux2/levels/bonus1/km.po +share/games/supertux2/levels/bonus1/ko.po share/games/supertux2/levels/bonus1/lt.po share/games/supertux2/levels/bonus1/matr1x-level1.stl share/games/supertux2/levels/bonus1/matr1x-level2.stl share/games/supertux2/levels/bonus1/matr1x-level3.stl +share/games/supertux2/levels/bonus1/ml.po share/games/supertux2/levels/bonus1/nb.po +share/games/supertux2/levels/bonus1/ne.po +share/games/supertux2/levels/bonus1/nl.po share/games/supertux2/levels/bonus1/nn.po +share/games/supertux2/levels/bonus1/pl.po share/games/supertux2/levels/bonus1/pt.po share/games/supertux2/levels/bonus1/pt_BR.po share/games/supertux2/levels/bonus1/ro.po share/games/supertux2/levels/bonus1/ru.po +share/games/supertux2/levels/bonus1/sk.po share/games/supertux2/levels/bonus1/sl.po +share/games/supertux2/levels/bonus1/sr.po share/games/supertux2/levels/bonus1/sv.po share/games/supertux2/levels/bonus1/thompson-level1.stl share/games/supertux2/levels/bonus1/thompson-level2.stl share/games/supertux2/levels/bonus1/torfi-level1.stl share/games/supertux2/levels/bonus1/torfi-level2.stl share/games/supertux2/levels/bonus1/torfi-level3.stl +share/games/supertux2/levels/bonus1/tr.po +share/games/supertux2/levels/bonus1/uk.po +share/games/supertux2/levels/bonus1/uz.po +share/games/supertux2/levels/bonus1/vi.po share/games/supertux2/levels/bonus1/wansti-level1.stl share/games/supertux2/levels/bonus1/wansti-level2.stl share/games/supertux2/levels/bonus1/wansti-level3.stl @@ -1680,17 +1972,31 @@ share/games/supertux2/levels/bonus1/wansti-level4.stl share/games/supertux2/levels/bonus1/wansti-level5.stl share/games/supertux2/levels/bonus1/worldmap.stwm share/games/supertux2/levels/bonus1/zh_CN.po +share/games/supertux2/levels/bonus1/zh_TW.po +share/games/supertux2/levels/bonus2/ar.po +share/games/supertux2/levels/bonus2/az.po +share/games/supertux2/levels/bonus2/be.po +share/games/supertux2/levels/bonus2/bg.po share/games/supertux2/levels/bonus2/ca.po +share/games/supertux2/levels/bonus2/cmn.po share/games/supertux2/levels/bonus2/cs.po share/games/supertux2/levels/bonus2/da.po share/games/supertux2/levels/bonus2/de.po +share/games/supertux2/levels/bonus2/el.po +share/games/supertux2/levels/bonus2/eo.po share/games/supertux2/levels/bonus2/es.po +share/games/supertux2/levels/bonus2/et.po share/games/supertux2/levels/bonus2/extro.txt share/games/supertux2/levels/bonus2/fi.po share/games/supertux2/levels/bonus2/fr.po +share/games/supertux2/levels/bonus2/hi_IN.po +share/games/supertux2/levels/bonus2/hr.po share/games/supertux2/levels/bonus2/hu.po share/games/supertux2/levels/bonus2/info share/games/supertux2/levels/bonus2/it.po +share/games/supertux2/levels/bonus2/ja.po +share/games/supertux2/levels/bonus2/km.po +share/games/supertux2/levels/bonus2/ko.po share/games/supertux2/levels/bonus2/level1.stl share/games/supertux2/levels/bonus2/level10.stl share/games/supertux2/levels/bonus2/level11.stl @@ -1720,33 +2026,182 @@ share/games/supertux2/levels/bonus2/level7.stl share/games/supertux2/levels/bonus2/level8.stl share/games/supertux2/levels/bonus2/level9.stl share/games/supertux2/levels/bonus2/lt.po +share/games/supertux2/levels/bonus2/ml.po share/games/supertux2/levels/bonus2/nb.po +share/games/supertux2/levels/bonus2/ne.po +share/games/supertux2/levels/bonus2/nl.po share/games/supertux2/levels/bonus2/nn.po +share/games/supertux2/levels/bonus2/pl.po share/games/supertux2/levels/bonus2/pt.po share/games/supertux2/levels/bonus2/pt_BR.po share/games/supertux2/levels/bonus2/ro.po share/games/supertux2/levels/bonus2/ru.po +share/games/supertux2/levels/bonus2/sk.po share/games/supertux2/levels/bonus2/sl.po +share/games/supertux2/levels/bonus2/sr.po share/games/supertux2/levels/bonus2/sv.po +share/games/supertux2/levels/bonus2/tr.po +share/games/supertux2/levels/bonus2/uk.po +share/games/supertux2/levels/bonus2/uz.po +share/games/supertux2/levels/bonus2/vi.po share/games/supertux2/levels/bonus2/worldmap.stwm share/games/supertux2/levels/bonus2/zh_CN.po +share/games/supertux2/levels/bonus2/zh_TW.po +share/games/supertux2/levels/bonus3/-89-2_degrees.stl +share/games/supertux2/levels/bonus3/Global_Warming.stl +share/games/supertux2/levels/bonus3/One Night in the Sky.stl +share/games/supertux2/levels/bonus3/abandoned_castle.stl +share/games/supertux2/levels/bonus3/another_cold_day.stl +share/games/supertux2/levels/bonus3/antarctic_rain.stl +share/games/supertux2/levels/bonus3/ar.po +share/games/supertux2/levels/bonus3/az.po +share/games/supertux2/levels/bonus3/be.po +share/games/supertux2/levels/bonus3/bg.po +share/games/supertux2/levels/bonus3/but_no_one_can_stop_it.stl +share/games/supertux2/levels/bonus3/ca.po +share/games/supertux2/levels/bonus3/cant_climb_higher_clouds.stl +share/games/supertux2/levels/bonus3/castle_light+darkness-v3.stl +share/games/supertux2/levels/bonus3/cave_run.stl +share/games/supertux2/levels/bonus3/cavern_v2.stl +share/games/supertux2/levels/bonus3/changelog.txt +share/games/supertux2/levels/bonus3/cmn.po +share/games/supertux2/levels/bonus3/coconut_fortress.stl +share/games/supertux2/levels/bonus3/credits.txt +share/games/supertux2/levels/bonus3/crystal sunset.stl +share/games/supertux2/levels/bonus3/crystal.stl +share/games/supertux2/levels/bonus3/crystal_beauty.stl +share/games/supertux2/levels/bonus3/crystal_cataclysm.stl +share/games/supertux2/levels/bonus3/crystalfields.stl +share/games/supertux2/levels/bonus3/cs.po +share/games/supertux2/levels/bonus3/da.po +share/games/supertux2/levels/bonus3/dark_castle-v2.stl +share/games/supertux2/levels/bonus3/dark_castle.stl +share/games/supertux2/levels/bonus3/de.po +share/games/supertux2/levels/bonus3/deep_deeper.stl +share/games/supertux2/levels/bonus3/deepest.stl +share/games/supertux2/levels/bonus3/default.nut +share/games/supertux2/levels/bonus3/dungeon_island/dungeon1.stl +share/games/supertux2/levels/bonus3/dungeon_island/dungeon2.stl +share/games/supertux2/levels/bonus3/dungeon_island/going_down.stl +share/games/supertux2/levels/bonus3/el.po +share/games/supertux2/levels/bonus3/entering_castle.stl +share/games/supertux2/levels/bonus3/eo.po +share/games/supertux2/levels/bonus3/es.po +share/games/supertux2/levels/bonus3/et.po +share/games/supertux2/levels/bonus3/fi.po +share/games/supertux2/levels/bonus3/flowers.stl +share/games/supertux2/levels/bonus3/fr.po +share/games/supertux2/levels/bonus3/glaciers.stl +share/games/supertux2/levels/bonus3/hanging roof.stl +share/games/supertux2/levels/bonus3/hi_IN.po +share/games/supertux2/levels/bonus3/hilly_landscape.stl +share/games/supertux2/levels/bonus3/hr.po +share/games/supertux2/levels/bonus3/hu.po +share/games/supertux2/levels/bonus3/in_the_spring.stl +share/games/supertux2/levels/bonus3/info +share/games/supertux2/levels/bonus3/it.po +share/games/supertux2/levels/bonus3/its_getting_unfinishable.stl +share/games/supertux2/levels/bonus3/ja.po +share/games/supertux2/levels/bonus3/km.po +share/games/supertux2/levels/bonus3/ko.po +share/games/supertux2/levels/bonus3/light_in_the_darkness.stl +share/games/supertux2/levels/bonus3/lt.po +share/games/supertux2/levels/bonus3/ml.po +share/games/supertux2/levels/bonus3/nb.po +share/games/supertux2/levels/bonus3/ne.po +share/games/supertux2/levels/bonus3/niv-1.1.stl +share/games/supertux2/levels/bonus3/niv-2.1.stl +share/games/supertux2/levels/bonus3/niv-3.stl +share/games/supertux2/levels/bonus3/nl.po +share/games/supertux2/levels/bonus3/nn.po +share/games/supertux2/levels/bonus3/over_the_ocean.stl +share/games/supertux2/levels/bonus3/pinksnow.stl +share/games/supertux2/levels/bonus3/pl.po +share/games/supertux2/levels/bonus3/pt.po +share/games/supertux2/levels/bonus3/pt_BR.po +share/games/supertux2/levels/bonus3/red_alert_forest.stl +share/games/supertux2/levels/bonus3/ro.po +share/games/supertux2/levels/bonus3/ru.po +share/games/supertux2/levels/bonus3/sever_escape.stl +share/games/supertux2/levels/bonus3/shakespeare-rain.stl +share/games/supertux2/levels/bonus3/shakespeare-rain_antarctic.stl +share/games/supertux2/levels/bonus3/sk.po +share/games/supertux2/levels/bonus3/sl.po +share/games/supertux2/levels/bonus3/snowy_hill.stl +share/games/supertux2/levels/bonus3/sr.po +share/games/supertux2/levels/bonus3/sv.po +share/games/supertux2/levels/bonus3/three_frosty_icebergs.stl +share/games/supertux2/levels/bonus3/tr.po +share/games/supertux2/levels/bonus3/uk.po +share/games/supertux2/levels/bonus3/under ice.stl +share/games/supertux2/levels/bonus3/uz.po +share/games/supertux2/levels/bonus3/vi.po +share/games/supertux2/levels/bonus3/worldmap.stwm +share/games/supertux2/levels/bonus3/zh_CN.po +share/games/supertux2/levels/bonus3/zh_TW.po +share/games/supertux2/levels/halloween2014/halloween1.stl +share/games/supertux2/levels/halloween2014/halloween2.stl +share/games/supertux2/levels/halloween2014/halloween3.stl +share/games/supertux2/levels/halloween2014/info +share/games/supertux2/levels/halloween2014/intro.stl +share/games/supertux2/levels/halloween2014/intro.txt +share/games/supertux2/levels/halloween2014/mound.stl +share/games/supertux2/levels/halloween2014/outro.stl +share/games/supertux2/levels/halloween2014/outro.txt +share/games/supertux2/levels/halloween2014/pools.stl +share/games/supertux2/levels/halloween2014/worldmap.stwm +share/games/supertux2/levels/incubator/ar.po +share/games/supertux2/levels/incubator/az.po +share/games/supertux2/levels/incubator/be.po +share/games/supertux2/levels/incubator/bg.po +share/games/supertux2/levels/incubator/ca.po share/games/supertux2/levels/incubator/cave_run.stl share/games/supertux2/levels/incubator/cherry_frosting.stl -share/games/supertux2/levels/incubator/crystal_beauty.stl -share/games/supertux2/levels/incubator/crystal_cataclysm.stl +share/games/supertux2/levels/incubator/cmn.po +share/games/supertux2/levels/incubator/cs.po share/games/supertux2/levels/incubator/cube_garden.stl +share/games/supertux2/levels/incubator/da.po +share/games/supertux2/levels/incubator/de.po +share/games/supertux2/levels/incubator/el.po +share/games/supertux2/levels/incubator/eo.po +share/games/supertux2/levels/incubator/es.po +share/games/supertux2/levels/incubator/et.po +share/games/supertux2/levels/incubator/fi.po share/games/supertux2/levels/incubator/fr.po +share/games/supertux2/levels/incubator/hi_IN.po +share/games/supertux2/levels/incubator/hr.po +share/games/supertux2/levels/incubator/hu.po share/games/supertux2/levels/incubator/info +share/games/supertux2/levels/incubator/into_dark.stl +share/games/supertux2/levels/incubator/it.po +share/games/supertux2/levels/incubator/ja.po share/games/supertux2/levels/incubator/jagged_path.stl +share/games/supertux2/levels/incubator/km.po +share/games/supertux2/levels/incubator/ko.po +share/games/supertux2/levels/incubator/lt.po +share/games/supertux2/levels/incubator/ml.po share/games/supertux2/levels/incubator/nb.po +share/games/supertux2/levels/incubator/ne.po +share/games/supertux2/levels/incubator/nl.po share/games/supertux2/levels/incubator/nn.po share/games/supertux2/levels/incubator/not_so_long.stl -share/games/supertux2/levels/incubator/over_the_ocean.stl -share/games/supertux2/levels/incubator/pinksnow.stl +share/games/supertux2/levels/incubator/pl.po +share/games/supertux2/levels/incubator/primed.stl share/games/supertux2/levels/incubator/pt.po share/games/supertux2/levels/incubator/pt_BR.po -share/games/supertux2/levels/incubator/snowy_hill.stl +share/games/supertux2/levels/incubator/ro.po +share/games/supertux2/levels/incubator/ru.po +share/games/supertux2/levels/incubator/sk.po +share/games/supertux2/levels/incubator/sl.po +share/games/supertux2/levels/incubator/sr.po +share/games/supertux2/levels/incubator/sv.po +share/games/supertux2/levels/incubator/tr.po +share/games/supertux2/levels/incubator/uk.po +share/games/supertux2/levels/incubator/uz.po +share/games/supertux2/levels/incubator/vi.po share/games/supertux2/levels/incubator/worldmap.stwm +share/games/supertux2/levels/incubator/zh_CN.po +share/games/supertux2/levels/incubator/zh_TW.po share/games/supertux2/levels/misc/da.po share/games/supertux2/levels/misc/hu.po share/games/supertux2/levels/misc/menu.stl @@ -1769,13 +2224,16 @@ share/games/supertux2/levels/test/decal.stl share/games/supertux2/levels/test/default.nut share/games/supertux2/levels/test/doortest.stl share/games/supertux2/levels/test/forestkeep.stl +share/games/supertux2/levels/test/glow_effects.stl share/games/supertux2/levels/test/haywire.stl share/games/supertux2/levels/test/icecrusher.stl +share/games/supertux2/levels/test/icefreezetest.stl share/games/supertux2/levels/test/icetest.stl share/games/supertux2/levels/test/info share/games/supertux2/levels/test/intro2.stl share/games/supertux2/levels/test/kugelblitz.stl share/games/supertux2/levels/test/light.stl +share/games/supertux2/levels/test/lightmap.stl share/games/supertux2/levels/test/magicblocks.stl share/games/supertux2/levels/test/menutest.stl share/games/supertux2/levels/test/nb.po @@ -1887,35 +2345,62 @@ share/games/supertux2/levels/world1/25 - Arctic Ruins.stl share/games/supertux2/levels/world1/26 - The Castle of Nolok.stl share/games/supertux2/levels/world1/27 - No More Mr Ice Guy.stl share/games/supertux2/levels/world1/Fork_in_the_Road.stl +share/games/supertux2/levels/world1/ar.po +share/games/supertux2/levels/world1/az.po +share/games/supertux2/levels/world1/be.po +share/games/supertux2/levels/world1/bg.po share/games/supertux2/levels/world1/bonus.stl share/games/supertux2/levels/world1/ca.po +share/games/supertux2/levels/world1/cmn.po share/games/supertux2/levels/world1/cs.po share/games/supertux2/levels/world1/da.po share/games/supertux2/levels/world1/de.po +share/games/supertux2/levels/world1/el.po +share/games/supertux2/levels/world1/eo.po share/games/supertux2/levels/world1/es.po -share/games/supertux2/levels/world1/extro.txt +share/games/supertux2/levels/world1/et.po share/games/supertux2/levels/world1/fi.po share/games/supertux2/levels/world1/fr.po +share/games/supertux2/levels/world1/hi_IN.po +share/games/supertux2/levels/world1/hr.po share/games/supertux2/levels/world1/hu.po share/games/supertux2/levels/world1/info share/games/supertux2/levels/world1/intro.nut share/games/supertux2/levels/world1/intro.stl -share/games/supertux2/levels/world1/intro.txt +share/games/supertux2/levels/world1/it.po +share/games/supertux2/levels/world1/ja.po +share/games/supertux2/levels/world1/km.po +share/games/supertux2/levels/world1/ko.po share/games/supertux2/levels/world1/lt.po +share/games/supertux2/levels/world1/ml.po share/games/supertux2/levels/world1/nb.po +share/games/supertux2/levels/world1/ne.po +share/games/supertux2/levels/world1/nl.po share/games/supertux2/levels/world1/nn.po +share/games/supertux2/levels/world1/pl.po share/games/supertux2/levels/world1/pt.po share/games/supertux2/levels/world1/pt_BR.po share/games/supertux2/levels/world1/ro.po share/games/supertux2/levels/world1/ru.po +share/games/supertux2/levels/world1/sk.po share/games/supertux2/levels/world1/sl.po +share/games/supertux2/levels/world1/sr.po share/games/supertux2/levels/world1/sv.po +share/games/supertux2/levels/world1/tr.po +share/games/supertux2/levels/world1/uk.po share/games/supertux2/levels/world1/underground.nut -share/games/supertux2/levels/world1/world.nut +share/games/supertux2/levels/world1/uz.po +share/games/supertux2/levels/world1/vi.po share/games/supertux2/levels/world1/worldmap.stwm share/games/supertux2/levels/world1/zh_CN.po +share/games/supertux2/levels/world1/zh_TW.po share/games/supertux2/levels/world2/Crumbling_Path.stl +share/games/supertux2/levels/world2/Mtn_Pass.stl share/games/supertux2/levels/world2/airkey.stl +share/games/supertux2/levels/world2/ar.po +share/games/supertux2/levels/world2/az.po +share/games/supertux2/levels/world2/be.po +share/games/supertux2/levels/world2/bg.po share/games/supertux2/levels/world2/builder.stl share/games/supertux2/levels/world2/ca.po share/games/supertux2/levels/world2/castle.stl @@ -1933,6 +2418,7 @@ share/games/supertux2/levels/world2/christophB.stl share/games/supertux2/levels/world2/christophC.stl share/games/supertux2/levels/world2/christophD.stl share/games/supertux2/levels/world2/christophE.stl +share/games/supertux2/levels/world2/cmn.po share/games/supertux2/levels/world2/cs.po share/games/supertux2/levels/world2/da.po share/games/supertux2/levels/world2/dan_morial.stl @@ -1943,21 +2429,29 @@ share/games/supertux2/levels/world2/dfk-level1.stl share/games/supertux2/levels/world2/dfk-level2.stl share/games/supertux2/levels/world2/dfk-level3.stl share/games/supertux2/levels/world2/dfk-placeholder-1.stl +share/games/supertux2/levels/world2/el.po +share/games/supertux2/levels/world2/eo.po share/games/supertux2/levels/world2/es.po +share/games/supertux2/levels/world2/et.po share/games/supertux2/levels/world2/fi.po share/games/supertux2/levels/world2/fish.stl share/games/supertux2/levels/world2/forest1-grumbel.stl share/games/supertux2/levels/world2/fr.po share/games/supertux2/levels/world2/ghostly.stl +share/games/supertux2/levels/world2/hi_IN.po +share/games/supertux2/levels/world2/hr.po share/games/supertux2/levels/world2/hu.po share/games/supertux2/levels/world2/info share/games/supertux2/levels/world2/it.po +share/games/supertux2/levels/world2/ja.po share/games/supertux2/levels/world2/key1.stl share/games/supertux2/levels/world2/key2.stl share/games/supertux2/levels/world2/key3.stl share/games/supertux2/levels/world2/key4.stl share/games/supertux2/levels/world2/key5.stl share/games/supertux2/levels/world2/keystodoor.stl +share/games/supertux2/levels/world2/km.po +share/games/supertux2/levels/world2/ko.po share/games/supertux2/levels/world2/leaves.stl share/games/supertux2/levels/world2/level1.stl share/games/supertux2/levels/world2/level2.stl @@ -1966,32 +2460,57 @@ share/games/supertux2/levels/world2/level5.stl share/games/supertux2/levels/world2/level6.stl share/games/supertux2/levels/world2/light+magic.stl share/games/supertux2/levels/world2/lt.po +share/games/supertux2/levels/world2/ml.po share/games/supertux2/levels/world2/nb.po +share/games/supertux2/levels/world2/ne.po +share/games/supertux2/levels/world2/nl.po share/games/supertux2/levels/world2/nn.po share/games/supertux2/levels/world2/owls_revenge.stl +share/games/supertux2/levels/world2/pl.po share/games/supertux2/levels/world2/pt.po share/games/supertux2/levels/world2/pt_BR.po share/games/supertux2/levels/world2/ro.po share/games/supertux2/levels/world2/ru.po share/games/supertux2/levels/world2/shocking.stl +share/games/supertux2/levels/world2/sk.po share/games/supertux2/levels/world2/sl.po +share/games/supertux2/levels/world2/sr.po share/games/supertux2/levels/world2/sv.po +share/games/supertux2/levels/world2/tr.po share/games/supertux2/levels/world2/trees.stl +share/games/supertux2/levels/world2/uk.po share/games/supertux2/levels/world2/underconstruction.stl share/games/supertux2/levels/world2/updown.stl +share/games/supertux2/levels/world2/uz.po +share/games/supertux2/levels/world2/vi.po share/games/supertux2/levels/world2/village.stl share/games/supertux2/levels/world2/worldmap.stwm share/games/supertux2/levels/world2/zh_CN.po +share/games/supertux2/levels/world2/zh_TW.po +share/games/supertux2/locale/ar.po +share/games/supertux2/locale/az.po +share/games/supertux2/locale/be.po +share/games/supertux2/locale/bg.po share/games/supertux2/locale/ca.po +share/games/supertux2/locale/cmn.po share/games/supertux2/locale/cs.po share/games/supertux2/locale/da.po share/games/supertux2/locale/de.po +share/games/supertux2/locale/el.po +share/games/supertux2/locale/eo.po share/games/supertux2/locale/es.po +share/games/supertux2/locale/et.po share/games/supertux2/locale/fi.po share/games/supertux2/locale/fr.po +share/games/supertux2/locale/hi_IN.po +share/games/supertux2/locale/hr.po share/games/supertux2/locale/hu.po share/games/supertux2/locale/it.po +share/games/supertux2/locale/ja.po +share/games/supertux2/locale/km.po +share/games/supertux2/locale/ko.po share/games/supertux2/locale/lt.po +share/games/supertux2/locale/ml.po share/games/supertux2/locale/nb.po share/games/supertux2/locale/ne.po share/games/supertux2/locale/nl.po @@ -2001,11 +2520,16 @@ share/games/supertux2/locale/pt.po share/games/supertux2/locale/pt_BR.po share/games/supertux2/locale/ro.po share/games/supertux2/locale/ru.po +share/games/supertux2/locale/sk.po share/games/supertux2/locale/sl.po +share/games/supertux2/locale/sr.po share/games/supertux2/locale/sv.po share/games/supertux2/locale/tr.po share/games/supertux2/locale/uk.po +share/games/supertux2/locale/uz.po +share/games/supertux2/locale/vi.po share/games/supertux2/locale/zh_CN.po +share/games/supertux2/locale/zh_TW.po share/games/supertux2/music/airship_remix.music share/games/supertux2/music/airship_remix.ogg share/games/supertux2/music/battle_theme.music @@ -2057,6 +2581,8 @@ share/games/supertux2/scripts/default.nut share/games/supertux2/sounds/bigjump.wav share/games/supertux2/sounds/brick.wav share/games/supertux2/sounds/coin.wav +share/games/supertux2/sounds/coin2.ogg +share/games/supertux2/sounds/cracking.wav share/games/supertux2/sounds/dartfire.wav share/games/supertux2/sounds/darthit.wav share/games/supertux2/sounds/door.wav @@ -2064,14 +2590,18 @@ share/games/supertux2/sounds/empty.wav share/games/supertux2/sounds/explosion.wav share/games/supertux2/sounds/fall.wav share/games/supertux2/sounds/fire-flower.wav +share/games/supertux2/sounds/firecracker.ogg share/games/supertux2/sounds/fireworks.wav share/games/supertux2/sounds/fizz.wav share/games/supertux2/sounds/flame.wav share/games/supertux2/sounds/flip.wav +share/games/supertux2/sounds/flop.ogg share/games/supertux2/sounds/grow.ogg +share/games/supertux2/sounds/grunts.ogg share/games/supertux2/sounds/hop.ogg share/games/supertux2/sounds/hurt.wav share/games/supertux2/sounds/iceblock_bump.wav +share/games/supertux2/sounds/icecrash.ogg share/games/supertux2/sounds/invincible_start.ogg share/games/supertux2/sounds/jump.wav share/games/supertux2/sounds/kick.wav @@ -2084,12 +2614,17 @@ share/games/supertux2/sounds/mr_tree.ogg share/games/supertux2/sounds/mr_treehit.ogg share/games/supertux2/sounds/normalize.sh share/games/supertux2/sounds/phone.wav +share/games/supertux2/sounds/pop.ogg +share/games/supertux2/sounds/pshit.ogg share/games/supertux2/sounds/rain.wav share/games/supertux2/sounds/savebell2.wav +share/games/supertux2/sounds/savebell_low.wav share/games/supertux2/sounds/saw.wav share/games/supertux2/sounds/shoot.wav +share/games/supertux2/sounds/sizzle.ogg share/games/supertux2/sounds/skid.wav share/games/supertux2/sounds/splash.ogg +share/games/supertux2/sounds/splash.wav share/games/supertux2/sounds/splat.wav share/games/supertux2/sounds/squish.wav share/games/supertux2/sounds/stomp.wav