Received: by mail.netbsd.org (Postfix, from userid 605) id DA8D584D84; Mon, 1 Jul 2019 15:13:25 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6055B84CD4 for ; Mon, 1 Jul 2019 15:13:25 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 0ndqHtnpY5ij for ; Mon, 1 Jul 2019 15:13:20 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id A000F84CD3 for ; Mon, 1 Jul 2019 15:13:20 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 97C5DFBF4; Mon, 1 Jul 2019 15:13:20 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1561994000182880" MIME-Version: 1.0 Date: Mon, 1 Jul 2019 15:13:20 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/games/supertux To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20190701151320.97C5DFBF4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1561994000182880 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" Module Name: pkgsrc Committed By: nia Date: Mon Jul 1 15:13:20 UTC 2019 Modified Files: pkgsrc/games/supertux: Makefile PLIST distinfo Added Files: pkgsrc/games/supertux/patches: patch-external_SDL__ttf_configure patch-external_physfs_src_physfs__platform__unix.c patch-external_squirrel_CMakeLists.txt patch-src_supertux_main.cpp Log Message: supertux: Update to 0.6.0 - Complete redesign of the icy world and forest world (Thank you, RustyBox and Serano) - Complete revamp of our rendering engine, the game should be much faster than it was previously - We now support OpenGL 3.3 Core as well as OpenGL ES 2.0, thus allowing SuperTux to be run on the Raspberry Pi, and potentially WebGL. - Support for right-to-left languages through vector fonts. This will also fix a few non-ASCII characters, which often caused problems before in translations - A lot of other under-the-hood changes and bugfixes A few graphics have been updated, and effects have been added: - The save bell was reworked (Thanks to Raghavendra “raghukamath” Kamath!) - Improved big Tux graphics and animations (Thanks to Alzter) - Various effects and shaders (Thanks to Grumbel) To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 pkgsrc/games/supertux/Makefile cvs rdiff -u -r1.1 -r1.2 pkgsrc/games/supertux/PLIST \ pkgsrc/games/supertux/distinfo cvs rdiff -u -r0 -r1.1 \ pkgsrc/games/supertux/patches/patch-external_SDL__ttf_configure \ pkgsrc/games/supertux/patches/patch-external_physfs_src_physfs__platform__unix.c \ pkgsrc/games/supertux/patches/patch-external_squirrel_CMakeLists.txt \ pkgsrc/games/supertux/patches/patch-src_supertux_main.cpp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1561994000182880 Content-Disposition: inline Content-Length: 82686 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/games/supertux/Makefile diff -u pkgsrc/games/supertux/Makefile:1.13 pkgsrc/games/supertux/Makefile:1.14 --- pkgsrc/games/supertux/Makefile:1.13 Mon Jul 1 04:08:17 2019 +++ pkgsrc/games/supertux/Makefile Mon Jul 1 15:13:20 2019 @@ -1,38 +1,33 @@ -# $NetBSD: Makefile,v 1.13 2019/07/01 04:08:17 ryoon Exp $ +# $NetBSD: Makefile,v 1.14 2019/07/01 15:13:20 nia Exp $ -DISTNAME= supertux-0.4.0 -PKGREVISION= 10 +PKGNAME= supertux-0.6.0 +DISTNAME= SuperTux-v${PKGVERSION_NOREV}-Source CATEGORIES= games MASTER_SITES= ${MASTER_SITE_GITHUB:=SuperTux/} GITHUB_RELEASE= v${PKGVERSION_NOREV} -EXTRACT_SUFX= .tar.bz2 MAINTAINER= hernani@vecirex.net -HOMEPAGE= http://supertux.lethargik.org/ +HOMEPAGE= https://www.supertux.org/ COMMENT= 2D jump\'n run game in the style of the Super Mario ones LICENSE= gnu-gpl-v2 -WRKSRC= ${WRKDIR}/${PKGNAME_NOREV} - USE_CMAKE= yes CMAKE_ARGS+= -DINSTALL_SUBDIR_BIN=bin CMAKE_ARGS+= -DBUILD_SHARED_LIBS=off USE_TOOLS+= gmake pkg-config USE_LANGUAGES= c c++ -CFLAGS+= -I${BUILDLINK_DIR}/include/AL -LDFLAGS+= -L${BUILDLINK_DIR}/lib ${COMPILER_RPATH_FLAG}${BUILDLINK_DIR}/lib - -.include "../../sysutils/desktop-file-utils/desktopdb.mk" -.include "../../audio/openal-soft/buildlink3.mk" .include "../../audio/libvorbis/buildlink3.mk" +.include "../../audio/openal-soft/buildlink3.mk" .include "../../devel/boost-libs/buildlink3.mk" -.include "../../devel/gettext-lib/buildlink3.mk" .include "../../devel/SDL2/buildlink3.mk" .include "../../devel/physfs/buildlink3.mk" -.include "../../audio/SDL2_mixer/buildlink3.mk" -.include "../../graphics/SDL2_image/buildlink3.mk" +.include "../../graphics/freetype2/buildlink3.mk" +.include "../../graphics/hicolor-icon-theme/buildlink3.mk" .include "../../graphics/glew/buildlink3.mk" .include "../../graphics/glu/buildlink3.mk" +.include "../../graphics/MesaLib/buildlink3.mk" +.include "../../graphics/png/buildlink3.mk" +.include "../../graphics/SDL2_image/buildlink3.mk" .include "../../www/curl/buildlink3.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/games/supertux/PLIST diff -u pkgsrc/games/supertux/PLIST:1.1 pkgsrc/games/supertux/PLIST:1.2 --- pkgsrc/games/supertux/PLIST:1.1 Wed Sep 14 16:24:26 2016 +++ pkgsrc/games/supertux/PLIST Mon Jul 1 15:13:20 2019 @@ -1,31 +1,20 @@ -@comment $NetBSD: PLIST,v 1.1 2016/09/14 16:24:26 maya Exp $ +@comment $NetBSD: PLIST,v 1.2 2019/07/01 15:13:20 nia Exp $ bin/supertux2 -include/tinygettext/dictionary.hpp -include/tinygettext/dictionary_manager.hpp -include/tinygettext/file_system.hpp -include/tinygettext/iconv.hpp -include/tinygettext/language.hpp -include/tinygettext/log.hpp -include/tinygettext/log_stream.hpp -include/tinygettext/plural_forms.hpp -include/tinygettext/po_parser.hpp -include/tinygettext/tinygettext.hpp -include/tinygettext/unix_file_system.hpp -lib/libsquirrel.a -lib/libtinygettext.a -lib/pkgconfig/tinygettext.pc -share/appdata/supertux2.appdata.xml share/applications/supertux2.desktop share/doc/supertux2/INSTALL.md share/doc/supertux2/LICENSE.txt share/doc/supertux2/NEWS.md share/doc/supertux2/README.md -share/games/supertux2/credits.txt +share/games/supertux2/credits.stxt 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/NotoSansCJKjp-Medium.otf +share/games/supertux2/fonts/NotoSansDevanagari-Medium.ttf +share/games/supertux2/fonts/NotoSansHebrew-Medium.ttf share/games/supertux2/fonts/README +share/games/supertux2/fonts/SuperTux-Medium.ttf share/games/supertux2/fonts/andale10.stf share/games/supertux2/fonts/andale12.stf share/games/supertux2/fonts/ara-white-big.stf @@ -52,6 +41,7 @@ share/games/supertux2/images/background/ share/games/supertux2/images/background/BlueRock_Forest/blue-top.jpg share/games/supertux2/images/background/BlueRock_Forest/rolling-bottom.jpg share/games/supertux2/images/background/BlueRock_Forest/rolling-middle.jpg +share/games/supertux2/images/background/BlueRock_Forest/rolling-para.png share/games/supertux2/images/background/arcticskies1.png share/games/supertux2/images/background/arcticskies2.png share/games/supertux2/images/background/arcticskies3.png @@ -66,9 +56,13 @@ share/games/supertux2/images/background/ share/games/supertux2/images/background/arctis_para3.png share/games/supertux2/images/background/arctis_top.jpg share/games/supertux2/images/background/black_800px.png +share/games/supertux2/images/background/block-snow-background.png +share/games/supertux2/images/background/block-snow-midground.png +share/games/supertux2/images/background/block-snow-top.png share/games/supertux2/images/background/bluemountain-bottom.png share/games/supertux2/images/background/bluemountain-middle.png share/games/supertux2/images/background/bluemountain-top.png +share/games/supertux2/images/background/bluemountain2.png share/games/supertux2/images/background/bridgecloud-dark.png share/games/supertux2/images/background/bridgecloud-light.png share/games/supertux2/images/background/bridgeocean-fade.png @@ -76,20 +70,40 @@ share/games/supertux2/images/background/ share/games/supertux2/images/background/bridgeocean-original.png share/games/supertux2/images/background/castle_foreground.png share/games/supertux2/images/background/cave2.jpg +share/games/supertux2/images/background/cloud-mountains-background.png +share/games/supertux2/images/background/cloud-mountains-bottom.png +share/games/supertux2/images/background/cloud-mountains-forground.png +share/games/supertux2/images/background/cloud-mountains-midground.png +share/games/supertux2/images/background/darkcave-background.png +share/games/supertux2/images/background/darkcave-middle.png +share/games/supertux2/images/background/darkcave-preview.png +share/games/supertux2/images/background/darkcave-top_and_bottom.png +share/games/supertux2/images/background/darkcavemidground-middle.png +share/games/supertux2/images/background/darkcavemidground-top_and_bottom.png share/games/supertux2/images/background/extro.jpg share/games/supertux2/images/background/fog.png share/games/supertux2/images/background/forest1.jpg share/games/supertux2/images/background/forest2.jpg +share/games/supertux2/images/background/forest2_para.png 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/ghostforest_para.png +share/games/supertux2/images/background/grid.png +share/games/supertux2/images/background/grid.surface 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/heatshimmer-displacement.png +share/games/supertux2/images/background/heatshimmer.png +share/games/supertux2/images/background/heatshimmer.surface +share/games/supertux2/images/background/icecliffs/icecliffs-bottom.png +share/games/supertux2/images/background/icecliffs/icecliffs-middle.png +share/games/supertux2/images/background/icecliffs/icecliffs-top.png share/games/supertux2/images/background/leaves.png share/games/supertux2/images/background/nightsky.png share/games/supertux2/images/background/nightsky_bottom.png @@ -100,6 +114,10 @@ share/games/supertux2/images/background/ share/games/supertux2/images/background/oiltux.jpg share/games/supertux2/images/background/semi_arctic.jpg share/games/supertux2/images/background/snowcastle.png +share/games/supertux2/images/background/snowmountains/snowmountains-top.png +share/games/supertux2/images/background/snowmountains/snowmountains.png +share/games/supertux2/images/background/snowtrees.png +share/games/supertux2/images/background/snowtrees_back.png share/games/supertux2/images/background/transparent_up.png share/games/supertux2/images/creatures/angrystone/angrystone.sprite share/games/supertux2/images/creatures/angrystone/attacking-0.png @@ -139,6 +157,7 @@ share/games/supertux2/images/creatures/d share/games/supertux2/images/creatures/dispenser/dropper-frozen.png share/games/supertux2/images/creatures/dispenser/dropper.png share/games/supertux2/images/creatures/dispenser/frozen.png +share/games/supertux2/images/creatures/dispenser/invisible.png share/games/supertux2/images/creatures/dispenser/swivel-left.png share/games/supertux2/images/creatures/dispenser/swivel-right.png share/games/supertux2/images/creatures/dispenser/working.png @@ -225,6 +244,7 @@ share/games/supertux2/images/creatures/g share/games/supertux2/images/creatures/ghosttree/ghosttree-swallow-3.png share/games/supertux2/images/creatures/ghosttree/ghosttree.png share/games/supertux2/images/creatures/ghosttree/ghosttree.sprite +share/games/supertux2/images/creatures/ghosttree/ghosttree_dust_wm_0.png share/games/supertux2/images/creatures/ghosttree/root-base-0.png share/games/supertux2/images/creatures/ghosttree/root-base-1.png share/games/supertux2/images/creatures/ghosttree/root-base-2.png @@ -232,6 +252,10 @@ share/games/supertux2/images/creatures/g 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/ghosttree/worldmap_1.png +share/games/supertux2/images/creatures/ghosttree/worldmap_2.png +share/games/supertux2/images/creatures/ghosttree/worldmap_3.png +share/games/supertux2/images/creatures/ghosttree/worldmap_4.png 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 @@ -265,6 +289,20 @@ share/games/supertux2/images/creatures/i 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/icecrusher/moss_crusher.png +share/games/supertux2/images/creatures/icecrusher/moss_crusher.sprite +share/games/supertux2/images/creatures/icecrusher/moss_crusher_hit.png +share/games/supertux2/images/creatures/icecrusher/moss_crusher_recovering_0.png +share/games/supertux2/images/creatures/icecrusher/moss_crusher_recovering_1.png +share/games/supertux2/images/creatures/icecrusher/moss_crusher_recovering_2.png +share/games/supertux2/images/creatures/icecrusher/moss_crusher_recovering_3.png +share/games/supertux2/images/creatures/icecrusher/rock_crusher.png +share/games/supertux2/images/creatures/icecrusher/rock_crusher.sprite +share/games/supertux2/images/creatures/icecrusher/rock_crusher_hit.png +share/games/supertux2/images/creatures/icecrusher/rock_crusher_recovering_0.png +share/games/supertux2/images/creatures/icecrusher/rock_crusher_recovering_1.png +share/games/supertux2/images/creatures/icecrusher/rock_crusher_recovering_2.png +share/games/supertux2/images/creatures/icecrusher/rock_crusher_recovering_3.png share/games/supertux2/images/creatures/igel/burning-0.png share/games/supertux2/images/creatures/igel/burning-1.png share/games/supertux2/images/creatures/igel/burning-2.png @@ -333,6 +371,21 @@ share/games/supertux2/images/creatures/k 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/leafshot/burning-0.png +share/games/supertux2/images/creatures/leafshot/burning-1.png +share/games/supertux2/images/creatures/leafshot/burning-2.png +share/games/supertux2/images/creatures/leafshot/burning-3.png +share/games/supertux2/images/creatures/leafshot/burning-4.png +share/games/supertux2/images/creatures/leafshot/burning-5.png +share/games/supertux2/images/creatures/leafshot/burning-6.png +share/games/supertux2/images/creatures/leafshot/burning-7.png +share/games/supertux2/images/creatures/leafshot/collision.png +share/games/supertux2/images/creatures/leafshot/frozen.png +share/games/supertux2/images/creatures/leafshot/leafshot.sprite +share/games/supertux2/images/creatures/leafshot/left-1.png +share/games/supertux2/images/creatures/leafshot/left-2.png +share/games/supertux2/images/creatures/leafshot/left-3.png +share/games/supertux2/images/creatures/leafshot/left-4.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 @@ -427,10 +480,6 @@ share/games/supertux2/images/creatures/m share/games/supertux2/images/creatures/mr_cherry/sparkle-4.png share/games/supertux2/images/creatures/mr_cherry/sparkle-5.png share/games/supertux2/images/creatures/mr_cherry/sparkle-6.png -share/games/supertux2/images/creatures/mr_fluffy/left-0.png -share/games/supertux2/images/creatures/mr_fluffy/left-1.png -share/games/supertux2/images/creatures/mr_fluffy/left-2.png -share/games/supertux2/images/creatures/mr_fluffy/squished-left.png share/games/supertux2/images/creatures/mr_iceblock/flat-left.png share/games/supertux2/images/creatures/mr_iceblock/gmelting-0.png share/games/supertux2/images/creatures/mr_iceblock/gmelting-1.png @@ -459,6 +508,20 @@ share/games/supertux2/images/creatures/m share/games/supertux2/images/creatures/mr_iceblock/smart_block/melting-2.png share/games/supertux2/images/creatures/mr_iceblock/smart_block/melting-3.png share/games/supertux2/images/creatures/mr_iceblock/smart_block/smart_block.sprite +share/games/supertux2/images/creatures/mr_iceblock/smart_block/waking-left-0.png +share/games/supertux2/images/creatures/mr_iceblock/smart_block/waking-left-1.png +share/games/supertux2/images/creatures/mr_iceblock/smart_block/waking-left-2.png +share/games/supertux2/images/creatures/mr_iceblock/smart_block/waking-left-3.png +share/games/supertux2/images/creatures/mr_iceblock/smart_block/waking-left-4.png +share/games/supertux2/images/creatures/mr_iceblock/smart_block/waking-left-5.png +share/games/supertux2/images/creatures/mr_iceblock/smart_block/waking-left-6.png +share/games/supertux2/images/creatures/mr_iceblock/waking-left-0.png +share/games/supertux2/images/creatures/mr_iceblock/waking-left-1.png +share/games/supertux2/images/creatures/mr_iceblock/waking-left-2.png +share/games/supertux2/images/creatures/mr_iceblock/waking-left-3.png +share/games/supertux2/images/creatures/mr_iceblock/waking-left-4.png +share/games/supertux2/images/creatures/mr_iceblock/waking-left-5.png +share/games/supertux2/images/creatures/mr_iceblock/waking-left-6.png share/games/supertux2/images/creatures/mr_tree/burning-0.png share/games/supertux2/images/creatures/mr_tree/burning-1.png share/games/supertux2/images/creatures/mr_tree/burning-10.png @@ -735,9 +798,16 @@ share/games/supertux2/images/creatures/s share/games/supertux2/images/creatures/spike/down.png share/games/supertux2/images/creatures/spike/left.png share/games/supertux2/images/creatures/spike/right.png +share/games/supertux2/images/creatures/spike/spikedown.png share/games/supertux2/images/creatures/spike/spikedown.sprite +share/games/supertux2/images/creatures/spike/spikedown2.png share/games/supertux2/images/creatures/spike/spikedown2.sprite +share/games/supertux2/images/creatures/spike/spikeleft.png +share/games/supertux2/images/creatures/spike/spikeleft2.png +share/games/supertux2/images/creatures/spike/spikeright.png +share/games/supertux2/images/creatures/spike/spikeright2.png share/games/supertux2/images/creatures/spike/spikeup.png +share/games/supertux2/images/creatures/spike/spikeup2.png share/games/supertux2/images/creatures/spike/up.png share/games/supertux2/images/creatures/spiky/gear-cracked.png share/games/supertux2/images/creatures/spiky/gear.png @@ -778,21 +848,41 @@ share/games/supertux2/images/creatures/t share/games/supertux2/images/creatures/totem/walking2.png share/games/supertux2/images/creatures/totem/walking3.png share/games/supertux2/images/creatures/totem/walking4.png +share/games/supertux2/images/creatures/tumbleweed/tumbleweed.sprite 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/air/hat/backflip.png +share/games/supertux2/images/creatures/tux/air/hat/buttjump-0.png +share/games/supertux2/images/creatures/tux/air/hat/buttjump-1.png +share/games/supertux2/images/creatures/tux/air/hat/buttjump-2.png +share/games/supertux2/images/creatures/tux/air/hat/buttjump-3.png +share/games/supertux2/images/creatures/tux/air/hat/buttjump-4.png +share/games/supertux2/images/creatures/tux/air/hat/buttjump-5.png +share/games/supertux2/images/creatures/tux/air/hat/buttjump-6.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-0.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/air/hat/walk-2.png +share/games/supertux2/images/creatures/tux/air/hat/walk-3.png +share/games/supertux2/images/creatures/tux/air/hat/walk-4.png +share/games/supertux2/images/creatures/tux/air/hat/walk-5.png +share/games/supertux2/images/creatures/tux/air/hat/walk-6.png +share/games/supertux2/images/creatures/tux/air/hat/walk-7.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/buttjump-1.png +share/games/supertux2/images/creatures/tux/big/buttjump-2.png +share/games/supertux2/images/creatures/tux/big/buttjump-3.png +share/games/supertux2/images/creatures/tux/big/buttjump-4.png +share/games/supertux2/images/creatures/tux/big/buttjump-5.png +share/games/supertux2/images/creatures/tux/big/buttjump-6.png share/games/supertux2/images/creatures/tux/big/duck-0.png share/games/supertux2/images/creatures/tux/big/idle-0.png share/games/supertux2/images/creatures/tux/big/idle-1.png @@ -810,15 +900,30 @@ share/games/supertux2/images/creatures/t 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/big/walk-6.png +share/games/supertux2/images/creatures/tux/big/walk-7.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/buttjump-0.png +share/games/supertux2/images/creatures/tux/earth/hardhat/buttjump-1.png +share/games/supertux2/images/creatures/tux/earth/hardhat/buttjump-2.png +share/games/supertux2/images/creatures/tux/earth/hardhat/buttjump-3.png +share/games/supertux2/images/creatures/tux/earth/hardhat/buttjump-4.png +share/games/supertux2/images/creatures/tux/earth/hardhat/buttjump-5.png +share/games/supertux2/images/creatures/tux/earth/hardhat/buttjump-6.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/hardhat/walk-2.png +share/games/supertux2/images/creatures/tux/earth/hardhat/walk-3.png +share/games/supertux2/images/creatures/tux/earth/hardhat/walk-4.png +share/games/supertux2/images/creatures/tux/earth/hardhat/walk-5.png +share/games/supertux2/images/creatures/tux/earth/hardhat/walk-6.png +share/games/supertux2/images/creatures/tux/earth/hardhat/walk-7.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 @@ -842,11 +947,24 @@ share/games/supertux2/images/creatures/t 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/buttjump-0.png +share/games/supertux2/images/creatures/tux/fire/santa_cap/buttjump-1.png +share/games/supertux2/images/creatures/tux/fire/santa_cap/buttjump-2.png +share/games/supertux2/images/creatures/tux/fire/santa_cap/buttjump-3.png +share/games/supertux2/images/creatures/tux/fire/santa_cap/buttjump-4.png +share/games/supertux2/images/creatures/tux/fire/santa_cap/buttjump-5.png +share/games/supertux2/images/creatures/tux/fire/santa_cap/buttjump-6.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/santa_cap/walk-2.png +share/games/supertux2/images/creatures/tux/fire/santa_cap/walk-3.png +share/games/supertux2/images/creatures/tux/fire/santa_cap/walk-4.png +share/games/supertux2/images/creatures/tux/fire/santa_cap/walk-5.png +share/games/supertux2/images/creatures/tux/fire/santa_cap/walk-6.png +share/games/supertux2/images/creatures/tux/fire/santa_cap/walk-7.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 @@ -855,6 +973,8 @@ share/games/supertux2/images/creatures/t 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/fire/walk-6.png +share/games/supertux2/images/creatures/tux/fire/walk-7.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 @@ -874,6 +994,8 @@ share/games/supertux2/images/creatures/t 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/ice/walk-6.png +share/games/supertux2/images/creatures/tux/ice/walk-7.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 @@ -893,6 +1015,22 @@ share/games/supertux2/images/creatures/t share/games/supertux2/images/creatures/tux/small/ladder-1.png share/games/supertux2/images/creatures/tux/small/ladder-2.png share/games/supertux2/images/creatures/tux/small/ladder-3.png +share/games/supertux2/images/creatures/tux/small/run-0.png +share/games/supertux2/images/creatures/tux/small/run-1.png +share/games/supertux2/images/creatures/tux/small/run-10.png +share/games/supertux2/images/creatures/tux/small/run-11.png +share/games/supertux2/images/creatures/tux/small/run-12.png +share/games/supertux2/images/creatures/tux/small/run-13.png +share/games/supertux2/images/creatures/tux/small/run-14.png +share/games/supertux2/images/creatures/tux/small/run-15.png +share/games/supertux2/images/creatures/tux/small/run-2.png +share/games/supertux2/images/creatures/tux/small/run-3.png +share/games/supertux2/images/creatures/tux/small/run-4.png +share/games/supertux2/images/creatures/tux/small/run-5.png +share/games/supertux2/images/creatures/tux/small/run-6.png +share/games/supertux2/images/creatures/tux/small/run-7.png +share/games/supertux2/images/creatures/tux/small/run-8.png +share/games/supertux2/images/creatures/tux/small/run-9.png share/games/supertux2/images/creatures/tux/small/skid-0.png share/games/supertux2/images/creatures/tux/small/stand-0.png share/games/supertux2/images/creatures/tux/small/walk-0.png @@ -1009,6 +1147,7 @@ share/games/supertux2/images/decal/expla 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-pickrock.png share/games/supertux2/images/decal/explanations/billboard-plant.png share/games/supertux2/images/decal/explanations/billboard-resetpoint.png share/games/supertux2/images/decal/explanations/billboard-runjump.png @@ -1020,13 +1159,20 @@ share/games/supertux2/images/decal/hallo 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/misc/Antena2.png +share/games/supertux2/images/decal/misc/heatshimmer-displacement.png +share/games/supertux2/images/decal/misc/heatshimmer.png +share/games/supertux2/images/decal/misc/heatshimmer.sprite 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/decal/snow/exitbg.png +share/games/supertux2/images/decal/snow/exitfg.png share/games/supertux2/images/engine/console.jpg share/games/supertux2/images/engine/console.png share/games/supertux2/images/engine/console2.png share/games/supertux2/images/engine/editor/README +share/games/supertux2/images/engine/editor/ambient_light.png share/games/supertux2/images/engine/editor/ambientsound.png share/games/supertux2/images/engine/editor/arrow.png share/games/supertux2/images/engine/editor/background.png @@ -1038,23 +1184,40 @@ share/games/supertux2/images/engine/edit share/games/supertux2/images/engine/editor/decal.png share/games/supertux2/images/engine/editor/ghostparticles.png share/games/supertux2/images/engine/editor/gradient.png +share/games/supertux2/images/engine/editor/hurtingplatform.png share/games/supertux2/images/engine/editor/infoblock.png share/games/supertux2/images/engine/editor/invisible_wall.png +share/games/supertux2/images/engine/editor/move-mode0.png +share/games/supertux2/images/engine/editor/move-mode1.png +share/games/supertux2/images/engine/editor/music.png +share/games/supertux2/images/engine/editor/objects.stoi +share/games/supertux2/images/engine/editor/path.png +share/games/supertux2/images/engine/editor/path_node.png share/games/supertux2/images/engine/editor/pneumaticplatform.png share/games/supertux2/images/engine/editor/point.png share/games/supertux2/images/engine/editor/powerup.png share/games/supertux2/images/engine/editor/rain.png +share/games/supertux2/images/engine/editor/redo.png share/games/supertux2/images/engine/editor/resetpoint.png +share/games/supertux2/images/engine/editor/rubber.png share/games/supertux2/images/engine/editor/scriptedobject.png share/games/supertux2/images/engine/editor/scripttrigger.png share/games/supertux2/images/engine/editor/secretarea.png +share/games/supertux2/images/engine/editor/select-mode0.png +share/games/supertux2/images/engine/editor/select-mode1.png +share/games/supertux2/images/engine/editor/select-mode2.png +share/games/supertux2/images/engine/editor/selection.png share/games/supertux2/images/engine/editor/sequencetrigger.png +share/games/supertux2/images/engine/editor/settings-mode0.png +share/games/supertux2/images/engine/editor/settings-mode1.png share/games/supertux2/images/engine/editor/snow.png share/games/supertux2/images/engine/editor/spawnpoint.png share/games/supertux2/images/engine/editor/spritechange.png share/games/supertux2/images/engine/editor/stalactite_yeti.png +share/games/supertux2/images/engine/editor/textarray.png share/games/supertux2/images/engine/editor/thunderstorm.png share/games/supertux2/images/engine/editor/tilemap.png +share/games/supertux2/images/engine/editor/undo.png share/games/supertux2/images/engine/editor/wind.png share/games/supertux2/images/engine/fonts/README share/games/supertux2/images/engine/fonts/andale10-shadow.png @@ -1129,14 +1292,11 @@ share/games/supertux2/images/engine/menu 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/mousecursor.sprite share/games/supertux2/images/engine/menu/score-backdrop.png share/games/supertux2/images/engine/menu/scroll-down.png share/games/supertux2/images/engine/menu/scroll-up.png share/games/supertux2/images/engine/missing.png -share/games/supertux2/images/help/rockhowto1.png -share/games/supertux2/images/help/rockhowto2-zh.png -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 @@ -1155,6 +1315,7 @@ share/games/supertux2/images/objects/bon 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/displacement.png 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 @@ -1163,7 +1324,6 @@ share/games/supertux2/images/objects/bon share/games/supertux2/images/objects/bonus_block/full-4.png share/games/supertux2/images/objects/bonus_block/hiddenbonus.sprite share/games/supertux2/images/objects/bonus_block/icedbrick.sprite -share/games/supertux2/images/objects/bonus_block/info_block.png share/games/supertux2/images/objects/bonus_block/infoblock.png share/games/supertux2/images/objects/bonus_block/infoblock.sprite share/games/supertux2/images/objects/bonus_block/invisible.png @@ -1259,6 +1419,17 @@ share/games/supertux2/images/objects/doo 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-10.png +share/games/supertux2/images/objects/explosion/explosion-11.png +share/games/supertux2/images/objects/explosion/explosion-12.png +share/games/supertux2/images/objects/explosion/explosion-2.png +share/games/supertux2/images/objects/explosion/explosion-3.png +share/games/supertux2/images/objects/explosion/explosion-4.png +share/games/supertux2/images/objects/explosion/explosion-5.png +share/games/supertux2/images/objects/explosion/explosion-6.png +share/games/supertux2/images/objects/explosion/explosion-7.png +share/games/supertux2/images/objects/explosion/explosion-8.png +share/games/supertux2/images/objects/explosion/explosion-9.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 @@ -1278,6 +1449,7 @@ share/games/supertux2/images/objects/fly 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-displacement.png share/games/supertux2/images/objects/icecube/iceslick.png share/games/supertux2/images/objects/invisible/invisible.png share/games/supertux2/images/objects/invisible/invisible.sprite @@ -1343,6 +1515,8 @@ share/games/supertux2/images/objects/lan 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/letter/letter-small.png +share/games/supertux2/images/objects/letter/letter-small.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 @@ -1389,6 +1563,7 @@ share/games/supertux2/images/objects/par share/games/supertux2/images/objects/particles/kraker.sprite share/games/supertux2/images/objects/particles/leaf-0.png share/games/supertux2/images/objects/particles/leaf.sprite +share/games/supertux2/images/objects/particles/leafshot.sprite share/games/supertux2/images/objects/particles/poisonivy-0.png share/games/supertux2/images/objects/particles/poisonivy-1.png share/games/supertux2/images/objects/particles/poisonivy-2.png @@ -1430,6 +1605,15 @@ share/games/supertux2/images/objects/par share/games/supertux2/images/objects/particles/sparkle.sprite share/games/supertux2/images/objects/particles/stomp.png share/games/supertux2/images/objects/particles/stomp.sprite +share/games/supertux2/images/objects/particles/walkingleaf-0.png +share/games/supertux2/images/objects/particles/walkingleaf-1.png +share/games/supertux2/images/objects/particles/walkingleaf-2.png +share/games/supertux2/images/objects/particles/walkingleaf-3.png +share/games/supertux2/images/objects/particles/walkingleaf.sprite +share/games/supertux2/images/objects/path/edge.png +share/games/supertux2/images/objects/path/edge.sprite +share/games/supertux2/images/objects/path/node.png +share/games/supertux2/images/objects/path/node.sprite share/games/supertux2/images/objects/platforms/big.png share/games/supertux2/images/objects/platforms/big.sprite share/games/supertux2/images/objects/platforms/icefloe.png @@ -1653,6 +1837,10 @@ share/games/supertux2/images/objects/wea share/games/supertux2/images/objects/weak_block/straw_11.png share/games/supertux2/images/objects/weak_block/straw_12.png share/games/supertux2/images/objects/weak_block/strawbox.sprite +share/games/supertux2/images/particles/ice_piece1.png +share/games/supertux2/images/particles/ice_piece1.sprite +share/games/supertux2/images/particles/ice_piece2.png +share/games/supertux2/images/particles/ice_piece2.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 @@ -1691,7 +1879,6 @@ share/games/supertux2/images/powerups/st share/games/supertux2/images/powerups/star/star-4.png share/games/supertux2/images/powerups/star/star.sprite share/games/supertux2/images/tiles.strf -share/games/supertux2/images/tiles/Nuevos/Antena2.png share/games/supertux2/images/tiles/auxiliary/black.png share/games/supertux2/images/tiles/auxiliary/blank.png share/games/supertux2/images/tiles/auxiliary/endseq.png @@ -1711,6 +1898,7 @@ share/games/supertux2/images/tiles/backg 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/background/storm-cloud-electrified.png share/games/supertux2/images/tiles/background/storm-cloud.png share/games/supertux2/images/tiles/background/tile-160.png share/games/supertux2/images/tiles/blocks/bigblock.png @@ -1726,6 +1914,12 @@ share/games/supertux2/images/tiles/block 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/brick_piece1.png +share/games/supertux2/images/tiles/blocks/brick_piece2.png +share/games/supertux2/images/tiles/blocks/brick_piece3.png +share/games/supertux2/images/tiles/blocks/brick_piece4.png +share/games/supertux2/images/tiles/blocks/brick_piece5.png +share/games/supertux2/images/tiles/blocks/brick_piece6.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 @@ -1740,12 +1934,12 @@ share/games/supertux2/images/tiles/castl share/games/supertux2/images/tiles/castle/grey.png share/games/supertux2/images/tiles/castle/grey2.png 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/grey_special.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 @@ -1791,6 +1985,8 @@ share/games/supertux2/images/tiles/dooda 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/brush2.png +share/games/supertux2/images/tiles/forest/ceiling-slopes.png share/games/supertux2/images/tiles/forest/concave.png share/games/supertux2/images/tiles/forest/earth-floor.png share/games/supertux2/images/tiles/forest/exit-tree.png @@ -1807,6 +2003,7 @@ share/games/supertux2/images/tiles/fores share/games/supertux2/images/tiles/forest/foresttiles-10.png share/games/supertux2/images/tiles/forest/foresttiles-11.png share/games/supertux2/images/tiles/forest/foresttiles-12.png +share/games/supertux2/images/tiles/forest/foresttiles-1a.png share/games/supertux2/images/tiles/forest/foresttiles-2.png share/games/supertux2/images/tiles/forest/foresttiles-3.png share/games/supertux2/images/tiles/forest/foresttiles-5.png @@ -1816,6 +2013,7 @@ share/games/supertux2/images/tiles/fores share/games/supertux2/images/tiles/forest/foresttiles-9.png share/games/supertux2/images/tiles/forest/foresttiles-9a.png share/games/supertux2/images/tiles/forest/hole.png +share/games/supertux2/images/tiles/forest/hole2.png share/games/supertux2/images/tiles/forest/ladder.png share/games/supertux2/images/tiles/forest/nolok_statue.png share/games/supertux2/images/tiles/forest/pogonia/base.png @@ -1833,14 +2031,24 @@ share/games/supertux2/images/tiles/fores share/games/supertux2/images/tiles/forest/statue.png share/games/supertux2/images/tiles/forest/statue2.png share/games/supertux2/images/tiles/forest/steps.png +share/games/supertux2/images/tiles/forest/treelarge.png +share/games/supertux2/images/tiles/forest/treesmall.png share/games/supertux2/images/tiles/forest/underground/background1.png share/games/supertux2/images/tiles/forest/underground/background2.png share/games/supertux2/images/tiles/forest/underground/background3.png +share/games/supertux2/images/tiles/forest/underground/ceiling-slopes.png +share/games/supertux2/images/tiles/forest/underground/convex.png share/games/supertux2/images/tiles/forest/underground/groundtiles-1.png -share/games/supertux2/images/tiles/forest/underground/groundtiles-7.png +share/games/supertux2/images/tiles/forest/underground/groundtiles-1a.png share/games/supertux2/images/tiles/forest/underground/roots.png +share/games/supertux2/images/tiles/forest/underground/slope-1.png +share/games/supertux2/images/tiles/forest/underground/slope-2.png +share/games/supertux2/images/tiles/forest/underground/slope-3.png +share/games/supertux2/images/tiles/forest/underground/variation-1.png +share/games/supertux2/images/tiles/forest/underground/wall.png share/games/supertux2/images/tiles/forest/vine1.png share/games/supertux2/images/tiles/forest/wall.png +share/games/supertux2/images/tiles/ghostwood/earth-floor.png share/games/supertux2/images/tiles/ghostwood/ghostwood-1.png share/games/supertux2/images/tiles/ghostwood/ghostwood-2.png share/games/supertux2/images/tiles/ghostwood/ghostwood-4.png @@ -1959,6 +2167,7 @@ share/games/supertux2/images/tiles/pole/ 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/misc.png share/games/supertux2/images/tiles/pole/t-cross.png share/games/supertux2/images/tiles/pole/vert.png share/games/supertux2/images/tiles/signs/color_cyan.png @@ -1971,6 +2180,7 @@ share/games/supertux2/images/tiles/signs share/games/supertux2/images/tiles/signs/leftup.png share/games/supertux2/images/tiles/signs/needrock.png share/games/supertux2/images/tiles/signs/platform.png +share/games/supertux2/images/tiles/signs/platform_wood.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 @@ -2008,6 +2218,7 @@ share/games/supertux2/images/tiles/water share/games/supertux2/images/tiles/water/antarctic-6.png share/games/supertux2/images/tiles/water/antarctic-7.png share/games/supertux2/images/tiles/water/antarctic-8.png +share/games/supertux2/images/tiles/water/antarctic-displacement.png share/games/supertux2/images/tiles/water/antarctic.png share/games/supertux2/images/tiles/water/electrified-0.png share/games/supertux2/images/tiles/water/electrified-1.png @@ -2078,6 +2289,7 @@ share/games/supertux2/images/worldmap/co share/games/supertux2/images/worldmap/common/boat/left_boat_1_fire.png share/games/supertux2/images/worldmap/common/bonusdot.sprite share/games/supertux2/images/worldmap/common/firetux.png +share/games/supertux2/images/worldmap/common/ghosttree.sprite share/games/supertux2/images/worldmap/common/hiddendot.sprite share/games/supertux2/images/worldmap/common/invisible.png share/games/supertux2/images/worldmap/common/laddertux.sprite @@ -2193,6 +2405,8 @@ share/games/supertux2/images/worldmap/fo share/games/supertux2/images/worldmap/forest/ghostforest.png share/games/supertux2/images/worldmap/forest/ghostwood.png share/games/supertux2/images/worldmap/forest/icestream.png +share/games/supertux2/images/worldmap/forest/land.png +share/games/supertux2/images/worldmap/forest/land_ghost.png share/games/supertux2/images/worldmap/forest/leveldots/door.sprite share/games/supertux2/images/worldmap/forest/leveldots/doorclosed.png share/games/supertux2/images/worldmap/forest/leveldots/dooropen.png @@ -2210,6 +2424,7 @@ share/games/supertux2/images/worldmap/fo 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/forest/trees_bushes.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 @@ -2234,11 +2449,13 @@ share/games/supertux2/images/worldmap/sh share/games/supertux2/images/worldmap/shared/invisible_paths.png share/games/supertux2/images/worldmap/shared/pier.png share/games/supertux2/images/worldmap/shared/roads.png +share/games/supertux2/images/worldmap/shared/ruin.png share/games/supertux2/images/worldmap/shared/shallow_water.png share/games/supertux2/images/worldmap/shared/surf-01.png share/games/supertux2/images/worldmap/shared/surf-02.png share/games/supertux2/images/worldmap/shared/surf-03.png share/games/supertux2/images/worldmap/shared/surf-04.png +share/games/supertux2/images/worldmap/shared/tower.png share/games/supertux2/images/worldmap/shared/water_01.png share/games/supertux2/images/worldmap/shared/water_02.png share/games/supertux2/images/worldmap/shared/water_03.png @@ -2278,25 +2495,31 @@ share/games/supertux2/levels/bonus1/el.p 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/eu.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/gd.po share/games/supertux2/levels/bonus1/he.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/id.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/jbo.po share/games/supertux2/levels/bonus1/km.po share/games/supertux2/levels/bonus1/ko.po +share/games/supertux2/levels/bonus1/la.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/messages.pot share/games/supertux2/levels/bonus1/ml.po share/games/supertux2/levels/bonus1/nb.po +share/games/supertux2/levels/bonus1/nds.po share/games/supertux2/levels/bonus1/ne.po share/games/supertux2/levels/bonus1/nl.po share/games/supertux2/levels/bonus1/nn.po @@ -2316,6 +2539,7 @@ share/games/supertux2/levels/bonus1/torf 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/tt.po share/games/supertux2/levels/bonus1/uk.po share/games/supertux2/levels/bonus1/uz.po share/games/supertux2/levels/bonus1/vi.po @@ -2341,19 +2565,23 @@ share/games/supertux2/levels/bonus2/el.p 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/eu.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/gd.po share/games/supertux2/levels/bonus2/he.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/id.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/jbo.po share/games/supertux2/levels/bonus2/km.po share/games/supertux2/levels/bonus2/ko.po +share/games/supertux2/levels/bonus2/la.po share/games/supertux2/levels/bonus2/level1.stl share/games/supertux2/levels/bonus2/level10.stl share/games/supertux2/levels/bonus2/level11.stl @@ -2383,8 +2611,10 @@ share/games/supertux2/levels/bonus2/leve 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/messages.pot share/games/supertux2/levels/bonus2/ml.po share/games/supertux2/levels/bonus2/nb.po +share/games/supertux2/levels/bonus2/nds.po share/games/supertux2/levels/bonus2/ne.po share/games/supertux2/levels/bonus2/nl.po share/games/supertux2/levels/bonus2/nn.po @@ -2399,6 +2629,7 @@ share/games/supertux2/levels/bonus2/sq.p 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/tt.po share/games/supertux2/levels/bonus2/uk.po share/games/supertux2/levels/bonus2/uz.po share/games/supertux2/levels/bonus2/vi.po @@ -2447,9 +2678,11 @@ share/games/supertux2/levels/bonus3/ente 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/eu.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/gd.po share/games/supertux2/levels/bonus3/glaciers.stl share/games/supertux2/levels/bonus3/hanging roof.stl share/games/supertux2/levels/bonus3/he.po @@ -2457,6 +2690,7 @@ share/games/supertux2/levels/bonus3/hi_I 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/id.po share/games/supertux2/levels/bonus3/in_the_spring.stl share/games/supertux2/levels/bonus3/info share/games/supertux2/levels/bonus3/it.po @@ -2465,8 +2699,10 @@ share/games/supertux2/levels/bonus3/ja.p share/games/supertux2/levels/bonus3/jbo.po share/games/supertux2/levels/bonus3/km.po share/games/supertux2/levels/bonus3/ko.po +share/games/supertux2/levels/bonus3/la.po share/games/supertux2/levels/bonus3/light_in_the_darkness.stl share/games/supertux2/levels/bonus3/lt.po +share/games/supertux2/levels/bonus3/messages.pot share/games/supertux2/levels/bonus3/ml.po share/games/supertux2/levels/bonus3/nb.po share/games/supertux2/levels/bonus3/ne.po @@ -2494,6 +2730,7 @@ share/games/supertux2/levels/bonus3/sr.p 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/tt.po share/games/supertux2/levels/bonus3/uk.po share/games/supertux2/levels/bonus3/under ice.stl share/games/supertux2/levels/bonus3/uz.po @@ -2515,8 +2752,10 @@ share/games/supertux2/levels/halloween20 share/games/supertux2/levels/halloween2014/eo.po share/games/supertux2/levels/halloween2014/es.po share/games/supertux2/levels/halloween2014/et.po +share/games/supertux2/levels/halloween2014/eu.po share/games/supertux2/levels/halloween2014/fi.po share/games/supertux2/levels/halloween2014/fr.po +share/games/supertux2/levels/halloween2014/gd.po share/games/supertux2/levels/halloween2014/halloween1.stl share/games/supertux2/levels/halloween2014/halloween2.stl share/games/supertux2/levels/halloween2014/halloween3.stl @@ -2524,6 +2763,7 @@ share/games/supertux2/levels/halloween20 share/games/supertux2/levels/halloween2014/hi_IN.po share/games/supertux2/levels/halloween2014/hr.po share/games/supertux2/levels/halloween2014/hu.po +share/games/supertux2/levels/halloween2014/id.po share/games/supertux2/levels/halloween2014/info share/games/supertux2/levels/halloween2014/intro.stl share/games/supertux2/levels/halloween2014/intro.txt @@ -2532,10 +2772,14 @@ share/games/supertux2/levels/halloween20 share/games/supertux2/levels/halloween2014/jbo.po share/games/supertux2/levels/halloween2014/km.po share/games/supertux2/levels/halloween2014/ko.po +share/games/supertux2/levels/halloween2014/la.po share/games/supertux2/levels/halloween2014/lt.po +share/games/supertux2/levels/halloween2014/messages.pot share/games/supertux2/levels/halloween2014/ml.po share/games/supertux2/levels/halloween2014/mound.stl +share/games/supertux2/levels/halloween2014/ms_MY.po share/games/supertux2/levels/halloween2014/nb.po +share/games/supertux2/levels/halloween2014/nds.po share/games/supertux2/levels/halloween2014/ne.po share/games/supertux2/levels/halloween2014/nl.po share/games/supertux2/levels/halloween2014/nn.po @@ -2553,6 +2797,7 @@ share/games/supertux2/levels/halloween20 share/games/supertux2/levels/halloween2014/sr.po share/games/supertux2/levels/halloween2014/sv.po share/games/supertux2/levels/halloween2014/tr.po +share/games/supertux2/levels/halloween2014/tt.po share/games/supertux2/levels/halloween2014/uk.po share/games/supertux2/levels/halloween2014/uz.po share/games/supertux2/levels/halloween2014/vi.po @@ -2586,10 +2831,12 @@ share/games/supertux2/levels/incubator/e 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/eu.po share/games/supertux2/levels/incubator/fall_kugelblitz.stl share/games/supertux2/levels/incubator/fi.po share/games/supertux2/levels/incubator/fr.po share/games/supertux2/levels/incubator/frozen_fissure.stl +share/games/supertux2/levels/incubator/gd.po share/games/supertux2/levels/incubator/he.po share/games/supertux2/levels/incubator/hi_IN.po share/games/supertux2/levels/incubator/hr.po @@ -2597,6 +2844,7 @@ share/games/supertux2/levels/incubator/h share/games/supertux2/levels/incubator/hungry_tux.stl share/games/supertux2/levels/incubator/ice_mountain.nut share/games/supertux2/levels/incubator/ice_mountain.stl +share/games/supertux2/levels/incubator/id.po share/games/supertux2/levels/incubator/in_the_mountain.stl share/games/supertux2/levels/incubator/info share/games/supertux2/levels/incubator/into_dark.stl @@ -2606,13 +2854,17 @@ share/games/supertux2/levels/incubator/j share/games/supertux2/levels/incubator/jbo.po share/games/supertux2/levels/incubator/km.po share/games/supertux2/levels/incubator/ko.po +share/games/supertux2/levels/incubator/la.po share/games/supertux2/levels/incubator/let_us_snow.stl share/games/supertux2/levels/incubator/long.stl share/games/supertux2/levels/incubator/lt.po +share/games/supertux2/levels/incubator/messages.pot share/games/supertux2/levels/incubator/midnight_crossing.stl share/games/supertux2/levels/incubator/ml.po share/games/supertux2/levels/incubator/mountain_climbing.stl +share/games/supertux2/levels/incubator/ms_MY.po share/games/supertux2/levels/incubator/nb.po +share/games/supertux2/levels/incubator/nds.po share/games/supertux2/levels/incubator/ne.po share/games/supertux2/levels/incubator/nl.po share/games/supertux2/levels/incubator/nn.po @@ -2631,6 +2883,7 @@ share/games/supertux2/levels/incubator/s 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/tt.po share/games/supertux2/levels/incubator/uk.po share/games/supertux2/levels/incubator/uz.po share/games/supertux2/levels/incubator/vi.po @@ -2640,28 +2893,33 @@ share/games/supertux2/levels/incubator/z share/games/supertux2/levels/misc/da.po share/games/supertux2/levels/misc/hu.po share/games/supertux2/levels/misc/menu.stl -share/games/supertux2/levels/misc/menu_christmas.stl -share/games/supertux2/levels/misc/menu_final.stl +share/games/supertux2/levels/misc/messages.pot share/games/supertux2/levels/misc/nb.po share/games/supertux2/levels/misc/nn.po share/games/supertux2/levels/misc/pt.po share/games/supertux2/levels/misc/pt_BR.po share/games/supertux2/levels/misc/sl.po share/games/supertux2/levels/test/BackGround.stl +share/games/supertux2/levels/test/background_seams.stl share/games/supertux2/levels/test/bicycle_platform.stl share/games/supertux2/levels/test/bonusblock.stl share/games/supertux2/levels/test/bonusblocksprite.stl +share/games/supertux2/levels/test/bouncingsnowball.stl share/games/supertux2/levels/test/burnnmelt.stl share/games/supertux2/levels/test/candle.stl +share/games/supertux2/levels/test/canon.stl share/games/supertux2/levels/test/captainsnowball.stl share/games/supertux2/levels/test/castletiles.stl share/games/supertux2/levels/test/chain.stl +share/games/supertux2/levels/test/climbablemessage.stl +share/games/supertux2/levels/test/coincollectscripting.stl share/games/supertux2/levels/test/crystalcave.stl share/games/supertux2/levels/test/crystallo.stl share/games/supertux2/levels/test/darksnow.stl 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/flyingsnowball.stl share/games/supertux2/levels/test/forestkeep.stl share/games/supertux2/levels/test/freezetest.stl share/games/supertux2/levels/test/glow_effects.stl @@ -2677,14 +2935,18 @@ share/games/supertux2/levels/test/light. 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/mrcandle.stl +share/games/supertux2/levels/test/messages.pot +share/games/supertux2/levels/test/mrbomb.stl share/games/supertux2/levels/test/nb.po share/games/supertux2/levels/test/newice.stl share/games/supertux2/levels/test/nightcave.stl share/games/supertux2/levels/test/nn.po share/games/supertux2/levels/test/oddbug.stl share/games/supertux2/levels/test/owl.stl +share/games/supertux2/levels/test/particle_scripting.stl +share/games/supertux2/levels/test/path.stl share/games/supertux2/levels/test/pneumatic_platform.stl +share/games/supertux2/levels/test/portable_scripting.stl share/games/supertux2/levels/test/rusty_trampoline.stl share/games/supertux2/levels/test/scoretest.stl share/games/supertux2/levels/test/scripttrigger.stl @@ -2694,6 +2956,11 @@ share/games/supertux2/levels/test/snowmo share/games/supertux2/levels/test/snowslope.stl share/games/supertux2/levels/test/spike.stl share/games/supertux2/levels/test/stacking.stl +share/games/supertux2/levels/test/textarraytestauto.stl +share/games/supertux2/levels/test/textarraytestmanual.stl +share/games/supertux2/levels/test/textarraytestscripted.stl +share/games/supertux2/levels/test/textscroller.stl +share/games/supertux2/levels/test/tilemap_disco.stl share/games/supertux2/levels/test/tileplatforms.stl share/games/supertux2/levels/test/tileset2.strf share/games/supertux2/levels/test/totem.stl @@ -2701,8 +2968,8 @@ share/games/supertux2/levels/test/transi share/games/supertux2/levels/test/transition.stl share/games/supertux2/levels/test/treeboss.stl share/games/supertux2/levels/test/unisolid.stl -share/games/supertux2/levels/test/unordered_path.stl share/games/supertux2/levels/test/unstable_tile.stl +share/games/supertux2/levels/test/walking_candle.stl share/games/supertux2/levels/test/weakblock.stl share/games/supertux2/levels/test_old/1holes.stl share/games/supertux2/levels/test_old/ambient_sound.stl @@ -2719,9 +2986,6 @@ share/games/supertux2/levels/test_old/da share/games/supertux2/levels/test_old/direction.stl share/games/supertux2/levels/test_old/dropcrush.stl share/games/supertux2/levels/test_old/easteregg.stl -share/games/supertux2/levels/test_old/endseq.stl -share/games/supertux2/levels/test_old/enemy3.stl -share/games/supertux2/levels/test_old/exit.stl share/games/supertux2/levels/test_old/flapping.stl share/games/supertux2/levels/test_old/forest1-grumbel.stl share/games/supertux2/levels/test_old/glitches.stl @@ -2736,6 +3000,7 @@ share/games/supertux2/levels/test_old/in share/games/supertux2/levels/test_old/keydoors.stl share/games/supertux2/levels/test_old/laddertest.stl share/games/supertux2/levels/test_old/lantern.stl +share/games/supertux2/levels/test_old/messages.pot share/games/supertux2/levels/test_old/mrtree.stl share/games/supertux2/levels/test_old/noloktest.stl share/games/supertux2/levels/test_old/platform.stl @@ -2750,9 +3015,7 @@ share/games/supertux2/levels/test_old/se share/games/supertux2/levels/test_old/sectors.stl share/games/supertux2/levels/test_old/simple.stl share/games/supertux2/levels/test_old/slopes.stl -share/games/supertux2/levels/test_old/spikes.stl share/games/supertux2/levels/test_old/switch.stl -share/games/supertux2/levels/test_old/tilesets.stl share/games/supertux2/levels/test_old/trampoline.stl share/games/supertux2/levels/test_old/tree-exit.stl share/games/supertux2/levels/test_old/unstable.stl @@ -2762,163 +3025,147 @@ share/games/supertux2/levels/test_old/wa share/games/supertux2/levels/test_old/water.stl share/games/supertux2/levels/test_old/willowisp.stl share/games/supertux2/levels/test_old/wind.stl -share/games/supertux2/levels/world1/01 - Welcome to Antarctica.stl -share/games/supertux2/levels/world1/02 - The Journey Begins.stl -share/games/supertux2/levels/world1/03 - Via Nostalgica.stl -share/games/supertux2/levels/world1/04 - Tobgle Road.stl -share/games/supertux2/levels/world1/05 - The Somewhat Smaller Bath.stl -share/games/supertux2/levels/world1/06 - The Frosted Fields.stl -share/games/supertux2/levels/world1/07 - Oh No More Snowballs.stl -share/games/supertux2/levels/world1/08 - Stone Cold.stl -share/games/supertux2/levels/world1/09 - Grumbels Sense of Snow.stl -share/games/supertux2/levels/world1/10 - 23rd Airborne.stl -share/games/supertux2/levels/world1/11 - Night Chill.stl -share/games/supertux2/levels/world1/12 - Into the Stars.stl -share/games/supertux2/levels/world1/13 - Above the Arctic Skies.stl -share/games/supertux2/levels/world1/14 - Entrance to the Cave.stl -share/games/supertux2/levels/world1/15 - Under the Ice.stl -share/games/supertux2/levels/world1/16 - Living in a Fridge.stl -share/games/supertux2/levels/world1/17 - Or is it just me.stl -share/games/supertux2/levels/world1/18 - Ice in the Hole.stl -share/games/supertux2/levels/world1/19 - Miyamoto Monument.stl -share/games/supertux2/levels/world1/20 - End of the Tunnel.stl -share/games/supertux2/levels/world1/21 - A Path in the Clouds.stl -share/games/supertux2/levels/world1/22 - A Mysterious House of Ice.stl -share/games/supertux2/levels/world1/23 - The Escape.stl -share/games/supertux2/levels/world1/24 - The Shattered Bridge.stl -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/23rd_airborne.stl +share/games/supertux2/levels/world1/above_arctic_skies.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/between_glaciers.stl share/games/supertux2/levels/world1/bg.po -share/games/supertux2/levels/world1/bonus.stl share/games/supertux2/levels/world1/br.po share/games/supertux2/levels/world1/ca.po +share/games/supertux2/levels/world1/castle_cutscene.stl +share/games/supertux2/levels/world1/castle_of_nolok.stl share/games/supertux2/levels/world1/cmn.po +share/games/supertux2/levels/world1/crystal_mine.stl 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/end_of_tunnel.stl +share/games/supertux2/levels/world1/entrance_cave.stl share/games/supertux2/levels/world1/eo.po share/games/supertux2/levels/world1/es.po share/games/supertux2/levels/world1/et.po +share/games/supertux2/levels/world1/eu.po share/games/supertux2/levels/world1/fi.po +share/games/supertux2/levels/world1/fork_in_the_road.stl share/games/supertux2/levels/world1/fr.po +share/games/supertux2/levels/world1/frosted_fields.stl +share/games/supertux2/levels/world1/frozen_bridge.stl +share/games/supertux2/levels/world1/gd.po share/games/supertux2/levels/world1/he.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/ice_in_the_hole.stl +share/games/supertux2/levels/world1/icy_valley.stl +share/games/supertux2/levels/world1/id.po share/games/supertux2/levels/world1/info +share/games/supertux2/levels/world1/into_stars.stl share/games/supertux2/levels/world1/intro.nut share/games/supertux2/levels/world1/intro.stl share/games/supertux2/levels/world1/it.po share/games/supertux2/levels/world1/ja.po share/games/supertux2/levels/world1/jbo.po +share/games/supertux2/levels/world1/journey_begins.stl share/games/supertux2/levels/world1/km.po share/games/supertux2/levels/world1/ko.po +share/games/supertux2/levels/world1/la.po +share/games/supertux2/levels/world1/living_inside_fridge.stl share/games/supertux2/levels/world1/lt.po +share/games/supertux2/levels/world1/messages.pot +share/games/supertux2/levels/world1/miyamoto_monument.stl share/games/supertux2/levels/world1/ml.po +share/games/supertux2/levels/world1/more_snowballs.stl +share/games/supertux2/levels/world1/ms_MY.po share/games/supertux2/levels/world1/nb.po share/games/supertux2/levels/world1/ne.po +share/games/supertux2/levels/world1/night_chill.stl share/games/supertux2/levels/world1/nl.po share/games/supertux2/levels/world1/nn.po +share/games/supertux2/levels/world1/or_just_me.stl +share/games/supertux2/levels/world1/path_in_the_clouds.stl 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/shattered_bridge.stl share/games/supertux2/levels/world1/sk.po share/games/supertux2/levels/world1/sl.po +share/games/supertux2/levels/world1/somewhat_smaller_bath.stl share/games/supertux2/levels/world1/sq.po share/games/supertux2/levels/world1/sr.po +share/games/supertux2/levels/world1/stone_cold.stl share/games/supertux2/levels/world1/sv.po share/games/supertux2/levels/world1/tr.po +share/games/supertux2/levels/world1/tt.po share/games/supertux2/levels/world1/uk.po +share/games/supertux2/levels/world1/under_the_ice.stl share/games/supertux2/levels/world1/underground.nut share/games/supertux2/levels/world1/uz.po share/games/supertux2/levels/world1/vi.po +share/games/supertux2/levels/world1/via_nostalgica.stl +share/games/supertux2/levels/world1/welcome_antarctica.stl share/games/supertux2/levels/world1/worldmap.stwm +share/games/supertux2/levels/world1/yeti_boss.stl +share/games/supertux2/levels/world1/yeti_cutscene.stl share/games/supertux2/levels/world1/zh_CN.po share/games/supertux2/levels/world1/zh_TW.po -share/games/supertux2/levels/world2/Bouncy_Coils.stl -share/games/supertux2/levels/world2/Castle_Entrance.stl -share/games/supertux2/levels/world2/CounterCurrent.stl -share/games/supertux2/levels/world2/Crumbling_Path.stl -share/games/supertux2/levels/world2/Duct_Ape.stl -share/games/supertux2/levels/world2/El_Castillo.stl -share/games/supertux2/levels/world2/Find_Big_Fish.stl -share/games/supertux2/levels/world2/Going_Underground.stl -share/games/supertux2/levels/world2/Kneep_Deep.stl -share/games/supertux2/levels/world2/Little_Venice.stl -share/games/supertux2/levels/world2/Mouldy_Grotto.stl -share/games/supertux2/levels/world2/Penguin_Grow_Trees.stl -share/games/supertux2/levels/world2/Rabbit_Hole.stl -share/games/supertux2/levels/world2/Silent_Walls.stl -share/games/supertux2/levels/world2/Three_Sheets.stl -share/games/supertux2/levels/world2/Treasure_Skies.stl -share/games/supertux2/levels/world2/Tree_Fortress.stl -share/games/supertux2/levels/world2/Tux_Builder.stl -share/games/supertux2/levels/world2/Two_Towers.stl -share/games/supertux2/levels/world2/Up_and_Down.stl -share/games/supertux2/levels/world2/Walking_Leaves.stl -share/games/supertux2/levels/world2/Welcome_Forest.stl +share/games/supertux2/levels/world2/ancient_ruins.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/besides_bushes.stl share/games/supertux2/levels/world2/bg.po +share/games/supertux2/levels/world2/bouncy_coils.stl share/games/supertux2/levels/world2/br.po +share/games/supertux2/levels/world2/bye_bye_forest.stl share/games/supertux2/levels/world2/ca.po -share/games/supertux2/levels/world2/castle.stl -share/games/supertux2/levels/world2/castledoor.stl -share/games/supertux2/levels/world2/christophD.stl share/games/supertux2/levels/world2/cmn.po +share/games/supertux2/levels/world2/crumbling_path.stl share/games/supertux2/levels/world2/cs.po share/games/supertux2/levels/world2/da.po -share/games/supertux2/levels/world2/dan_morial.stl share/games/supertux2/levels/world2/de.po share/games/supertux2/levels/world2/default.nut -share/games/supertux2/levels/world2/detour.stl -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/eu.po share/games/supertux2/levels/world2/fi.po -share/games/supertux2/levels/world2/forest1-grumbel.stl +share/games/supertux2/levels/world2/find_big_fish.stl +share/games/supertux2/levels/world2/forest_intro.stl share/games/supertux2/levels/world2/fr.po -share/games/supertux2/levels/world2/ghostly.stl +share/games/supertux2/levels/world2/gd.po +share/games/supertux2/levels/world2/ghost_cutscene.stl +share/games/supertux2/levels/world2/ghostforest.nut +share/games/supertux2/levels/world2/going_underground.stl share/games/supertux2/levels/world2/he.po 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/id.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/jbo.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/km.po share/games/supertux2/levels/world2/ko.po -share/games/supertux2/levels/world2/level1.stl -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/la.po +share/games/supertux2/levels/world2/leaf_wind.stl share/games/supertux2/levels/world2/lt.po +share/games/supertux2/levels/world2/messages.pot share/games/supertux2/levels/world2/ml.po +share/games/supertux2/levels/world2/mouldy_grotto.stl 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/owls_again.stl +share/games/supertux2/levels/world2/owls_skydive_commando.stl +share/games/supertux2/levels/world2/penguin_grow_trees.stl share/games/supertux2/levels/world2/pl.po share/games/supertux2/levels/world2/pt.po share/games/supertux2/levels/world2/pt_BR.po @@ -2930,12 +3177,16 @@ share/games/supertux2/levels/world2/sl.p share/games/supertux2/levels/world2/sq.po share/games/supertux2/levels/world2/sr.po share/games/supertux2/levels/world2/sv.po +share/games/supertux2/levels/world2/through_dark.stl share/games/supertux2/levels/world2/tr.po +share/games/supertux2/levels/world2/tt.po +share/games/supertux2/levels/world2/tux_builder.stl share/games/supertux2/levels/world2/uk.po -share/games/supertux2/levels/world2/underconstruction.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/walking_leaves.stl +share/games/supertux2/levels/world2/welcome_forest.stl +share/games/supertux2/levels/world2/wooden_roots.stl share/games/supertux2/levels/world2/worldmap.stwm share/games/supertux2/levels/world2/zh_CN.po share/games/supertux2/levels/world2/zh_TW.po @@ -2953,20 +3204,27 @@ 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/eu.po share/games/supertux2/locale/fi.po share/games/supertux2/locale/fr.po +share/games/supertux2/locale/gd.po share/games/supertux2/locale/he.po share/games/supertux2/locale/hi_IN.po share/games/supertux2/locale/hr.po share/games/supertux2/locale/hu.po +share/games/supertux2/locale/id.po share/games/supertux2/locale/it.po share/games/supertux2/locale/ja.po share/games/supertux2/locale/jbo.po share/games/supertux2/locale/km.po share/games/supertux2/locale/ko.po +share/games/supertux2/locale/la.po share/games/supertux2/locale/lt.po +share/games/supertux2/locale/messages.pot share/games/supertux2/locale/ml.po +share/games/supertux2/locale/ms_MY.po share/games/supertux2/locale/nb.po +share/games/supertux2/locale/nds.po share/games/supertux2/locale/ne.po share/games/supertux2/locale/nl.po share/games/supertux2/locale/nn.po @@ -2981,6 +3239,7 @@ share/games/supertux2/locale/sq.po share/games/supertux2/locale/sr.po share/games/supertux2/locale/sv.po share/games/supertux2/locale/tr.po +share/games/supertux2/locale/tt.po share/games/supertux2/locale/uk.po share/games/supertux2/locale/uz.po share/games/supertux2/locale/vi.po @@ -2993,6 +3252,8 @@ share/games/supertux2/music/battle_theme share/games/supertux2/music/bonuscave.ogg share/games/supertux2/music/bossattack.music share/games/supertux2/music/bossattack.ogg +share/games/supertux2/music/bright_thunders.music +share/games/supertux2/music/bright_thunders.ogg share/games/supertux2/music/cave.music share/games/supertux2/music/cave.ogg share/games/supertux2/music/chipdisko.ogg @@ -3006,6 +3267,8 @@ share/games/supertux2/music/forest.music share/games/supertux2/music/forest.ogg share/games/supertux2/music/forest2.ogg share/games/supertux2/music/forest3.ogg +share/games/supertux2/music/forest_theme.music +share/games/supertux2/music/forest_theme.ogg share/games/supertux2/music/forestmap.ogg share/games/supertux2/music/fortress.music share/games/supertux2/music/fortress.ogg @@ -3014,8 +3277,12 @@ share/games/supertux2/music/ghostforest. share/games/supertux2/music/ghostforest2.ogg share/games/supertux2/music/greatgigantic.music share/games/supertux2/music/greatgigantic.ogg +share/games/supertux2/music/halloween_1.music +share/games/supertux2/music/halloween_1.ogg share/games/supertux2/music/intro.ogg share/games/supertux2/music/invincible.ogg +share/games/supertux2/music/jewels.music +share/games/supertux2/music/jewels.ogg share/games/supertux2/music/leveldone.ogg share/games/supertux2/music/salcon.ogg share/games/supertux2/music/theme.music @@ -3036,6 +3303,10 @@ share/games/supertux2/music/wisphunt.mus share/games/supertux2/music/wisphunt.ogg share/games/supertux2/scripts/console.nut share/games/supertux2/scripts/default.nut +share/games/supertux2/shader/shader100.frag +share/games/supertux2/shader/shader100.vert +share/games/supertux2/shader/shader330.frag +share/games/supertux2/shader/shader330.vert share/games/supertux2/sounds/bigjump.wav share/games/supertux2/sounds/brick.wav share/games/supertux2/sounds/coin.wav @@ -3048,6 +3319,7 @@ 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/fire.ogg share/games/supertux2/sounds/firecracker.ogg share/games/supertux2/sounds/fireworks.wav share/games/supertux2/sounds/fizz.wav @@ -3055,6 +3327,7 @@ 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/grow.wav share/games/supertux2/sounds/grunts.ogg share/games/supertux2/sounds/gulp.wav share/games/supertux2/sounds/hop.ogg @@ -3088,6 +3361,7 @@ share/games/supertux2/sounds/splat.wav share/games/supertux2/sounds/squish.wav share/games/supertux2/sounds/stomp.wav share/games/supertux2/sounds/switch.ogg +share/games/supertux2/sounds/thud.ogg share/games/supertux2/sounds/thunder.wav share/games/supertux2/sounds/ticking.wav share/games/supertux2/sounds/totem.ogg @@ -3109,5 +3383,7 @@ share/games/supertux2/speech/tux_hello.o share/games/supertux2/speech/tux_murp_01.ogg share/games/supertux2/speech/tux_rap.ogg share/games/supertux2/speech/tux_upset.ogg +share/icons/hicolor/scalable/apps/supertux2.svg +share/metainfo/supertux2.appdata.xml share/pixmaps/supertux.png share/pixmaps/supertux.xpm Index: pkgsrc/games/supertux/distinfo diff -u pkgsrc/games/supertux/distinfo:1.1 pkgsrc/games/supertux/distinfo:1.2 --- pkgsrc/games/supertux/distinfo:1.1 Wed Sep 14 16:24:26 2016 +++ pkgsrc/games/supertux/distinfo Mon Jul 1 15:13:20 2019 @@ -1,7 +1,11 @@ -$NetBSD: distinfo,v 1.1 2016/09/14 16:24:26 maya Exp $ +$NetBSD: distinfo,v 1.2 2019/07/01 15:13:20 nia Exp $ -SHA1 (supertux-0.4.0.tar.bz2) = a2c5ac6ac505e833e5c9ee6ffd4b19b71e570879 -RMD160 (supertux-0.4.0.tar.bz2) = 4949f027a7cc04445b4627c85fc04adb350a59c8 -SHA512 (supertux-0.4.0.tar.bz2) = 66ca63c982b6076847662c187069eb965211439e5dfc628300f2a9bd0d2b4c0f7b53f6e7c2aed263c098cc9b77fedf132e73b1f3b3eacaf5535cae8300262fb5 -Size (supertux-0.4.0.tar.bz2) = 79713147 bytes +SHA1 (SuperTux-v0.6.0-Source.tar.gz) = 5f575e2a12c057b90eb5f45d49605bd921a0c422 +RMD160 (SuperTux-v0.6.0-Source.tar.gz) = 282775e0c4cfbd6cad31ff1579e22232f6a6b4a6 +SHA512 (SuperTux-v0.6.0-Source.tar.gz) = 7e313f1af1131e83ec658fee12803542d59075fa94a0a79a9182382335dc1b10a9f75092562555acf875dd03b15b336b40772fb8cdd81a82fa5802deb51b610b +Size (SuperTux-v0.6.0-Source.tar.gz) = 131203604 bytes +SHA1 (patch-external_SDL__ttf_configure) = da5e257847458e0a4410be3b03299062d167d441 +SHA1 (patch-external_physfs_src_physfs__platform__unix.c) = 2c8c6d7be1e02098065f5b177038ef71bac35dc5 +SHA1 (patch-external_squirrel_CMakeLists.txt) = 4376efef866ca4d03365724409ffbaf635707d01 SHA1 (patch-external_tinygettext_include_tinygettext_iconv.hpp) = 4e9cf8c227af45ca2ae149fb18f29a9ad2a31b98 +SHA1 (patch-src_supertux_main.cpp) = 0518108d85d0daaa0f8e6a4730ca9e34adf871d4 Added files: Index: pkgsrc/games/supertux/patches/patch-external_SDL__ttf_configure diff -u /dev/null pkgsrc/games/supertux/patches/patch-external_SDL__ttf_configure:1.1 --- /dev/null Mon Jul 1 15:13:20 2019 +++ pkgsrc/games/supertux/patches/patch-external_SDL__ttf_configure Mon Jul 1 15:13:20 2019 @@ -0,0 +1,23 @@ +$NetBSD: patch-external_SDL__ttf_configure,v 1.1 2019/07/01 15:13:20 nia Exp $ + +Fix shell script portability. + +--- external/SDL_ttf/configure.orig 2018-12-23 19:11:38.000000000 +0000 ++++ external/SDL_ttf/configure +@@ -13549,14 +13549,14 @@ $as_echo "yes" >&6; } + fi + fi + +-if test "x$have_raqm" == "xyes"; then ++if test "x$have_raqm" = "xyes"; then + $as_echo "#define HAVE_RAQM 1" >>confdefs.h + + CFLAGS="$CFLAGS $RAQM_CFLAGS" + LIBS="$LIBS $RAQM_LIBS" + + fi +- if test "x$have_raqm" == "xyes"; then ++ if test "x$have_raqm" = "xyes"; then + HAVE_RAQM_TRUE= + HAVE_RAQM_FALSE='#' + else Index: pkgsrc/games/supertux/patches/patch-external_physfs_src_physfs__platform__unix.c diff -u /dev/null pkgsrc/games/supertux/patches/patch-external_physfs_src_physfs__platform__unix.c:1.1 --- /dev/null Mon Jul 1 15:13:20 2019 +++ pkgsrc/games/supertux/patches/patch-external_physfs_src_physfs__platform__unix.c Mon Jul 1 15:13:20 2019 @@ -0,0 +1,17 @@ +$NetBSD: patch-external_physfs_src_physfs__platform__unix.c,v 1.1 2019/07/01 15:13:20 nia Exp $ + +Support NetBSD. + +--- external/physfs/src/physfs_platform_unix.c.orig 2018-12-23 19:11:38.000000000 +0000 ++++ external/physfs/src/physfs_platform_unix.c +@@ -57,6 +57,10 @@ + #include + #endif + ++#ifdef __NetBSD__ ++#include ++#define statfs statvfs ++#endif + + #include "physfs_internal.h" + Index: pkgsrc/games/supertux/patches/patch-external_squirrel_CMakeLists.txt diff -u /dev/null pkgsrc/games/supertux/patches/patch-external_squirrel_CMakeLists.txt:1.1 --- /dev/null Mon Jul 1 15:13:20 2019 +++ pkgsrc/games/supertux/patches/patch-external_squirrel_CMakeLists.txt Mon Jul 1 15:13:20 2019 @@ -0,0 +1,14 @@ +$NetBSD: patch-external_squirrel_CMakeLists.txt,v 1.1 2019/07/01 15:13:20 nia Exp $ + +Disable building the dynamic library. + +--- external/squirrel/CMakeLists.txt.orig 2018-12-23 19:11:41.000000000 +0000 ++++ external/squirrel/CMakeLists.txt +@@ -6,6 +6,7 @@ endif() + + set(CMAKE_INSTALL_PREFIX "${CMAKE_SOURCE_DIR}" CACHE PATH "") + set(CMAKE_BUILD_TYPE "Release" CACHE STRING "") ++set(DISABLE_DYNAMIC ON) + + project(squirrel C CXX) + Index: pkgsrc/games/supertux/patches/patch-src_supertux_main.cpp diff -u /dev/null pkgsrc/games/supertux/patches/patch-src_supertux_main.cpp:1.1 --- /dev/null Mon Jul 1 15:13:20 2019 +++ pkgsrc/games/supertux/patches/patch-src_supertux_main.cpp Mon Jul 1 15:13:20 2019 @@ -0,0 +1,23 @@ +$NetBSD: patch-src_supertux_main.cpp,v 1.1 2019/07/01 15:13:20 nia Exp $ + +terminate called after throwing an instance of 'std::runtime_error' + what(): locale::facet::_S_create_c_locale name not valid + +Program received signal SIGABRT, Aborted. + +[1] Abort trap (core dumped) supertux2 + +--- src/supertux/main.cpp.orig 2018-12-23 19:11:32.000000000 +0000 ++++ src/supertux/main.cpp +@@ -548,11 +548,6 @@ Main::run(int argc, char** argv) + _wfreopen(w_errpath.c_str(), L"a", stderr); + #endif + +- // Create and install global locale +- std::locale::global(boost::locale::generator().generate("")); +- // Make boost.filesystem use it +- boost::filesystem::path::imbue(std::locale()); +- + int result = 0; + + try --_----------=_1561994000182880--