From owner-svn-ports-all@freebsd.org Tue Jan 5 21:50:37 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CDF2BA633AF; Tue, 5 Jan 2016 21:50:37 +0000 (UTC) (envelope-from makc@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 57435132C; Tue, 5 Jan 2016 21:50:37 +0000 (UTC) (envelope-from makc@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u05LoaUr083871; Tue, 5 Jan 2016 21:50:36 GMT (envelope-from makc@FreeBSD.org) Received: (from makc@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u05LoZTX083862; Tue, 5 Jan 2016 21:50:35 GMT (envelope-from makc@FreeBSD.org) Message-Id: <201601052150.u05LoZTX083862@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: makc set sender to makc@FreeBSD.org using -f From: Max Brazhnikov Date: Tue, 5 Jan 2016 21:50:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r405319 - in head: . games games/supertux-devel games/supertux2 games/supertux2/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Jan 2016 21:50:37 -0000 Author: makc Date: Tue Jan 5 21:50:35 2016 New Revision: 405319 URL: https://svnweb.freebsd.org/changeset/ports/405319 Log: Rename games/supertux-devel to games/supertux2 and update to new stable release 0.4.0 (aka SuperTux Milestone 2) Added: head/games/supertux2/ - copied from r405318, head/games/supertux-devel/ head/games/supertux2/files/patch-external_squirrel_CMakeLists.txt (contents, props changed) head/games/supertux2/files/patch-external_tinygettext_CMakeLists.txt (contents, props changed) Deleted: head/games/supertux-devel/ Modified: head/MOVED head/games/Makefile head/games/supertux2/Makefile head/games/supertux2/distinfo head/games/supertux2/files/patch-CMakeLists.txt head/games/supertux2/pkg-descr head/games/supertux2/pkg-plist Modified: head/MOVED ============================================================================== --- head/MOVED Tue Jan 5 21:49:11 2016 (r405318) +++ head/MOVED Tue Jan 5 21:50:35 2016 (r405319) @@ -8093,3 +8093,4 @@ net-mgmt/unifi2|net-mgmt/unifi3|2016-01- misc/kde4-l10n-th||2016-01-01|Has expired: Upstream ceased maintainance of this translation misc/kde4-l10n-tg||2016-01-01|Has expired: Upstream ceased maintainance of this translation misc/kde4-l10n-si||2016-01-01|Has expired: Upstream ceased maintainance of this translation +games/supertux-devel|games/supertux2|2016-01-05|Renamed along with update to new stable release Modified: head/games/Makefile ============================================================================== --- head/games/Makefile Tue Jan 5 21:49:11 2016 (r405318) +++ head/games/Makefile Tue Jan 5 21:50:35 2016 (r405319) @@ -931,7 +931,7 @@ SUBDIR += super_mario_bros_python SUBDIR += super_methane_brothers SUBDIR += supertux - SUBDIR += supertux-devel + SUBDIR += supertux2 SUBDIR += supertuxkart SUBDIR += swell-foop SUBDIR += sxsame Modified: head/games/supertux2/Makefile ============================================================================== --- head/games/supertux-devel/Makefile Tue Jan 5 21:49:11 2016 (r405318) +++ head/games/supertux2/Makefile Tue Jan 5 21:50:35 2016 (r405319) @@ -1,11 +1,10 @@ # $FreeBSD$ PORTNAME= supertux -PORTVERSION= 0.3.5 -PORTREVISION= 1 +PORTVERSION= 0.4.0 CATEGORIES= games MASTER_SITES= https://github.com/SuperTux/supertux/releases/download/v${PORTVERSION}/ -PKGNAMESUFFIX= -devel +PKGNAMESUFFIX= 2 MAINTAINER= makc@FreeBSD.org COMMENT= Side-scroller game similar to Super Mario Brothers @@ -17,14 +16,19 @@ LIB_DEPENDS= libphysfs.so:${PORTSDIR}/de USE_SDL= sdl2 image2 USE_GL= glew -USES= cmake:outsource compiler:c++11-lib openal:al pkgconfig tar:bzip2 +USES= cmake:outsource compiler:c++11-lib dos2unix iconv \ + openal:al pkgconfig tar:bzip2 # Unhide std::to_string() to fix build with GCC (see ports/193528 for details) CFLAGS+= -D_GLIBCXX_USE_C99 +CMAKE_ARGS= -DINSTALL_SUBDIR_BIN=bin \ + -DBUILD_SHARED_LIBS=off +DOS2UNIX_FILES= external/squirrel/CMakeLists.txt +DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}${PKGNAMESUFFIX} OPTIONS_DEFINE= DOCS post-patch: - ${REINPLACE_CMD} -e '/^Icon=/s,supertux.png,supertux2.png,' \ + ${REINPLACE_CMD} -e '/^Icon=/s,supertux.png,supertux2,' \ ${WRKSRC}/supertux2.desktop .include Modified: head/games/supertux2/distinfo ============================================================================== --- head/games/supertux-devel/distinfo Tue Jan 5 21:49:11 2016 (r405318) +++ head/games/supertux2/distinfo Tue Jan 5 21:50:35 2016 (r405319) @@ -1,2 +1,2 @@ -SHA256 (supertux-0.3.5.tar.bz2) = cdc6c937323e24ad510c5a5488518f283d0f3543253d55b9d0614b5220375b0f -SIZE (supertux-0.3.5.tar.bz2) = 72977597 +SHA256 (supertux-0.4.0.tar.bz2) = d18dde3c415e619b4bb035e694ffc384be16576250c9df16929d9ec38daff782 +SIZE (supertux-0.4.0.tar.bz2) = 79713147 Modified: head/games/supertux2/files/patch-CMakeLists.txt ============================================================================== --- head/games/supertux-devel/files/patch-CMakeLists.txt Tue Jan 5 21:49:11 2016 (r405318) +++ head/games/supertux2/files/patch-CMakeLists.txt Tue Jan 5 21:50:35 2016 (r405319) @@ -1,28 +1,12 @@ ---- CMakeLists.txt.orig 2015-04-11 13:49:50 UTC +--- CMakeLists.txt.orig 2015-12-20 14:50:39 UTC +++ CMakeLists.txt -@@ -421,13 +421,15 @@ IF(${CMAKE_SYSTEM_NAME} MATCHES "Darwin" +@@ -572,7 +572,8 @@ ELSE(${CMAKE_SYSTEM_NAME} MATCHES "Darwi - ELSE(${CMAKE_SYSTEM_NAME} MATCHES "Darwin") - -- SET(INSTALL_SUBDIR_BIN "games" CACHE STRING "Installation subdir for binaries") -+ SET(INSTALL_SUBDIR_BIN "bin" CACHE STRING "Installation subdir for binaries") - SET(INSTALL_SUBDIR_SHARE "share/games/supertux2" CACHE STRING "Installation subdir for data") - SET(INSTALL_SUBDIR_DOC "share/doc/supertux2" CACHE STRING "Installation subdir for docs") - - INSTALL(FILES ${CMAKE_CURRENT_SOURCE_DIR}/supertux2.desktop DESTINATION "share/applications") + SET(APPS "\$ENV{DESTDIR}\${CMAKE_INSTALL_PREFIX}/${INSTALL_SUBDIR_BIN}/supertux2") - INSTALL(FILES ${CMAKE_CURRENT_SOURCE_DIR}/data/images/engine/icons/supertux.png ${CMAKE_CURRENT_SOURCE_DIR}/data/images/engine/icons/supertux.xpm DESTINATION "share/pixmaps/") + INSTALL(FILES ${CMAKE_CURRENT_SOURCE_DIR}/data/images/engine/icons/supertux.png DESTINATION "share/pixmaps/" RENAME supertux2.png) -+ + INSTALL(FILES ${CMAKE_CURRENT_SOURCE_DIR}/data/images/engine/icons/supertux.xpm DESTINATION "share/pixmaps/" RENAME supertux2.xpm) - ENDIF(${CMAKE_SYSTEM_NAME} MATCHES "Darwin") + ENDIF(${CMAKE_SYSTEM_NAME} MATCHES "Darwin" AND DISABLE_CPACK_BUNDLING) 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 Added: head/games/supertux2/files/patch-external_squirrel_CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/supertux2/files/patch-external_squirrel_CMakeLists.txt Tue Jan 5 21:50:35 2016 (r405319) @@ -0,0 +1,11 @@ +--- external/squirrel/CMakeLists.txt.orig 2015-12-20 14:56:35 UTC ++++ external/squirrel/CMakeLists.txt +@@ -82,8 +82,3 @@ GENERATE_EXPORT_HEADER( squirrel + set(LIB_SUBDIR "lib${LIB_SUFFIX}" + CACHE STRING "Subdirectory of prefix into which libraries are installed (e.g., lib32, lib64)") + +-INSTALL(TARGETS squirrel +- RUNTIME DESTINATION bin +- ARCHIVE DESTINATION ${LIB_SUBDIR} +- LIBRARY DESTINATION ${LIB_SUBDIR} +- COMPONENT squirrel) Added: head/games/supertux2/files/patch-external_tinygettext_CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/supertux2/files/patch-external_tinygettext_CMakeLists.txt Tue Jan 5 21:50:35 2016 (r405319) @@ -0,0 +1,16 @@ +--- external/tinygettext/CMakeLists.txt.orig 2015-12-20 14:56:35 UTC ++++ external/tinygettext/CMakeLists.txt +@@ -203,13 +203,5 @@ set(LIB_SUBDIR "lib${LIB_SUFFIX}" + ## prepare tinygettext.pc + configure_file(tinygettext.pc.in tinygettext.pc @ONLY) + +-install(TARGETS tinygettext +- RUNTIME DESTINATION bin +- ARCHIVE DESTINATION ${LIB_SUBDIR} +- LIBRARY DESTINATION ${LIB_SUBDIR}) +-install(FILES ${TINYGETTEXT_HEADERS} +- DESTINATION include/tinygettext) +-install(FILES ${tinygettext_BINARY_DIR}/tinygettext.pc +- DESTINATION ${LIB_SUBDIR}/pkgconfig) + + # EOF # Modified: head/games/supertux2/pkg-descr ============================================================================== --- head/games/supertux-devel/pkg-descr Tue Jan 5 21:49:11 2016 (r405318) +++ head/games/supertux2/pkg-descr Tue Jan 5 21:50:35 2016 (r405319) @@ -1,7 +1,4 @@ -SuperTux is a side-scrolling run-and-jump game with a level editor -similar to the original game "Super Mario Bros." from the Nintendo -Entertainment System. +SuperTux is a 2D jump and run side-scroller game in a style similar +to the original Super Mario games. -This port provides development version of SuperTux. - -WWW: http://supertux.lethargik.org/ +WWW: http://supertuxproject.org/ Modified: head/games/supertux2/pkg-plist ============================================================================== --- head/games/supertux-devel/pkg-plist Tue Jan 5 21:49:11 2016 (r405318) +++ head/games/supertux2/pkg-plist Tue Jan 5 21:50:35 2016 (r405319) @@ -1,9 +1,10 @@ bin/supertux2 +share/appdata/supertux2.appdata.xml share/applications/supertux2.desktop -%%PORTDOCS%%%%DOCSDIR%%2/INSTALL.md -%%PORTDOCS%%%%DOCSDIR%%2/LICENSE -%%PORTDOCS%%%%DOCSDIR%%2/README.md -%%PORTDOCS%%%%DOCSDIR%%2/WHATSNEW.txt +%%PORTDOCS%%%%DOCSDIR%%/INSTALL.md +%%PORTDOCS%%%%DOCSDIR%%/LICENSE.txt +%%PORTDOCS%%%%DOCSDIR%%/NEWS.md +%%PORTDOCS%%%%DOCSDIR%%/README.md share/games/supertux2/credits.txt share/games/supertux2/fonts/Deva-voy-white-big.stf share/games/supertux2/fonts/Deva-voy-white.stf @@ -88,6 +89,7 @@ share/games/supertux2/images/background/ share/games/supertux2/images/creatures/angrystone/angrystone.sprite share/games/supertux2/images/creatures/angrystone/attacking-0.png share/games/supertux2/images/creatures/angrystone/charging-0.png +share/games/supertux2/images/creatures/angrystone/frozen.png share/games/supertux2/images/creatures/angrystone/idle-0.png share/games/supertux2/images/creatures/bouncing_snowball/bouncing_snowball.sprite share/games/supertux2/images/creatures/bouncing_snowball/left-0.png @@ -96,6 +98,10 @@ share/games/supertux2/images/creatures/b share/games/supertux2/images/creatures/bouncing_snowball/left-3.png share/games/supertux2/images/creatures/bouncing_snowball/left-4.png share/games/supertux2/images/creatures/bouncing_snowball/left-5.png +share/games/supertux2/images/creatures/bouncing_snowball/melting-0.png +share/games/supertux2/images/creatures/bouncing_snowball/melting-1.png +share/games/supertux2/images/creatures/bouncing_snowball/melting-2.png +share/games/supertux2/images/creatures/bouncing_snowball/melting-3.png share/games/supertux2/images/creatures/crystallo/crystallo-editor.png share/games/supertux2/images/creatures/crystallo/crystallo-left-0.png share/games/supertux2/images/creatures/crystallo/crystallo-left-1.png @@ -112,9 +118,12 @@ share/games/supertux2/images/creatures/d share/games/supertux2/images/creatures/darttrap/loading-3.png share/games/supertux2/images/creatures/darttrap/loading-4.png share/games/supertux2/images/creatures/dispenser/broken.png +share/games/supertux2/images/creatures/dispenser/canon-frozen.png share/games/supertux2/images/creatures/dispenser/canon.png share/games/supertux2/images/creatures/dispenser/dispenser.sprite +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/swivel-left.png share/games/supertux2/images/creatures/dispenser/swivel-right.png share/games/supertux2/images/creatures/dispenser/working.png @@ -125,12 +134,33 @@ share/games/supertux2/images/creatures/d 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/burn-0.png +share/games/supertux2/images/creatures/fatbat/burn-1.png +share/games/supertux2/images/creatures/fatbat/burn-10.png +share/games/supertux2/images/creatures/fatbat/burn-2.png +share/games/supertux2/images/creatures/fatbat/burn-3.png +share/games/supertux2/images/creatures/fatbat/burn-4.png +share/games/supertux2/images/creatures/fatbat/burn-5.png +share/games/supertux2/images/creatures/fatbat/burn-6.png +share/games/supertux2/images/creatures/fatbat/burn-7.png +share/games/supertux2/images/creatures/fatbat/burn-8.png +share/games/supertux2/images/creatures/fatbat/burn-9.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/burning-0.png +share/games/supertux2/images/creatures/fish/burning-1.png +share/games/supertux2/images/creatures/fish/burning-2.png +share/games/supertux2/images/creatures/fish/burning-3.png +share/games/supertux2/images/creatures/fish/burning-4.png +share/games/supertux2/images/creatures/fish/burning-5.png +share/games/supertux2/images/creatures/fish/burning-6.png +share/games/supertux2/images/creatures/fish/burning-7.png +share/games/supertux2/images/creatures/fish/burning-8.png +share/games/supertux2/images/creatures/fish/burning-9.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 @@ -152,7 +182,6 @@ share/games/supertux2/images/creatures/f 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 @@ -167,6 +196,9 @@ share/games/supertux2/images/creatures/f share/games/supertux2/images/creatures/flying_snowball/flying_snowball.sprite share/games/supertux2/images/creatures/flying_snowball/left-0.png share/games/supertux2/images/creatures/flying_snowball/left-1.png +share/games/supertux2/images/creatures/flying_snowball/melting-0.png +share/games/supertux2/images/creatures/flying_snowball/melting-1.png +share/games/supertux2/images/creatures/flying_snowball/melting-2.png share/games/supertux2/images/creatures/flying_snowball/squished-left.png share/games/supertux2/images/creatures/ghosttree/ghosttree-dying-0.png share/games/supertux2/images/creatures/ghosttree/ghosttree-glow-dying-0.png @@ -207,7 +239,6 @@ share/games/supertux2/images/creatures/h 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 @@ -219,6 +250,17 @@ 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/igel/burning-0.png +share/games/supertux2/images/creatures/igel/burning-1.png +share/games/supertux2/images/creatures/igel/burning-2.png +share/games/supertux2/images/creatures/igel/burning-3.png +share/games/supertux2/images/creatures/igel/burning-4.png +share/games/supertux2/images/creatures/igel/burning-5.png +share/games/supertux2/images/creatures/igel/burning-6.png +share/games/supertux2/images/creatures/igel/burning-7.png +share/games/supertux2/images/creatures/igel/burning-8.png +share/games/supertux2/images/creatures/igel/burning-9.png +share/games/supertux2/images/creatures/igel/frozen.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 @@ -229,6 +271,32 @@ share/games/supertux2/images/creatures/j 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/jumpy/wooden-burning-0.png +share/games/supertux2/images/creatures/jumpy/wooden-burning-1.png +share/games/supertux2/images/creatures/jumpy/wooden-burning-10.png +share/games/supertux2/images/creatures/jumpy/wooden-burning-2.png +share/games/supertux2/images/creatures/jumpy/wooden-burning-3.png +share/games/supertux2/images/creatures/jumpy/wooden-burning-4.png +share/games/supertux2/images/creatures/jumpy/wooden-burning-5.png +share/games/supertux2/images/creatures/jumpy/wooden-burning-6.png +share/games/supertux2/images/creatures/jumpy/wooden-burning-7.png +share/games/supertux2/images/creatures/jumpy/wooden-burning-8.png +share/games/supertux2/images/creatures/jumpy/wooden-burning-9.png +share/games/supertux2/images/creatures/jumpy/wooden-down.png +share/games/supertux2/images/creatures/jumpy/wooden-iced.png +share/games/supertux2/images/creatures/jumpy/wooden-middle.png +share/games/supertux2/images/creatures/jumpy/wooden-up.png +share/games/supertux2/images/creatures/jumpy/wooden.sprite +share/games/supertux2/images/creatures/kirby/burning-0.png +share/games/supertux2/images/creatures/kirby/burning-1.png +share/games/supertux2/images/creatures/kirby/burning-2.png +share/games/supertux2/images/creatures/kirby/burning-3.png +share/games/supertux2/images/creatures/kirby/burning-4.png +share/games/supertux2/images/creatures/kirby/burning-5.png +share/games/supertux2/images/creatures/kirby/burning-6.png +share/games/supertux2/images/creatures/kirby/burning-7.png +share/games/supertux2/images/creatures/kirby/burning-8.png +share/games/supertux2/images/creatures/kirby/burning-9.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 @@ -269,6 +337,12 @@ share/games/supertux2/images/creatures/l 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/burning-0.png +share/games/supertux2/images/creatures/mole/burning-1.png +share/games/supertux2/images/creatures/mole/burning-2.png +share/games/supertux2/images/creatures/mole/burning-3.png +share/games/supertux2/images/creatures/mole/burning-4.png +share/games/supertux2/images/creatures/mole/burning-5.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 @@ -290,14 +364,16 @@ share/games/supertux2/images/creatures/m share/games/supertux2/images/creatures/mr_bomb/left-0.png share/games/supertux2/images/creatures/mr_bomb/left-1.png share/games/supertux2/images/creatures/mr_bomb/left-2.png -share/games/supertux2/images/creatures/mr_bomb/left-3.png share/games/supertux2/images/creatures/mr_bomb/left.png share/games/supertux2/images/creatures/mr_bomb/mr_bomb.sprite share/games/supertux2/images/creatures/mr_bomb/right.png -share/games/supertux2/images/creatures/mr_bomb/ticking-0.png -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_candle/mr-candle-left-0.png +share/games/supertux2/images/creatures/mr_candle/mr-candle-left-1.png +share/games/supertux2/images/creatures/mr_candle/mr-candle-left-2.png +share/games/supertux2/images/creatures/mr_candle/mr-candle-off.png +share/games/supertux2/images/creatures/mr_candle/mr-candle.sprite +share/games/supertux2/images/creatures/mr_candle/mr-candle_info.txt 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 @@ -341,19 +417,60 @@ share/games/supertux2/images/creatures/m 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 +share/games/supertux2/images/creatures/mr_iceblock/gmelting-2.png +share/games/supertux2/images/creatures/mr_iceblock/gmelting-3.png +share/games/supertux2/images/creatures/mr_iceblock/gmelting-4.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/melting-0.png +share/games/supertux2/images/creatures/mr_iceblock/melting-1.png +share/games/supertux2/images/creatures/mr_iceblock/melting-2.png +share/games/supertux2/images/creatures/mr_iceblock/melting-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/gmelting-0.png +share/games/supertux2/images/creatures/mr_iceblock/smart_block/gmelting-1.png +share/games/supertux2/images/creatures/mr_iceblock/smart_block/gmelting-2.png +share/games/supertux2/images/creatures/mr_iceblock/smart_block/gmelting-3.png +share/games/supertux2/images/creatures/mr_iceblock/smart_block/gmelting-4.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/melting-0.png +share/games/supertux2/images/creatures/mr_iceblock/smart_block/melting-1.png +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_tree/burning-0.png +share/games/supertux2/images/creatures/mr_tree/burning-1.png +share/games/supertux2/images/creatures/mr_tree/burning-10.png +share/games/supertux2/images/creatures/mr_tree/burning-2.png +share/games/supertux2/images/creatures/mr_tree/burning-3.png +share/games/supertux2/images/creatures/mr_tree/burning-4.png +share/games/supertux2/images/creatures/mr_tree/burning-5.png +share/games/supertux2/images/creatures/mr_tree/burning-6.png +share/games/supertux2/images/creatures/mr_tree/burning-7.png +share/games/supertux2/images/creatures/mr_tree/burning-8.png +share/games/supertux2/images/creatures/mr_tree/burning-9.png 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 share/games/supertux2/images/creatures/mr_tree/mr_tree.sprite +share/games/supertux2/images/creatures/mr_tree/small-burning-0.png +share/games/supertux2/images/creatures/mr_tree/small-burning-1.png +share/games/supertux2/images/creatures/mr_tree/small-burning-10.png +share/games/supertux2/images/creatures/mr_tree/small-burning-2.png +share/games/supertux2/images/creatures/mr_tree/small-burning-3.png +share/games/supertux2/images/creatures/mr_tree/small-burning-4.png +share/games/supertux2/images/creatures/mr_tree/small-burning-5.png +share/games/supertux2/images/creatures/mr_tree/small-burning-6.png +share/games/supertux2/images/creatures/mr_tree/small-burning-7.png +share/games/supertux2/images/creatures/mr_tree/small-burning-8.png +share/games/supertux2/images/creatures/mr_tree/small-burning-9.png +share/games/supertux2/images/creatures/mr_tree/small-frozen.png share/games/supertux2/images/creatures/mr_tree/small-left-0.png share/games/supertux2/images/creatures/mr_tree/small-left-1.png share/games/supertux2/images/creatures/mr_tree/small-left-2.png @@ -363,6 +480,7 @@ share/games/supertux2/images/creatures/m share/games/supertux2/images/creatures/mr_tree/small-left-6.png share/games/supertux2/images/creatures/mr_tree/squished-left.png share/games/supertux2/images/creatures/mr_tree/stumpy.sprite +share/games/supertux2/images/creatures/mr_tree/walk-frozen.png share/games/supertux2/images/creatures/mr_tree/walk-left-1.png share/games/supertux2/images/creatures/mr_tree/walk-left-2.png share/games/supertux2/images/creatures/mr_tree/walk-left-3.png @@ -380,6 +498,16 @@ share/games/supertux2/images/creatures/n share/games/supertux2/images/creatures/nolok/walk-2.png share/games/supertux2/images/creatures/nolok/walk-3.png share/games/supertux2/images/creatures/nolok/walk-4.png +share/games/supertux2/images/creatures/owl/burning-0.png +share/games/supertux2/images/creatures/owl/burning-1.png +share/games/supertux2/images/creatures/owl/burning-2.png +share/games/supertux2/images/creatures/owl/burning-3.png +share/games/supertux2/images/creatures/owl/burning-4.png +share/games/supertux2/images/creatures/owl/burning-5.png +share/games/supertux2/images/creatures/owl/burning-6.png +share/games/supertux2/images/creatures/owl/burning-7.png +share/games/supertux2/images/creatures/owl/burning-8.png +share/games/supertux2/images/creatures/owl/burning-9.png share/games/supertux2/images/creatures/owl/left-0.png share/games/supertux2/images/creatures/owl/left-1.png share/games/supertux2/images/creatures/owl/left-2.png @@ -389,17 +517,50 @@ share/games/supertux2/images/creatures/o share/games/supertux2/images/creatures/owl/owl.sprite share/games/supertux2/images/creatures/penny/penny.png share/games/supertux2/images/creatures/penny/penny.sprite -share/games/supertux2/images/creatures/plant/iced-left.png +share/games/supertux2/images/creatures/plant/burning-0.png +share/games/supertux2/images/creatures/plant/burning-1.png +share/games/supertux2/images/creatures/plant/burning-10.png +share/games/supertux2/images/creatures/plant/burning-2.png +share/games/supertux2/images/creatures/plant/burning-3.png +share/games/supertux2/images/creatures/plant/burning-4.png +share/games/supertux2/images/creatures/plant/burning-5.png +share/games/supertux2/images/creatures/plant/burning-6.png +share/games/supertux2/images/creatures/plant/burning-7.png +share/games/supertux2/images/creatures/plant/burning-8.png +share/games/supertux2/images/creatures/plant/burning-9.png +share/games/supertux2/images/creatures/plant/frozen.png share/games/supertux2/images/creatures/plant/left-0.png share/games/supertux2/images/creatures/plant/left-1.png share/games/supertux2/images/creatures/plant/left-2.png -share/games/supertux2/images/creatures/plant/plant-sleep.png share/games/supertux2/images/creatures/plant/plant.png share/games/supertux2/images/creatures/plant/plant.sprite +share/games/supertux2/images/creatures/plant/sleeping-burning-0.png +share/games/supertux2/images/creatures/plant/sleeping-burning-1.png +share/games/supertux2/images/creatures/plant/sleeping-burning-2.png +share/games/supertux2/images/creatures/plant/sleeping-burning-3.png +share/games/supertux2/images/creatures/plant/sleeping-burning-4.png +share/games/supertux2/images/creatures/plant/sleeping-burning-5.png +share/games/supertux2/images/creatures/plant/sleeping-burning-6.png +share/games/supertux2/images/creatures/plant/sleeping-burning-7.png +share/games/supertux2/images/creatures/plant/sleeping-burning-8.png share/games/supertux2/images/creatures/plant/sleeping-left.png share/games/supertux2/images/creatures/plant/waking-left-0.png share/games/supertux2/images/creatures/plant/waking-left-1.png share/games/supertux2/images/creatures/plant/waking-left-2.png +share/games/supertux2/images/creatures/plant/waking-left-3.png +share/games/supertux2/images/creatures/plant/waking-left-4.png +share/games/supertux2/images/creatures/plant/waking-left-5.png +share/games/supertux2/images/creatures/poison_ivy/burning-0.png +share/games/supertux2/images/creatures/poison_ivy/burning-1.png +share/games/supertux2/images/creatures/poison_ivy/burning-2.png +share/games/supertux2/images/creatures/poison_ivy/burning-3.png +share/games/supertux2/images/creatures/poison_ivy/burning-4.png +share/games/supertux2/images/creatures/poison_ivy/burning-5.png +share/games/supertux2/images/creatures/poison_ivy/burning-6.png +share/games/supertux2/images/creatures/poison_ivy/burning-7.png +share/games/supertux2/images/creatures/poison_ivy/burning-8.png +share/games/supertux2/images/creatures/poison_ivy/burning-9.png +share/games/supertux2/images/creatures/poison_ivy/frozen.png share/games/supertux2/images/creatures/poison_ivy/left-0.png share/games/supertux2/images/creatures/poison_ivy/left-1.png share/games/supertux2/images/creatures/poison_ivy/left-2.png @@ -409,14 +570,35 @@ share/games/supertux2/images/creatures/s share/games/supertux2/images/creatures/short_fuse/left.png share/games/supertux2/images/creatures/short_fuse/right.png share/games/supertux2/images/creatures/short_fuse/short_fuse.sprite +share/games/supertux2/images/creatures/skullyhop/burning-0.png +share/games/supertux2/images/creatures/skullyhop/burning-1.png +share/games/supertux2/images/creatures/skullyhop/burning-2.png +share/games/supertux2/images/creatures/skullyhop/burning-3.png +share/games/supertux2/images/creatures/skullyhop/burning-4.png +share/games/supertux2/images/creatures/skullyhop/burning-5.png +share/games/supertux2/images/creatures/skullyhop/burning-6.png +share/games/supertux2/images/creatures/skullyhop/burning-7.png +share/games/supertux2/images/creatures/skullyhop/burning-8.png +share/games/supertux2/images/creatures/skullyhop/burning-9.png share/games/supertux2/images/creatures/skullyhop/charging-0.png share/games/supertux2/images/creatures/skullyhop/charging-1.png +share/games/supertux2/images/creatures/skullyhop/frozen.png share/games/supertux2/images/creatures/skullyhop/jumping-0.png share/games/supertux2/images/creatures/skullyhop/skullyhop.sprite share/games/supertux2/images/creatures/skullyhop/squished-0.png share/games/supertux2/images/creatures/skullyhop/standing-0.png share/games/supertux2/images/creatures/skydive/skydive.png share/games/supertux2/images/creatures/skydive/skydive.sprite +share/games/supertux2/images/creatures/snail/burning-0.png +share/games/supertux2/images/creatures/snail/burning-1.png +share/games/supertux2/images/creatures/snail/burning-2.png +share/games/supertux2/images/creatures/snail/burning-3.png +share/games/supertux2/images/creatures/snail/burning-4.png +share/games/supertux2/images/creatures/snail/burning-5.png +share/games/supertux2/images/creatures/snail/burning-6.png +share/games/supertux2/images/creatures/snail/burning-7.png +share/games/supertux2/images/creatures/snail/burning-8.png +share/games/supertux2/images/creatures/snail/frozen.png share/games/supertux2/images/creatures/snail/snail.sprite share/games/supertux2/images/creatures/snail/snowsnail.png share/games/supertux2/images/creatures/snail/snowsnail1.png @@ -431,32 +613,75 @@ share/games/supertux2/images/creatures/s share/games/supertux2/images/creatures/snail/snowsnail_flip6.png share/games/supertux2/images/creatures/snail/snowsnail_flip7.png share/games/supertux2/images/creatures/snowball/collision-left.png +share/games/supertux2/images/creatures/snowball/cpt-gmelting-0.png +share/games/supertux2/images/creatures/snowball/cpt-gmelting-1.png +share/games/supertux2/images/creatures/snowball/cpt-gmelting-2.png +share/games/supertux2/images/creatures/snowball/cpt-gmelting-3.png +share/games/supertux2/images/creatures/snowball/cpt-gmelting-4.png share/games/supertux2/images/creatures/snowball/cpt-left-0.png share/games/supertux2/images/creatures/snowball/cpt-left-1.png share/games/supertux2/images/creatures/snowball/cpt-left-2.png +share/games/supertux2/images/creatures/snowball/cpt-melting-0.png +share/games/supertux2/images/creatures/snowball/cpt-melting-1.png +share/games/supertux2/images/creatures/snowball/cpt-melting-2.png +share/games/supertux2/images/creatures/snowball/cpt-melting-3.png share/games/supertux2/images/creatures/snowball/cpt-right-0.png share/games/supertux2/images/creatures/snowball/cpt-right-1.png share/games/supertux2/images/creatures/snowball/cpt-right-2.png share/games/supertux2/images/creatures/snowball/cpt-snowball.sprite share/games/supertux2/images/creatures/snowball/cpt-squished-left.png share/games/supertux2/images/creatures/snowball/cpt-squished-right.png +share/games/supertux2/images/creatures/snowball/gmelting-0.png +share/games/supertux2/images/creatures/snowball/gmelting-1.png +share/games/supertux2/images/creatures/snowball/gmelting-2.png +share/games/supertux2/images/creatures/snowball/gmelting-3.png +share/games/supertux2/images/creatures/snowball/gmelting-4.png share/games/supertux2/images/creatures/snowball/kamikaze-left.png +share/games/supertux2/images/creatures/snowball/kamikaze-melting-0.png +share/games/supertux2/images/creatures/snowball/kamikaze-melting-1.png +share/games/supertux2/images/creatures/snowball/kamikaze-melting-2.png +share/games/supertux2/images/creatures/snowball/kamikaze-melting-3.png share/games/supertux2/images/creatures/snowball/kamikaze-snowball.sprite share/games/supertux2/images/creatures/snowball/left-0.png share/games/supertux2/images/creatures/snowball/left-1.png share/games/supertux2/images/creatures/snowball/left-2.png +share/games/supertux2/images/creatures/snowball/melting-0.png +share/games/supertux2/images/creatures/snowball/melting-1.png +share/games/supertux2/images/creatures/snowball/melting-2.png +share/games/supertux2/images/creatures/snowball/melting-3.png share/games/supertux2/images/creatures/snowball/mrs-squished-left.png share/games/supertux2/images/creatures/snowball/smart-snowball.sprite share/games/supertux2/images/creatures/snowball/snowball.sprite +share/games/supertux2/images/creatures/snowball/sport-gmelting-0.png +share/games/supertux2/images/creatures/snowball/sport-gmelting-1.png +share/games/supertux2/images/creatures/snowball/sport-gmelting-2.png +share/games/supertux2/images/creatures/snowball/sport-gmelting-3.png +share/games/supertux2/images/creatures/snowball/sport-gmelting-4.png share/games/supertux2/images/creatures/snowball/sport-left-0.png share/games/supertux2/images/creatures/snowball/sport-left-1.png share/games/supertux2/images/creatures/snowball/sport-left-2.png +share/games/supertux2/images/creatures/snowball/sport-melting-0.png +share/games/supertux2/images/creatures/snowball/sport-melting-1.png +share/games/supertux2/images/creatures/snowball/sport-melting-2.png +share/games/supertux2/images/creatures/snowball/sport-melting-3.png share/games/supertux2/images/creatures/snowball/squished-left.png +share/games/supertux2/images/creatures/snowjumpy/gear-cracked.png +share/games/supertux2/images/creatures/snowjumpy/gear.png share/games/supertux2/images/creatures/snowjumpy/iced-left-up.png share/games/supertux2/images/creatures/snowjumpy/left-down.png share/games/supertux2/images/creatures/snowjumpy/left-middle.png share/games/supertux2/images/creatures/snowjumpy/left-up.png +share/games/supertux2/images/creatures/snowjumpy/melting-0.png +share/games/supertux2/images/creatures/snowjumpy/melting-1.png +share/games/supertux2/images/creatures/snowjumpy/melting-2.png +share/games/supertux2/images/creatures/snowjumpy/melting-3.png +share/games/supertux2/images/creatures/snowjumpy/melting-4.png share/games/supertux2/images/creatures/snowjumpy/snowjumpy.sprite +share/games/supertux2/images/creatures/snowman/gmelting-0.png +share/games/supertux2/images/creatures/snowman/gmelting-1.png +share/games/supertux2/images/creatures/snowman/gmelting-2.png +share/games/supertux2/images/creatures/snowman/gmelting-3.png +share/games/supertux2/images/creatures/snowman/gmelting-4.png share/games/supertux2/images/creatures/snowman/headless1.png share/games/supertux2/images/creatures/snowman/headless2.png share/games/supertux2/images/creatures/snowman/headless3.png @@ -465,6 +690,10 @@ share/games/supertux2/images/creatures/s share/games/supertux2/images/creatures/snowman/headless6.png share/games/supertux2/images/creatures/snowman/headless7.png share/games/supertux2/images/creatures/snowman/headless8.png +share/games/supertux2/images/creatures/snowman/melting-0.png +share/games/supertux2/images/creatures/snowman/melting-1.png +share/games/supertux2/images/creatures/snowman/melting-2.png +share/games/supertux2/images/creatures/snowman/melting-3.png share/games/supertux2/images/creatures/snowman/snowman.sprite share/games/supertux2/images/creatures/snowman/walk1.png share/games/supertux2/images/creatures/snowman/walk2.png @@ -474,6 +703,15 @@ share/games/supertux2/images/creatures/s share/games/supertux2/images/creatures/snowman/walk6.png share/games/supertux2/images/creatures/snowman/walk7.png share/games/supertux2/images/creatures/snowman/walk8.png +share/games/supertux2/images/creatures/spidermite/burning-0.png +share/games/supertux2/images/creatures/spidermite/burning-1.png +share/games/supertux2/images/creatures/spidermite/burning-2.png +share/games/supertux2/images/creatures/spidermite/burning-3.png +share/games/supertux2/images/creatures/spidermite/burning-4.png +share/games/supertux2/images/creatures/spidermite/burning-5.png +share/games/supertux2/images/creatures/spidermite/burning-6.png +share/games/supertux2/images/creatures/spidermite/burning-7.png +share/games/supertux2/images/creatures/spidermite/spidermite-frozen.png share/games/supertux2/images/creatures/spidermite/spidermite-squish.png share/games/supertux2/images/creatures/spidermite/spidermite.png share/games/supertux2/images/creatures/spidermite/spidermite.sprite @@ -482,12 +720,20 @@ 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.sprite +share/games/supertux2/images/creatures/spike/spikedown2.sprite share/games/supertux2/images/creatures/spike/spikeup.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 share/games/supertux2/images/creatures/spiky/iced-left.png share/games/supertux2/images/creatures/spiky/left-0.png share/games/supertux2/images/creatures/spiky/left-1.png share/games/supertux2/images/creatures/spiky/left-2.png +share/games/supertux2/images/creatures/spiky/melting-0.png +share/games/supertux2/images/creatures/spiky/melting-1.png +share/games/supertux2/images/creatures/spiky/melting-2.png +share/games/supertux2/images/creatures/spiky/melting-3.png share/games/supertux2/images/creatures/spiky/sleeping-left.png share/games/supertux2/images/creatures/spiky/sleepingspiky.sprite share/games/supertux2/images/creatures/spiky/spiky.sprite @@ -497,6 +743,14 @@ share/games/supertux2/images/creatures/s share/games/supertux2/images/creatures/stalactite/broken.png share/games/supertux2/images/creatures/stalactite/falling.png share/games/supertux2/images/creatures/stalactite/stalactite.sprite +share/games/supertux2/images/creatures/toad/burning-0.png +share/games/supertux2/images/creatures/toad/burning-1.png +share/games/supertux2/images/creatures/toad/burning-2.png +share/games/supertux2/images/creatures/toad/burning-3.png +share/games/supertux2/images/creatures/toad/burning-4.png +share/games/supertux2/images/creatures/toad/burning-5.png +share/games/supertux2/images/creatures/toad/burning-6.png +share/games/supertux2/images/creatures/toad/toad-frozen.png share/games/supertux2/images/creatures/toad/toad-idle-0.png share/games/supertux2/images/creatures/toad/toad-idle-1.png share/games/supertux2/images/creatures/toad/toad-jumping.png @@ -635,6 +889,17 @@ share/games/supertux2/images/creatures/t share/games/supertux2/images/creatures/tux/small/walk-6.png share/games/supertux2/images/creatures/tux/small/walk-7.png share/games/supertux2/images/creatures/tux/tux.sprite +share/games/supertux2/images/creatures/walkingleaf/burning-0.png +share/games/supertux2/images/creatures/walkingleaf/burning-1.png +share/games/supertux2/images/creatures/walkingleaf/burning-2.png +share/games/supertux2/images/creatures/walkingleaf/burning-3.png +share/games/supertux2/images/creatures/walkingleaf/burning-4.png +share/games/supertux2/images/creatures/walkingleaf/burning-5.png +share/games/supertux2/images/creatures/walkingleaf/burning-6.png +share/games/supertux2/images/creatures/walkingleaf/burning-7.png +share/games/supertux2/images/creatures/walkingleaf/burning-8.png +share/games/supertux2/images/creatures/walkingleaf/burning-9.png +share/games/supertux2/images/creatures/walkingleaf/frozen.png share/games/supertux2/images/creatures/walkingleaf/left-0.png share/games/supertux2/images/creatures/walkingleaf/left-1.png share/games/supertux2/images/creatures/walkingleaf/left-2.png @@ -697,7 +962,16 @@ share/games/supertux2/images/creatures/y share/games/supertux2/images/creatures/yeti/yeti.png share/games/supertux2/images/creatures/yeti/yeti.sprite share/games/supertux2/images/creatures/yeti/yeti_jump.png +share/games/supertux2/images/creatures/zeekling/burning-0.png +share/games/supertux2/images/creatures/zeekling/burning-1.png +share/games/supertux2/images/creatures/zeekling/burning-2.png +share/games/supertux2/images/creatures/zeekling/burning-3.png +share/games/supertux2/images/creatures/zeekling/burning-4.png +share/games/supertux2/images/creatures/zeekling/burning-5.png +share/games/supertux2/images/creatures/zeekling/burning-6.png +share/games/supertux2/images/creatures/zeekling/burning-7.png share/games/supertux2/images/creatures/zeekling/diving.png +share/games/supertux2/images/creatures/zeekling/frozen.png share/games/supertux2/images/creatures/zeekling/left-0.png share/games/supertux2/images/creatures/zeekling/left-1.png share/games/supertux2/images/creatures/zeekling/left-2.png @@ -720,6 +994,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-plant.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 @@ -792,7 +1067,6 @@ share/games/supertux2/images/engine/font 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 @@ -879,9 +1153,15 @@ share/games/supertux2/images/objects/bon share/games/supertux2/images/objects/bonus_block/infoblock.sprite share/games/supertux2/images/objects/bonus_block/invisible.png share/games/supertux2/images/objects/bonus_block/invisibleblock.sprite -share/games/supertux2/images/objects/bonus_block/light.xcf share/games/supertux2/images/objects/bonus_block/off.png share/games/supertux2/images/objects/bonus_block/on.png +share/games/supertux2/images/objects/bonus_block/orange_0.png +share/games/supertux2/images/objects/bonus_block/orange_1.png +share/games/supertux2/images/objects/bonus_block/orange_2.png +share/games/supertux2/images/objects/bonus_block/orange_3.png +share/games/supertux2/images/objects/bonus_block/orange_4.png +share/games/supertux2/images/objects/bonus_block/orange_empty.png +share/games/supertux2/images/objects/bonus_block/orangeblock.sprite share/games/supertux2/images/objects/bonus_block/purple_0.png share/games/supertux2/images/objects/bonus_block/purple_1.png share/games/supertux2/images/objects/bonus_block/purple_2.png @@ -889,6 +1169,9 @@ share/games/supertux2/images/objects/bon share/games/supertux2/images/objects/bonus_block/purple_4.png share/games/supertux2/images/objects/bonus_block/purple_empty.png share/games/supertux2/images/objects/bonus_block/purpleblock.sprite +share/games/supertux2/images/objects/bonus_block/scriptblock.png +share/games/supertux2/images/objects/bonus_block/scriptblock.sprite +share/games/supertux2/images/objects/bonus_block/scriptblock_empty.png share/games/supertux2/images/objects/bullets/fire_bullet-0.png share/games/supertux2/images/objects/bullets/fire_bullet-1.png share/games/supertux2/images/objects/bullets/fire_bullet-2.png @@ -937,6 +1220,18 @@ share/games/supertux2/images/objects/coi 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/crystals/a1.png +share/games/supertux2/images/objects/crystals/a2.png +share/games/supertux2/images/objects/crystals/b1.png +share/games/supertux2/images/objects/crystals/b2.png +share/games/supertux2/images/objects/crystals/c1.png +share/games/supertux2/images/objects/crystals/c2.png +share/games/supertux2/images/objects/crystals/crystal_1.sprite +share/games/supertux2/images/objects/crystals/crystal_2.sprite +share/games/supertux2/images/objects/crystals/crystal_3.sprite +share/games/supertux2/images/objects/crystals/crystal_4.sprite +share/games/supertux2/images/objects/crystals/d1.png +share/games/supertux2/images/objects/crystals/d2.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 @@ -1045,6 +1340,7 @@ share/games/supertux2/images/objects/lig 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/logo/logo_final.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 @@ -1098,6 +1394,8 @@ share/games/supertux2/images/objects/par 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/santa-cap-big.png +share/games/supertux2/images/objects/particles/santa-cap-big.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 @@ -1123,6 +1421,14 @@ share/games/supertux2/images/objects/pla share/games/supertux2/images/objects/platforms/icefloe.sprite share/games/supertux2/images/objects/platforms/icefloe_small.png share/games/supertux2/images/objects/platforms/icefloe_small.sprite +share/games/supertux2/images/objects/platforms/icesquare1.png +share/games/supertux2/images/objects/platforms/icesquare1.sprite +share/games/supertux2/images/objects/platforms/icesquare2.png +share/games/supertux2/images/objects/platforms/icesquare2.sprite +share/games/supertux2/images/objects/platforms/icesquare3.png +share/games/supertux2/images/objects/platforms/icesquare3.sprite +share/games/supertux2/images/objects/platforms/icesquare4.png +share/games/supertux2/images/objects/platforms/icesquare4.sprite share/games/supertux2/images/objects/platforms/pedestal.png share/games/supertux2/images/objects/platforms/pedestal.sprite share/games/supertux2/images/objects/platforms/small.png @@ -1185,13 +1491,32 @@ share/games/supertux2/images/objects/rus share/games/supertux2/images/objects/rusty-trampoline/trampoline2-3.png share/games/supertux2/images/objects/rusty-trampoline/trampoline2-4.png share/games/supertux2/images/objects/rusty-trampoline/trampoline2-5.png +share/games/supertux2/images/objects/sawblade/Thunder1.png +share/games/supertux2/images/objects/sawblade/Thunder2.png +share/games/supertux2/images/objects/sawblade/Thunder3.png +share/games/supertux2/images/objects/sawblade/bigball1.png share/games/supertux2/images/objects/sawblade/default-0.png share/games/supertux2/images/objects/sawblade/default-1.png share/games/supertux2/images/objects/sawblade/default-2.png share/games/supertux2/images/objects/sawblade/default-3.png +share/games/supertux2/images/objects/sawblade/goodball.sprite +share/games/supertux2/images/objects/sawblade/left.png +share/games/supertux2/images/objects/sawblade/right.png share/games/supertux2/images/objects/sawblade/sawblade.sprite +share/games/supertux2/images/objects/sawblade/spikeleft.sprite +share/games/supertux2/images/objects/sawblade/spikeright.sprite +share/games/supertux2/images/objects/sawblade/thunder.sprite share/games/supertux2/images/objects/skull_tile/skull_tile.sprite share/games/supertux2/images/objects/skulls/skull.png +share/games/supertux2/images/objects/snowman/s_man_1.png +share/games/supertux2/images/objects/snowman/s_man_2.png +share/games/supertux2/images/objects/snowman/s_man_3.png +share/games/supertux2/images/objects/snowman/s_manbig_1.png +share/games/supertux2/images/objects/snowman/s_manbig_2.png +share/games/supertux2/images/objects/snowman/s_manbig_3.png +share/games/supertux2/images/objects/snowman/snow_man_big.sprite +share/games/supertux2/images/objects/snowman/snow_man_big_passable.sprite +share/games/supertux2/images/objects/snowman/snow_man_small.sprite share/games/supertux2/images/objects/spotlight/light.png share/games/supertux2/images/objects/spotlight/light.sprite share/games/supertux2/images/objects/spotlight/lightcone.png @@ -1264,6 +1589,28 @@ share/games/supertux2/images/objects/uns share/games/supertux2/images/objects/unstable_tile/snow-9.png share/games/supertux2/images/objects/unstable_tile/snow.sprite share/games/supertux2/images/objects/unstable_tile/unstable_tile.sprite +share/games/supertux2/images/objects/water_drop/pink-drop.png +share/games/supertux2/images/objects/water_drop/pink-particle-0.png +share/games/supertux2/images/objects/water_drop/pink-particle-1.png +share/games/supertux2/images/objects/water_drop/pink-particle-2.png +share/games/supertux2/images/objects/water_drop/pink-particle-3.png +share/games/supertux2/images/objects/water_drop/pink-splash-0.png +share/games/supertux2/images/objects/water_drop/pink-splash-1.png +share/games/supertux2/images/objects/water_drop/pink-splash-2.png +share/games/supertux2/images/objects/water_drop/pink-splash-3.png +share/games/supertux2/images/objects/water_drop/pink-splash-4.png +share/games/supertux2/images/objects/water_drop/pink_drop.sprite +share/games/supertux2/images/objects/water_drop/water-drop.png +share/games/supertux2/images/objects/water_drop/water-particle-0.png +share/games/supertux2/images/objects/water_drop/water-particle-1.png +share/games/supertux2/images/objects/water_drop/water-particle-2.png +share/games/supertux2/images/objects/water_drop/water-particle-3.png +share/games/supertux2/images/objects/water_drop/water-splash-0.png +share/games/supertux2/images/objects/water_drop/water-splash-1.png +share/games/supertux2/images/objects/water_drop/water-splash-2.png +share/games/supertux2/images/objects/water_drop/water-splash-3.png +share/games/supertux2/images/objects/water_drop/water-splash-4.png +share/games/supertux2/images/objects/water_drop/water_drop.sprite share/games/supertux2/images/objects/weak_block/melt_01.png share/games/supertux2/images/objects/weak_block/melt_02.png share/games/supertux2/images/objects/weak_block/melt_03.png @@ -1277,7 +1624,6 @@ share/games/supertux2/images/objects/wea share/games/supertux2/images/objects/weak_block/melt_11.png share/games/supertux2/images/objects/weak_block/meltbox.png share/games/supertux2/images/objects/weak_block/meltbox.sprite -share/games/supertux2/images/objects/weak_block/meltbox.xcf share/games/supertux2/images/objects/weak_block/straw.png share/games/supertux2/images/objects/weak_block/straw_01.png share/games/supertux2/images/objects/weak_block/straw_02.png @@ -1330,6 +1676,7 @@ 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 @@ -1349,6 +1696,8 @@ 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.png +share/games/supertux2/images/tiles/background/tile-160.png share/games/supertux2/images/tiles/blocks/bigblock.png share/games/supertux2/images/tiles/blocks/block10.png share/games/supertux2/images/tiles/blocks/block11.png @@ -1365,6 +1714,7 @@ share/games/supertux2/images/tiles/block 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/blocks/spikes-all.png share/games/supertux2/images/tiles/castle/background.png share/games/supertux2/images/tiles/castle/brown.png share/games/supertux2/images/tiles/castle/castle_block.png @@ -1386,7 +1736,6 @@ share/games/supertux2/images/tiles/castl 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 @@ -1478,6 +1827,7 @@ share/games/supertux2/images/tiles/fores share/games/supertux2/images/tiles/forest/vine1.png share/games/supertux2/images/tiles/forest/wall.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 share/games/supertux2/images/tiles/ghostwood/ghostwood-5.png share/games/supertux2/images/tiles/ghostwood/ghostwood-6.png @@ -1507,6 +1857,7 @@ share/games/supertux2/images/tiles/jungl share/games/supertux2/images/tiles/jungle/jungle12-2.png share/games/supertux2/images/tiles/jungle/jungle12-3.png share/games/supertux2/images/tiles/jungle/jungle12-4.png +share/games/supertux2/images/tiles/jungle/special.png share/games/supertux2/images/tiles/lava/lava-1.png share/games/supertux2/images/tiles/lava/lava-2.png share/games/supertux2/images/tiles/lava/lava-3.png @@ -1584,11 +1935,9 @@ share/games/supertux2/images/tiles/lava/ share/games/supertux2/images/tiles/lava/zone/surface-1-2.png share/games/supertux2/images/tiles/lava/zone/surface-1-3.png share/games/supertux2/images/tiles/lava/zone/surface-1-4.png -share/games/supertux2/images/tiles/lava/zone/template.xcf share/games/supertux2/images/tiles/lightmap/lightmap-bw.png share/games/supertux2/images/tiles/nightcave/ground.png share/games/supertux2/images/tiles/pipe/blue.png -share/games/supertux2/images/tiles/pipe/colors.xcf share/games/supertux2/images/tiles/pipe/green.png share/games/supertux2/images/tiles/pipe/mask.png share/games/supertux2/images/tiles/pole/bend.png @@ -1606,6 +1955,7 @@ share/games/supertux2/images/tiles/signs 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/platform.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 @@ -1632,8 +1982,8 @@ share/games/supertux2/images/tiles/snow/ share/games/supertux2/images/tiles/snow/variants.png share/games/supertux2/images/tiles/snowcastle/foreground.png share/games/supertux2/images/tiles/snowmountain/ground.png -share/games/supertux2/images/tiles/snowmountain/ground.xcf share/games/supertux2/images/tiles/snowmountain/ground2.png +share/games/supertux2/images/tiles/snowmountain/ground3.png share/games/supertux2/images/tiles/test/test.png share/games/supertux2/images/tiles/water/antarctic-1.png share/games/supertux2/images/tiles/water/antarctic-2.png @@ -1700,7 +2050,6 @@ share/games/supertux2/images/worldmap/an share/games/supertux2/images/worldmap/antarctica/woodconcave.png share/games/supertux2/images/worldmap/antarctica/woodconvex.png share/games/supertux2/images/worldmap/common/boat/boat.sprite -share/games/supertux2/images/worldmap/common/boat/boat.xcf share/games/supertux2/images/worldmap/common/boat/boat_0.png share/games/supertux2/images/worldmap/common/boat/boat_0_fire.png share/games/supertux2/images/worldmap/common/boat/boat_0_ice.png @@ -1735,7 +2084,6 @@ share/games/supertux2/images/worldmap/co share/games/supertux2/images/worldmap/common/leveldot_blue-01.png 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 @@ -1859,12 +2207,6 @@ share/games/supertux2/images/worldmap/ha 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 -share/games/supertux2/images/worldmap/ice/gimp/crystals.xcf -share/games/supertux2/images/worldmap/ice/gimp/icecave.xcf -share/games/supertux2/images/worldmap/ice/gimp/land.xcf -share/games/supertux2/images/worldmap/ice/gimp/mountain.xcf -share/games/supertux2/images/worldmap/ice/gimp/thin_ice.xcf share/games/supertux2/images/worldmap/ice/icecave.png share/games/supertux2/images/worldmap/ice/land.png share/games/supertux2/images/worldmap/ice/mountain.png @@ -1873,15 +2215,8 @@ share/games/supertux2/images/worldmap/ic share/games/supertux2/images/worldmap/ice/woodconvex.png share/games/supertux2/images/worldmap/shared/bridge.png share/games/supertux2/images/worldmap/shared/castle.png -share/games/supertux2/images/worldmap/shared/gimp/bridge.xcf -share/games/supertux2/images/worldmap/shared/gimp/castle.xcf -share/games/supertux2/images/worldmap/shared/gimp/paths.xcf -share/games/supertux2/images/worldmap/shared/gimp/pier.xcf -share/games/supertux2/images/worldmap/shared/gimp/shalow_water.xcf -share/games/supertux2/images/worldmap/shared/gimp/surf-test.xcf -share/games/supertux2/images/worldmap/shared/gimp/surf.xcf -share/games/supertux2/images/worldmap/shared/gimp/water.xcf share/games/supertux2/images/worldmap/shared/invisible_paths-editor.png +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/shallow_water.png @@ -1918,6 +2253,7 @@ share/games/supertux2/levels/bonus1/bonu 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/br.po share/games/supertux2/levels/bonus1/ca.po share/games/supertux2/levels/bonus1/cmn.po share/games/supertux2/levels/bonus1/cs.po @@ -1930,12 +2266,14 @@ share/games/supertux2/levels/bonus1/et.p 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/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/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/lt.po @@ -1954,6 +2292,7 @@ share/games/supertux2/levels/bonus1/ro.p *** DIFF OUTPUT TRUNCATED AT 1000 LINES ***