diff -Nru supertuxkart-0.9.2+dfsg/android/AndroidManifest.xml supertuxkart-0.9.3/android/AndroidManifest.xml --- supertuxkart-0.9.2+dfsg/android/AndroidManifest.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/android/AndroidManifest.xml 2017-11-09 04:24:39.000000000 +0000 @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru supertuxkart-0.9.2+dfsg/android/Android.mk supertuxkart-0.9.3/android/Android.mk --- supertuxkart-0.9.2+dfsg/android/Android.mk 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/android/Android.mk 2017-04-23 17:18:56.000000000 +0000 @@ -0,0 +1,174 @@ +LOCAL_PATH := $(call my-dir) +include $(CLEAR_VARS) + + +# OpenAL +LOCAL_MODULE := openal +LOCAL_SRC_FILES := obj/openal/libopenal.a +include $(PREBUILT_STATIC_LIBRARY) +include $(CLEAR_VARS) + + +# OGG +LOCAL_MODULE := ogg +LOCAL_SRC_FILES := obj/libogg/src/.libs/libogg.a +include $(PREBUILT_STATIC_LIBRARY) +include $(CLEAR_VARS) + + +# Vorbis +LOCAL_MODULE := vorbis +LOCAL_SRC_FILES := obj/libvorbis/lib/.libs/libvorbis.a +include $(PREBUILT_STATIC_LIBRARY) +include $(CLEAR_VARS) + + +# Vorbisfile +LOCAL_MODULE := vorbisfile +LOCAL_SRC_FILES := obj/libvorbis/lib/.libs/libvorbisfile.a +include $(PREBUILT_STATIC_LIBRARY) +include $(CLEAR_VARS) + + +# CURL +LOCAL_MODULE := curl +LOCAL_SRC_FILES := obj/curl/lib/.libs/libcurl.a +include $(PREBUILT_STATIC_LIBRARY) +include $(CLEAR_VARS) + + +# libcrypto +LOCAL_MODULE := libcrypto +LOCAL_SRC_FILES := obj/openssl/libcrypto.a +include $(PREBUILT_STATIC_LIBRARY) +include $(CLEAR_VARS) + + +# libssl +LOCAL_MODULE := libssl +LOCAL_SRC_FILES := obj/openssl/libssl.a +include $(PREBUILT_STATIC_LIBRARY) +include $(CLEAR_VARS) + + +# JPEG +LOCAL_MODULE := jpeglib +LOCAL_SRC_FILES := obj/jpeglib/libjpeglib.a +include $(PREBUILT_STATIC_LIBRARY) +include $(CLEAR_VARS) + + +# Freetype +LOCAL_MODULE := freetype +LOCAL_SRC_FILES := obj/freetype/objs/.libs/libfreetype.a +include $(PREBUILT_STATIC_LIBRARY) +include $(CLEAR_VARS) + + +# zlib +LOCAL_MODULE := zlib +LOCAL_SRC_FILES := obj/zlib/libz.a +include $(PREBUILT_STATIC_LIBRARY) +include $(CLEAR_VARS) + + +# PNG +LOCAL_MODULE := png +LOCAL_SRC_FILES := obj/libpng/libpng.a +include $(PREBUILT_STATIC_LIBRARY) +include $(CLEAR_VARS) + + +# ifaddrs +LOCAL_MODULE := ifaddrs +LOCAL_PATH := . +LOCAL_SRC_FILES := ../lib/ifaddrs/ifaddrs.c +LOCAL_CFLAGS := -I../lib/ifaddrs +include $(BUILD_STATIC_LIBRARY) +include $(CLEAR_VARS) + + +# AngelScript +LOCAL_MODULE := angelscript +LOCAL_PATH := . +LOCAL_CPP_FEATURES += rtti exceptions +LOCAL_SRC_FILES := $(wildcard ../lib/angelscript/source/*.S) \ + $(wildcard ../lib/angelscript/source/*.cpp) +LOCAL_CFLAGS := -I../lib/angelscript/source/ +include $(BUILD_STATIC_LIBRARY) +include $(CLEAR_VARS) + + +# ENET +LOCAL_MODULE := enet +LOCAL_PATH := . +LOCAL_CPP_FEATURES += rtti +LOCAL_SRC_FILES := $(wildcard ../lib/enet/*.c) +LOCAL_CFLAGS := -I../lib/enet/include/ -DHAS_SOCKLEN_T +include $(BUILD_STATIC_LIBRARY) +include $(CLEAR_VARS) + + +# Bullet +LOCAL_MODULE := bullet +LOCAL_PATH := . +LOCAL_CPP_FEATURES += rtti +LOCAL_SRC_FILES := $(wildcard ../lib/bullet/src/*/*.cpp) \ + $(wildcard ../lib/bullet/src/*/*/*.cpp) +LOCAL_CFLAGS := -I../lib/bullet/src/ +include $(BUILD_STATIC_LIBRARY) +include $(CLEAR_VARS) + + +# Irrlicht +LOCAL_MODULE := irrlicht +LOCAL_PATH := . +LOCAL_CPP_FEATURES += rtti +LOCAL_SRC_FILES := $(wildcard ../lib/irrlicht/source/Irrlicht/*.cpp) \ + $(wildcard ../lib/irrlicht/source/Irrlicht/Android/*.cpp) +LOCAL_CFLAGS := -I../lib/irrlicht/source/Irrlicht/ \ + -I../lib/irrlicht/include/ \ + -Iobj/jpeglib/ \ + -Iobj/libpng/ \ + -Iobj/zlib/ \ + -I$(call my-dir)/../../sources/android/native_app_glue + -std=gnu++0x +LOCAL_STATIC_LIBRARIES := jpeglib png zlib +include $(BUILD_STATIC_LIBRARY) +include $(CLEAR_VARS) + + +# STK +LOCAL_MODULE := main +LOCAL_PATH := . +LOCAL_CPP_FEATURES += rtti exceptions +LOCAL_SRC_FILES := $(wildcard ../src/*.cpp) \ + $(wildcard ../src/*/*.cpp) \ + $(wildcard ../src/*/*/*.cpp) +LOCAL_LDLIBS := -llog -landroid -lEGL -lGLESv3 -lOpenSLES +LOCAL_CFLAGS := -I../lib/angelscript/include \ + -I../lib/bullet/src \ + -I../lib/enet/include \ + -I../lib/ifaddrs \ + -I../lib/irrlicht/include \ + -I../lib/irrlicht/source/Irrlicht \ + -I../src \ + -Iobj/curl/include \ + -Iobj/freetype/include \ + -Iobj/libogg/include \ + -Iobj/libvorbis/include \ + -Iobj/openal/include \ + -I$(call my-dir)/../../sources/android/native_app_glue \ + -DUSE_GLES2 \ + -DHAVE_OGGVORBIS \ + -DNDEBUG \ + -std=gnu++0x + +LOCAL_STATIC_LIBRARIES := irrlicht bullet enet freetype ifaddrs angelscript \ + vorbisfile vorbis ogg openal curl libssl libcrypto \ + gnustl_static android_native_app_glue + +include $(BUILD_SHARED_LIBRARY) +include $(CLEAR_VARS) + +$(call import-module,android/native_app_glue) diff -Nru supertuxkart-0.9.2+dfsg/android/build.gradle supertuxkart-0.9.3/android/build.gradle --- supertuxkart-0.9.2+dfsg/android/build.gradle 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/android/build.gradle 2017-10-19 04:33:01.000000000 +0000 @@ -0,0 +1,31 @@ +buildscript +{ + repositories + { + jcenter() + } + + dependencies + { + classpath 'com.android.tools.build:gradle:2.2.3' + } +} + +apply plugin: 'com.android.application' + +android +{ + compileSdkVersion sdk_version.toInteger() + buildToolsVersion build_tools_ver + + sourceSets + { + main + { + manifest.srcFile 'AndroidManifest.xml' + jniLibs.srcDirs = ['libs'] + res.srcDirs = ['res'] + assets.srcDirs = ['assets'] + } + } +} diff -Nru supertuxkart-0.9.2+dfsg/android/build.xml supertuxkart-0.9.3/android/build.xml --- supertuxkart-0.9.2+dfsg/android/build.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/android/build.xml 2017-04-23 17:18:56.000000000 +0000 @@ -0,0 +1,6 @@ + + + + + + diff -Nru supertuxkart-0.9.2+dfsg/android/generate_assets.sh supertuxkart-0.9.3/android/generate_assets.sh --- supertuxkart-0.9.2+dfsg/android/generate_assets.sh 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/android/generate_assets.sh 2017-10-19 04:33:01.000000000 +0000 @@ -0,0 +1,598 @@ +#!/bin/sh +# +# (C) 2016-2017 Dawid Gan, under the GPLv3 +# +# A script that generates data files for Android apk + + +# Below you can find some simple configuration variables. +# It's allowed to set "all" for KARTS and TRACKS if it's intended to create +# package with full data. +# The karts and tracks directories shouldn't exist in ASSETS_DIRS variable +# because they are handled separately. +# The TEXTURE_SIZE and SOUND_QUALITY take effect only if DECREASE_QUALITY has +# value greater than 0. +# The CONVERT_TO_JPG variable enables converting all images that are safe to +# convert and keeps other images untouched. +# The script needs imagemagick and ogg utils installed to use DECREASE_QUALITY +# feature + +################################################################################ + +export KARTS="all" +export TRACKS="abyss battleisland cave cornfield_crossing endcutscene \ + featunlocked fortmagma gplose gpwin hacienda icy_soccer_field \ + introcutscene introcutscene2 lighthouse mines olivermath \ + overworld sandtrack scotland snowmountain snowtuxpeak \ + soccer_field stadium tutorial zengarden" + +export ASSETS_PATHS="../data \ + ../../stk-assets \ + ../../supertuxkart-assets" + +export ASSETS_DIRS="library models music sfx textures" + +export TEXTURE_SIZE=256 +export JPEG_QUALITY=85 +export PNG_QUALITY=95 +export SOUND_QUALITY=42 +export SOUND_MONO=1 +export SOUND_SAMPLE=32000 + +export RUN_OPTIMIZE_SCRIPT=0 +export DECREASE_QUALITY=1 +export CONVERT_TO_JPG=1 + +export CONVERT_TO_JPG_BLACKLIST="data/karts/hexley/hexley_kart_diffuse.png" + +export BLACKLIST_FILES="data/music/cocoa_river_fast.ogg2" + +################################################################################ + +export LANG=C + +cd "`dirname "$0"`" + +# Find assets path +for ASSETS_PATH in $ASSETS_PATHS; do + if [ -d $ASSETS_PATH ] && [ `ls $ASSETS_PATH | grep -c tracks` -gt 0 ]; then + echo "Assets found in $ASSETS_PATH" + ASSETS_PATH_FOUND=1 + break + fi +done + +if [ -z $ASSETS_PATH_FOUND ]; then + echo "Couldn't find assets path" + exit 1 +fi + +if [ ! -d "../data" ]; then + echo "Couldn't find data directory" + exit 1 +fi + + +# Clear previous assets directory +echo "Clear previous assets directory" +rm -rf assets + + +# Copy all assets +echo "Copy all assets" + +mkdir -p assets/data + +for DIR in `ls $ASSETS_PATH`; do + CAN_BE_COPIED=0 + + for ASSETS_DIR in $ASSETS_DIRS; do + if [ $DIR = $ASSETS_DIR ]; then + CAN_BE_COPIED=1 + break + fi + done; + + # Don't copy karts and tracks. It will be handled later + BLACKLIST_ASSETS="karts tracks" + for ASSETS_DIR in $BLACKLIST_ASSETS; do + if [ $DIR = $ASSETS_DIR ]; then + CAN_BE_COPIED=0 + break + fi + done; + + if [ $CAN_BE_COPIED -gt 0 ]; then + cp -a "$ASSETS_PATH/$DIR" assets/data/ + fi +done; + + +# Copy selected tracks +echo "Copy selected tracks" + +mkdir -p assets/data/tracks + +for DIR in `ls $ASSETS_PATH/tracks`; do + CAN_BE_COPIED=0 + + if [ "$TRACKS" != "all" ]; then + for TRACK in $TRACKS; do + if [ $DIR = $TRACK ]; then + CAN_BE_COPIED=1 + break + fi + done; + else + CAN_BE_COPIED=1 + fi + + if [ $CAN_BE_COPIED -gt 0 ]; then + cp -a "$ASSETS_PATH/tracks/$DIR" assets/data/tracks/ + fi +done + + +# Copy selected karts +echo "Copy selected karts" + +mkdir -p assets/data/karts + +for DIR in `ls $ASSETS_PATH/karts`; do + CAN_BE_COPIED=0 + + if [ "$KARTS" != "all" ]; then + for KART in $KARTS; do + if [ $DIR = $KART ]; then + CAN_BE_COPIED=1 + break + fi + done; + else + CAN_BE_COPIED=1 + fi + + if [ $CAN_BE_COPIED -gt 0 ]; then + cp -a "$ASSETS_PATH/karts/$DIR" assets/data/karts/ + fi +done + + +# Decrease assets quality in order to save some disk space and RAM +echo "Decrease assets quality" + +convert_image() +{ + FILE="$1" + FILE_TYPE="$2" + echo "Convert file: $FILE" + + if [ ! -f "$FILE" ]; then + echo " File doesn't exist." + return + fi + + W=`identify -format "%[fx:w]" "$FILE"` + H=`identify -format "%[fx:h]" "$FILE"` + + if [ -z $W ] || [ -z $H ]; then + echo "Couldn't convert $FILE file" + return + fi + + if [ $W -gt $TEXTURE_SIZE ] || [ $H -gt $TEXTURE_SIZE ]; then + if [ $W -gt $H ]; then + SCALED_W=$TEXTURE_SIZE + SCALED_H=$(($TEXTURE_SIZE * $H / $W)) + else + SCALED_W=$(($TEXTURE_SIZE * $W / $H)) + SCALED_H=$TEXTURE_SIZE + fi + + SCALE_CMD="-scale ${SCALED_W}x${SCALED_H}" + fi + + if [ "$FILE_TYPE" = "jpg" ]; then + QUALITY_CMD="-quality $JPEG_QUALITY" + elif [ "$FILE_TYPE" = "png" ]; then + QUALITY_CMD="-quality $PNG_QUALITY" + fi + + convert $SCALE_CMD $QUALITY_CMD "$FILE" "tmp.$FILE_TYPE" + + if [ -s "tmp.$FILE_TYPE" ]; then + SIZE_OLD=`du -k "$FILE" | cut -f1` + SIZE_NEW=`du -k "tmp.$FILE_TYPE" | cut -f1` + + if [ $SIZE_NEW -lt $SIZE_OLD ]; then + mv "tmp.$FILE_TYPE" "$FILE" + fi + fi + + rm -f "tmp.$FILE_TYPE" +} + +convert_sound() +{ + FILE="$1" + echo "Convert file: $FILE" + + if [ ! -f "$FILE" ]; then + echo " File doesn't exist." + return + fi + + oggdec "$FILE" -o tmp.wav + + if [ -s tmp.wav ]; then + OGGENC_CMD="" + + if [ "$SOUND_MONO" -gt 0 ]; then + OGGENC_CMD="$OGGENC_CMD --downmix" + fi + + OGG_RATE=`ogginfo "$FILE" | grep "Rate: " | cut -f 2 -d " " \ + | grep -o '[0-9]*'` + + if [ ! -z "$OGG_RATE" ] && [ "$OGG_RATE" -gt "$SOUND_SAMPLE" ]; then + OGGENC_CMD="$OGGENC_CMD --resample $SOUND_SAMPLE" + fi + + OGGENC_CMD="$OGGENC_CMD -b $SOUND_QUALITY" + + oggenc $OGGENC_CMD tmp.wav -o tmp.ogg + fi + + if [ -s tmp.ogg ]; then + SIZE_OLD=`du -k "$FILE" | cut -f1` + SIZE_NEW=`du -k "tmp.ogg" | cut -f1` + + if [ $SIZE_NEW -lt $SIZE_OLD ]; then + mv tmp.ogg "$FILE" + fi + fi + + rm -f tmp.wav tmp.ogg +} + +convert_to_jpg() +{ + FILE="$1" + echo "Convert file: $FILE" + + if [ ! -f "$FILE" ]; then + echo " File doesn't exist." + return + fi + + ALREADY_CONVERTED=0 + + if [ -s "./converted_textures" ]; then + while read -r CONVERTED_TEXTURE; do + if [ "$FILE" = "$CONVERTED_TEXTURE" ]; then + ALREADY_CONVERTED=1 + break + fi + done < "./converted_textures" + fi + + if [ $ALREADY_CONVERTED -eq 1 ]; then + return + fi + + BLACKLISTED=0 + + for BLACKLIST_FILE in $CONVERT_TO_JPG_BLACKLIST; do + if [ "$FILE" = "assets/$BLACKLIST_FILE" ]; then + BLACKLISTED=1 + break + fi + done + + if [ $BLACKLISTED -eq 1 ]; then + #echo " File is blacklisted. Ignore..." + continue + fi + + FILE_EXTENSION=`echo "$FILE" | tail -c 5` + + if [ `echo "$FILE_EXTENSION" | head -c 1` != "." ]; then + #echo " Unsupported file extension. Ignore..." + continue + fi + + FILE_FORMAT=`identify -format %m "$FILE"` + + if [ "$FILE_FORMAT" = "JPEG" ]; then + #echo " File is already JPEG. Ignore..." + continue + fi + + IS_OPAQUE=`identify -format '%[opaque]' "$FILE"` + #HAS_ALPHA=`identify -format '%A' "$FILE"` + + if [ "$IS_OPAQUE" = "False" ] || [ "$IS_OPAQUE" = "false" ]; then + #echo " File has alpha channel. Ignore..." + continue + fi + + DIRNAME="`dirname "$FILE"`" + BASENAME="`basename "$FILE"`" + IS_GLOSS_MAP=`find "$DIRNAME" -iname "*.xml" -exec cat {} \; \ + | grep -c "gloss-map=\"$BASENAME\""` + + if [ $IS_GLOSS_MAP -gt 0 ]; then + #echo " File is a gloss-map. Ignore..." + continue + fi + + NEW_FILE="`echo $FILE | head -c -5`.jpg" + + if [ -f "$NEW_FILE" ]; then + #echo " There is already a file with .jpg extension. Ignore..." + continue + fi + + # We can check if new file is smaller + convert -quality $JPEG_QUALITY "$FILE" "$NEW_FILE" + rm -f "$FILE" + + echo "$FILE" >> "./converted_textures" +} + +convert_to_jpg_extract_b3dz() +{ + FILE="$1" + echo "Convert file: $FILE" + + if [ ! -f "$FILE" ]; then + echo " File doesn't exist." + return + fi + + DIRNAME="`dirname "$FILE"`" + + unzip "$FILE" -d "$DIRNAME" + rm -f "$FILE" + + TEXNAME="`basename "$FILE"`" + NEWNAME="`echo $TEXNAME | head -c -6`.b3d" + + sed -i "s/\"$TEXNAME\"/\"$NEWNAME\"/g" "$DIRNAME/kart.xml" +} + +convert_to_jpg_update_b3d() +{ + FILE="$1" + echo "Convert file: $FILE" + + if [ ! -f "$1" ]; then + echo " File doesn't exist." + return + fi + + HEX_FILE=`hexdump -ve '1/1 "%.2x"' "$FILE"` + + TEXS_CHUNK="54455853" + TEXS_CHUNK_POS=24 + + FOUND_CHUNK=`echo $HEX_FILE | head -c $(($TEXS_CHUNK_POS + 8)) \ + | tail -c +$(($TEXS_CHUNK_POS + 1))` + + if [ -z "$FOUND_CHUNK" ] || [ "$FOUND_CHUNK" != "$TEXS_CHUNK" ]; then + echo " File has no textures." + return + fi + + TEXS_SIZE=`echo $HEX_FILE | head -c $(($TEXS_CHUNK_POS + 16)) | tail -c 8` + + TEXS_SIZE_CONVERTED=`echo $TEXS_SIZE | cut -c7-8` + TEXS_SIZE_CONVERTED=$TEXS_SIZE_CONVERTED`echo $TEXS_SIZE | cut -c5-6` + TEXS_SIZE_CONVERTED=$TEXS_SIZE_CONVERTED`echo $TEXS_SIZE | cut -c3-4` + TEXS_SIZE_CONVERTED=$TEXS_SIZE_CONVERTED`echo $TEXS_SIZE | cut -c1-2` + TEXS_SIZE_CONVERTED=`echo $((0x$TEXS_SIZE_CONVERTED))` + + if [ $TEXS_SIZE_CONVERTED -le 0 ]; then + echo " Invalid TEXS size value." + return + fi + + TEXS_BEGIN=$(($TEXS_CHUNK_POS + 16)) + TEXS_END=$(($TEXS_BEGIN + $TEXS_SIZE_CONVERTED * 2)) + HEX_TEXS=`echo $HEX_FILE | head -c $TEXS_END | tail -c +$(($TEXS_BEGIN+1))` + CURR_POS=0 + + while [ $CURR_POS -lt $TEXS_END ]; do + NULL_POS=`echo $HEX_TEXS | tail -c +$(($CURR_POS+1)) | grep -b -o "00" \ + | head -n 1 | cut -f1 -d":"` + + if [ -z $NULL_POS ]; then + #echo " Done." + break + fi + + if [ $NULL_POS -lt 4 ]; then + echo " Something went wrong..." + break + fi + + TEXNAME_BEGIN=$((($TEXS_BEGIN + $CURR_POS) / 2)) + TEXNAME_END=$((($TEXS_BEGIN + $CURR_POS + $NULL_POS) / 2)) + CURR_POS=$(($CURR_POS + $NULL_POS + 58)) + + TEXTURE_NAME=`dd if="$FILE" bs=1 skip=$TEXNAME_BEGIN \ + count=$(($TEXNAME_END - $TEXNAME_BEGIN)) 2> /dev/null` + DIRNAME="`dirname "$FILE"`" + TEXTURE_PATH="$DIRNAME/$TEXTURE_NAME" + + IS_CONVERTED=0 + + while read -r CONVERTED_TEXTURE; do + if [ "$TEXTURE_PATH" = "$CONVERTED_TEXTURE" ]; then + IS_CONVERTED=1 + break + fi + done < "./converted_textures" + + if [ $IS_CONVERTED -eq 1 ]; then + echo -n ".jpg" | dd of="$FILE" bs=1 seek=$(($TEXNAME_END - 4)) \ + conv=notrunc 2> /dev/null + fi; + done +} + +convert_to_jpg_update_spm() +{ + FILE="$1" + echo "Convert file: $FILE" + + if [ ! -f "$1" ]; then + echo " File doesn't exist." + return + fi + + HEX_FILE=`hexdump -ve '1/1 "%.2x"' "$FILE"` + + SP_HEADER="5350" + SP_FOUND=`echo $HEX_FILE | head -c 4` + + if [ -z "$SP_FOUND" ] || [ "$SP_FOUND" != "$SP_HEADER" ]; then + echo " Unsupported format." + return + fi + + TEXS_BEGIN=60 + TEXS_COUNT=`echo $HEX_FILE | head -c $TEXS_BEGIN | tail -c 4` + + TEXS_COUNT_CONVERTED=`echo $TEXS_COUNT | cut -c3-4` + TEXS_COUNT_CONVERTED=$TEXS_COUNT_CONVERTED`echo $TEXS_COUNT | cut -c1-2` + TEXS_COUNT_CONVERTED=`echo $((0x$TEXS_COUNT_CONVERTED))` + TEXS_COUNT_CONVERTED=$(($TEXS_COUNT_CONVERTED * 2)) + + if [ $TEXS_COUNT_CONVERTED -le 0 ]; then + echo " Invalid textures count value." + return + fi + + CURR_POS=$(($TEXS_BEGIN + 2)) + + while [ $TEXS_COUNT_CONVERTED -gt 0 ]; do + TEXS_COUNT_CONVERTED=$(($TEXS_COUNT_CONVERTED - 1)) + + TEX_LEN=`echo $HEX_FILE | head -c $(($CURR_POS)) | tail -c 2` + TEX_LEN=`echo $((0x$TEX_LEN))` + + TEXNAME_BEGIN=$(($CURR_POS / 2)) + TEXNAME_END=$(($CURR_POS / 2 + $TEX_LEN)) + CURR_POS=$(($CURR_POS + 2 + $TEX_LEN * 2)) + + if [ $TEX_LEN -eq 0 ]; then + #echo " Empty texture name, ignore..." + continue + fi + + TEXTURE_NAME=`dd if="$FILE" bs=1 skip=$TEXNAME_BEGIN \ + count=$(($TEXNAME_END - $TEXNAME_BEGIN)) 2> /dev/null` + + DIRNAME="`dirname "$FILE"`" + TEXTURE_PATH="$DIRNAME/$TEXTURE_NAME" + + IS_CONVERTED=0 + + while read -r CONVERTED_TEXTURE; do + if [ "$TEXTURE_PATH" = "$CONVERTED_TEXTURE" ]; then + IS_CONVERTED=1 + break + fi + done < "./converted_textures" + + if [ $IS_CONVERTED -eq 1 ]; then + echo -n ".jpg" | dd of="$FILE" bs=1 seek=$(($TEXNAME_END - 4)) \ + conv=notrunc 2> /dev/null + fi + done +} + +convert_to_jpg_update_xml() +{ + FILE="$1" + echo "Convert file: $FILE" + + if [ ! -f "$FILE" ]; then + echo " File doesn't exist." + return + fi + + DIRNAME="`dirname "$FILE"`" + + while read -r CONVERTED_TEXTURE; do + DIRNAME_TEX="`dirname "$CONVERTED_TEXTURE"`" + + if [ "$DIRNAME_TEX" != "$DIRNAME" ]; then + continue; + fi + + TEXNAME="`basename "$CONVERTED_TEXTURE" | head -c -5`" + + sed -i "s/\"$TEXNAME.[pP][nN][gG]/\"$TEXNAME.jpg/g" "$FILE" + sed -i "s/ $TEXNAME.[pP][nN][gG]/ $TEXNAME.jpg/g" "$FILE" + done < "./converted_textures" +} + + +if [ $DECREASE_QUALITY -gt 0 ]; then + find assets/data -iname "*.png" | while read f; do convert_image "$f" "png"; done + find assets/data -iname "*.jpg" | while read f; do convert_image "$f" "jpg"; done + find assets/data -iname "*.ogg" | while read f; do convert_sound "$f"; done +fi + + +if [ $CONVERT_TO_JPG -gt 0 ]; then + rm -f "./converted_textures" + + find assets/data -not -path "assets/data/textures/*" -iname "*.png" | while read f; do convert_to_jpg "$f"; done + + find assets/data -iname "*.b3dz" | while read f; do convert_to_jpg_extract_b3dz "$f"; done + find assets/data -iname "*.b3d" | while read f; do convert_to_jpg_update_b3d "$f"; done + find assets/data -iname "*.spm" | while read f; do convert_to_jpg_update_spm "$f"; done + find assets/data -iname "*.xml" | while read f; do convert_to_jpg_update_xml "$f"; done + + if [ -s "./converted_textures" ]; then + echo "Converted textures:" + cat "./converted_textures" + rm -f "./converted_textures" + fi +fi + + +# Copy data directory +echo "Copy data directory" +cp -a ../data/* assets/data/ + + +# Remove unused files +for BLACKLIST_FILE in $BLACKLIST_FILES; do + rm -f "assets/$BLACKLIST_FILE" +done + + +# Run optimize_data.sh script +if [ $RUN_OPTIMIZE_SCRIPT -gt 0 ]; then + echo "Run optimize_data.sh script" + sh -c 'cd assets/data; ../../../data/optimize_data.sh' +fi + + +# Generate directories list +echo "Generate directories list" +find assets/* -type d > assets/directories.txt +sed -i s/'.\/assets\/'// assets/directories.txt +sed -i s/'assets\/'// assets/directories.txt + + +# It will be probably ignored by ant, but create it anyway... +touch assets/.nomedia + + +echo "Done." +exit 0 diff -Nru supertuxkart-0.9.2+dfsg/android/make.sh supertuxkart-0.9.3/android/make.sh --- supertuxkart-0.9.2+dfsg/android/make.sh 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/android/make.sh 2017-10-19 04:33:01.000000000 +0000 @@ -0,0 +1,360 @@ +#!/bin/sh +# +# (C) 2016-2017 Dawid Gan, under the GPLv3 +# +# A script that creates the apk build + + +export DIRNAME=$(realpath "$(dirname "$0")") + +export NDK_PATH_DEFAULT="$DIRNAME/android-ndk" +export SDK_PATH_DEFAULT="$DIRNAME/android-sdk" + +export NDK_TOOLCHAIN_PATH="$DIRNAME/obj/bin" +export NDK_BUILD_SCRIPT="$DIRNAME/Android.mk" +export PATH="$DIRNAME/obj/bin:$PATH" +export CROSS_SYSROOT="$DIRNAME/obj/sysroot" + +#export NDK_CCACHE=ccache +export NDK_CPPFLAGS="-O3 -g" + +export NDK_ABI_ARMV7=armeabi-v7a +export ARCH_ARMV7=arm +export HOST_ARMV7=arm-linux-androideabi +export NDK_PLATFORM_ARMV7=android-19 +export SDK_VERSION_ARMV7=19 + +export NDK_ABI_X86=x86 +export ARCH_X86=x86 +export HOST_X86=i686-linux-android +export NDK_PLATFORM_X86=android-19 +export SDK_VERSION_X86=19 + +export NDK_ABI_AARCH64=arm64-v8a +export ARCH_AARCH64=arm64 +export HOST_AARCH64=aarch64-linux-android +export NDK_PLATFORM_AARCH64=android-21 +export SDK_VERSION_AARCH64=21 + + +# A helper function that checks if error ocurred +check_error() +{ + if [ $? -gt 0 ]; then + echo "Error ocurred." + exit + fi +} + +# Handle clean command +if [ ! -z "$1" ] && [ "$1" = "clean" ]; then + rm -rf bin + rm -rf build + rm -rf libs + rm -rf obj + rm -rf .gradle + exit +fi + +# Check if compilation for different platform has been started before +if [ -f "$DIRNAME/obj/compile_arch" ]; then + PROJECT_ARCH=$(cat "$DIRNAME/obj/compile_arch") + + if [ -z "$COMPILE_ARCH" ]; then + COMPILE_ARCH="$PROJECT_ARCH" + elif [ "$PROJECT_ARCH" != "$COMPILE_ARCH" ]; then + echo "Error: Compilation for different platform has been already made." + echo "Run './make.sh clean' first or set COMPILE_ARCH variable" \ + "to '$PROJECT_ARCH.'" + exit + fi +fi + +# Update variables for selected architecture +if [ -z "$COMPILE_ARCH" ]; then + COMPILE_ARCH="armv7" +fi + +if [ "$COMPILE_ARCH" = "armv7" ]; then + export NDK_PLATFORM=$NDK_PLATFORM_ARMV7 + export NDK_ABI=$NDK_ABI_ARMV7 + export ARCH=$ARCH_ARMV7 + export HOST=$HOST_ARMV7 + export SDK_VERSION=$SDK_VERSION_ARMV7 +elif [ "$COMPILE_ARCH" = "x86" ]; then + export NDK_PLATFORM=$NDK_PLATFORM_X86 + export NDK_ABI=$NDK_ABI_X86 + export ARCH=$ARCH_X86 + export HOST=$HOST_X86 + export SDK_VERSION=$SDK_VERSION_X86 +elif [ "$COMPILE_ARCH" = "aarch64" ]; then + export NDK_PLATFORM=$NDK_PLATFORM_AARCH64 + export NDK_ABI=$NDK_ABI_AARCH64 + export ARCH=$ARCH_AARCH64 + export HOST=$HOST_AARCH64 + export SDK_VERSION=$SDK_VERSION_AARCH64 +else + echo "Unknow COMPILE_ARCH: $COMPILE_ARCH. Possible values are: " \ + "armv7, aarch64, x86" + exit +fi + +# Update variables for selected build type +if [ -z "$BUILD_TYPE" ]; then + BUILD_TYPE="debug" +fi + +if [ "$BUILD_TYPE" = "debug" ] || [ "$BUILD_TYPE" = "Debug" ]; then + export ANT_BUILD_TYPE="debug" + export GRADLE_BUILD_TYPE="assembleDebug" + export IS_DEBUG_BUILD=1 +elif [ "$BUILD_TYPE" = "release" ] || [ "$BUILD_TYPE" = "Release" ]; then + export ANT_BUILD_TYPE="release" + export GRADLE_BUILD_TYPE="assembleRelease" + export IS_DEBUG_BUILD=0 +else + echo "Unsupported BUILD_TYPE: $BUILD_TYPE. Possible values are: " \ + "debug, release" + exit +fi + +# Check selected build tool +if [ -z "$BUILD_TOOL" ]; then + BUILD_TOOL="gradle" +fi + +if [ "$BUILD_TOOL" != "gradle" ] && [ "$BUILD_TOOL" != "ant" ]; then + echo "Unsupported BUILD_TOOL: $BUILD_TOOL. Possible values are: " \ + "gradle, ant" + exit +fi + +# Check if we have access to the Android NDK and SDK +if [ -z "$NDK_PATH" ]; then + export NDK_PATH="$NDK_PATH_DEFAULT" +fi + +if [ -z "$SDK_PATH" ]; then + export SDK_PATH="$SDK_PATH_DEFAULT" +fi + +NDK_PATH=$(realpath "$NDK_PATH") +SDK_PATH=$(realpath "$SDK_PATH") + +if [ ! -d "$NDK_PATH" ]; then + echo "Error: Couldn't find $NDK_PATH directory. Please create a symlink" \ + "to your Android NDK installation in the $NDK_PATH_DEFAULT or set" \ + "proper path in the NDK_PATH variable" + exit +fi + +if [ ! -d "$SDK_PATH" ]; then + echo "Error: Couldn't find $SDK_PATH directory. Please create a symlink" \ + "to your Android SDK installation in the $SDK_PATH_DEFAULT or set" \ + "proper path in the SDK_PATH variable" + exit +fi + +# Find newest build-tools version +if [ -z "$BUILD_TOOLS_VER" ]; then + BUILD_TOOLS_DIRS=`ls -1 "$SDK_PATH/build-tools" | sort -V -r` + + for DIR in $BUILD_TOOLS_DIRS; do + if [ "$DIR" = `echo $DIR | sed 's/[^0-9,.]//g'` ]; then + BUILD_TOOLS_VER="$DIR" + break + fi + done +fi + +if [ -z "$BUILD_TOOLS_VER" ] || [ ! -d "$SDK_PATH/build-tools/$BUILD_TOOLS_VER" ]; then + echo "Error: Couldn't detect build-tools version." + exit +fi + + +# Standalone toolchain +if [ ! -f "$DIRNAME/obj/make_standalone_toolchain.stamp" ]; then + echo "Creating standalone toolchain" + rm -rf "$DIRNAME/obj" + ${NDK_PATH}/build/tools/make-standalone-toolchain.sh \ + --platform=$NDK_PLATFORM \ + --install-dir="$DIRNAME/obj/" \ + --arch=$ARCH + check_error + touch "$DIRNAME/obj/make_standalone_toolchain.stamp" + echo $COMPILE_ARCH > "$DIRNAME/obj/compile_arch" +fi + +# Freetype +if [ ! -f "$DIRNAME/obj/freetype.stamp" ]; then + echo "Compiling freetype" + mkdir -p "$DIRNAME/obj/freetype" + cp -a -f "$DIRNAME/../lib/freetype/"* "$DIRNAME/obj/freetype" + + cd "$DIRNAME/obj/freetype" + ./configure --host=$HOST \ + --without-zlib \ + --without-png \ + --without-harfbuzz && + make $@ + check_error + touch "$DIRNAME/obj/freetype.stamp" +fi + +# Zlib +if [ ! -f "$DIRNAME/obj/zlib.stamp" ]; then + echo "Compiling zlib" + mkdir -p "$DIRNAME/obj/zlib" + cp -a -f "$DIRNAME/../lib/zlib/"* "$DIRNAME/obj/zlib" + + cd "$DIRNAME/obj/zlib" + cmake . -DCMAKE_TOOLCHAIN_FILE=../../../cmake/Toolchain-android.cmake \ + -DHOST=$HOST && + make $@ + check_error + touch "$DIRNAME/obj/zlib.stamp" +fi + +# Libpng +if [ ! -f "$DIRNAME/obj/libpng.stamp" ]; then + echo "Compiling libpng" + mkdir -p "$DIRNAME/obj/libpng" + mkdir -p "$DIRNAME/obj/libpng/lib" + cp -a -f "$DIRNAME/../lib/libpng/"* "$DIRNAME/obj/libpng" + + cd "$DIRNAME/obj/libpng" + cmake . -DCMAKE_TOOLCHAIN_FILE=../../../cmake/Toolchain-android.cmake \ + -DHOST=$HOST \ + -DZLIB_LIBRARY="$DIRNAME/obj/zlib/libz.a" \ + -DZLIB_INCLUDE_DIR="$DIRNAME/obj/zlib/" \ + -DPNG_TESTS=0 && + make $@ + check_error + touch "$DIRNAME/obj/libpng.stamp" +fi + +# Openal +if [ ! -f "$DIRNAME/obj/openal.stamp" ]; then + echo "Compiling openal" + mkdir -p "$DIRNAME/obj/openal" + cp -a -f "$DIRNAME/../lib/openal/"* "$DIRNAME/obj/openal" + + cd "$DIRNAME/obj/openal" + cmake . -DCMAKE_TOOLCHAIN_FILE=../../../cmake/Toolchain-android.cmake \ + -DHOST=$HOST \ + -DALSOFT_UTILS=0 \ + -DALSOFT_EXAMPLES=0 \ + -DALSOFT_TESTS=0 \ + -DLIBTYPE=STATIC && + make $@ + check_error + touch "$DIRNAME/obj/openal.stamp" +fi + +# OpenSSL +if [ ! -f "$DIRNAME/obj/openssl.stamp" ]; then + echo "Compiling openssl" + mkdir -p "$DIRNAME/obj/openssl" + cp -a -f "$DIRNAME/../lib/openssl/"* "$DIRNAME/obj/openssl" + + cd "$DIRNAME/obj/openssl" + ./Configure android --cross-compile-prefix="$HOST-" + make $@ + check_error + touch "$DIRNAME/obj/openssl.stamp" +fi + +# Curl +if [ ! -f "$DIRNAME/obj/curl.stamp" ]; then + echo "Compiling curl" + mkdir -p "$DIRNAME/obj/curl" + cp -a -f "$DIRNAME/../lib/curl/"* "$DIRNAME/obj/curl" + + cd "$DIRNAME/obj/curl" + CPPFLAGS="-I$DIRNAME/obj/openssl/include $CPPFLAGS" \ + LDFLAGS="-L$DIRNAME/obj/openssl/ $LDFLAGS" \ + ./configure --host=$HOST \ + --with-ssl \ + --disable-shared \ + --enable-static \ + --enable-threaded-resolver && + make $@ + check_error + touch "$DIRNAME/obj/curl.stamp" +fi + +# Jpeglib +if [ ! -f "$DIRNAME/obj/jpeglib.stamp" ]; then + echo "Compiling jpeglib" + mkdir -p "$DIRNAME/obj/jpeglib" + cp -a -f "$DIRNAME/../lib/jpeglib/"* "$DIRNAME/obj/jpeglib" + + cd "$DIRNAME/obj/jpeglib" + cmake . -DCMAKE_TOOLCHAIN_FILE=../../../cmake/Toolchain-android.cmake \ + -DHOST=$HOST && + make $@ + check_error + touch "$DIRNAME/obj/jpeglib.stamp" +fi + +# Libogg +if [ ! -f "$DIRNAME/obj/libogg.stamp" ]; then + echo "Compiling libogg" + mkdir -p "$DIRNAME/obj/libogg" + cp -a -f "$DIRNAME/../lib/libogg/"* "$DIRNAME/obj/libogg" + + cd "$DIRNAME/obj/libogg" + ./configure --host=$HOST && + make $@ + check_error + touch "$DIRNAME/obj/libogg.stamp" +fi + +# Libvorbis +if [ ! -f "$DIRNAME/obj/libvorbis.stamp" ]; then + echo "Compiling libvorbis" + mkdir -p "$DIRNAME/obj/libvorbis" + cp -a -f "$DIRNAME/../lib/libvorbis/"* "$DIRNAME/obj/libvorbis" + + cd "$DIRNAME/obj/libvorbis" + CPPFLAGS="-I$DIRNAME/obj/libogg/include $CPPFLAGS" \ + LDFLAGS="-L$DIRNAME/obj/libogg/src/.libs $LDFLAGS" \ + ./configure --host=$HOST && + make $@ + check_error + touch "$DIRNAME/obj/libvorbis.stamp" +fi + +# STK +echo "Compiling STK" +cd "$DIRNAME" +${NDK_PATH}/ndk-build $@ \ + APP_BUILD_SCRIPT="$NDK_BUILD_SCRIPT" \ + APP_ABI="$NDK_ABI" \ + APP_PLATFORM="$NDK_PLATFORM" \ + APP_CPPFLAGS="$NDK_CPPFLAGS" \ + APP_STL=gnustl_static \ + NDK_DEBUG=$IS_DEBUG_BUILD + +check_error + +# Build apk +echo "Building APK" + +sed -i "s/minSdkVersion=\".*\"/minSdkVersion=\"$SDK_VERSION\"/g" \ + "$DIRNAME/AndroidManifest.xml" + + +if [ "$BUILD_TOOL" = "gradle" ]; then + export ANDROID_HOME="$SDK_PATH" + gradle -Psdk_version=$SDK_VERSION \ + -Pbuild_tools_ver="$BUILD_TOOLS_VER" \ + $GRADLE_BUILD_TYPE +elif [ "$BUILD_TOOL" = "ant" ]; then + ant -Dsdk.dir="$SDK_PATH" \ + -Dtarget=$NDK_PLATFORM \ + $ANT_BUILD_TYPE +fi + +check_error diff -Nru supertuxkart-0.9.2+dfsg/android/README.ANDROID supertuxkart-0.9.3/android/README.ANDROID --- supertuxkart-0.9.2+dfsg/android/README.ANDROID 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/android/README.ANDROID 2017-10-19 04:33:01.000000000 +0000 @@ -0,0 +1,180 @@ +================================================================================ + + SUPERTUXKART + +================================================================================ + + + +-------------------------------------------------------------------------------- + SYSTEM REQUIREMENTS +-------------------------------------------------------------------------------- + +To run SuperTuxKart on Android, you need a device that meets following +requirements: + +- Android 4.4 or later +- Processor compatible with armv7 or x86 +- GPU that supports OpenGL ES 3.0 +- 1 GB RAM (STK uses ~150 MB in minimal configuration) +- 300 MB of free space on internal storage +- Touch screen or external keyboard + + + +-------------------------------------------------------------------------------- + COMPILATION +-------------------------------------------------------------------------------- + +The build scripts are designed to run under linux. They may work under cygwin +after some tweaks, but atm. only linux is supported. + +Dependencies list (may be incomplete): + + autoconf, automake, make, python, gradle, ant, imagemagick, cmake, + vorbis-tools + +Additionally some dependencies for optimize_data script: + + advancecomp, libjpeg-progs, optipng + +Before compilation you must download the package with dependencies from: +https://github.com/supertuxkart/dependencies +and extract it to stk-code/lib. It contains sources of libraries that are used +in STK, but are not availiable in stk-code repository (curl, freetype, openal). + +You need also Android SDK for android-19 platform (the API for Android 4.4) and +Android NDK. Note that NDK >= r15b is atm. not supported. Version r12b is +strongly recommended, because it's known that it works without issues. + +You need to create proper "android-sdk" and "android-ndk" symlinks in the +directory with Android project, so that the compilation script will have access +to the SDK and NDK. These paths can be also set in SDK_PATH and NDK_PATH +environmental variables. + +Before running the compilation, run the generate_assets script, so that +selected assets will be copied to "assets" directory, and then included in the +apk file. + +You can select different karts and tracks by setting KARTS and TRACKS variables +in the generate_assets.sh script at the beginning of file. + +When you are creating the assets directory manually, note that the +directories.txt file is urgently needed and it is used by the application for +extracting assets. + +If the assets directory is already prepared, you can run "./make.sh" command to +build the project and create an apk file. Note that all arguments are passed to +the make command, so that you can run "./make.sh -j5" for multi-threaded build. + +If you want to prepare a package for particular architecture, you can choose it +by setting the COMPILE_ARCH environmental variable. At this stage, supported +architectures are "armv7", "x86" and "aarch64". The default is "armv7". + +You can choose build type by setting BUILD_TYPE environment variable to "debug" +or "release". The default is debug build. Note that if you choose release build, +you have to manually sign the apk with your key and run zipalign. + +Additionally you can choose the build tool by setting BUILD_TOOL environment +variable to "gradle" or "ant". Note that ant has been already removed from +Android SDK, so you have to use SDK <= 25.2.5 for building with ant. By default +the BUILD_TOOL is set to "gradle". + +You can override the SDK build-tools version by setting the BUILD_TOOLS_VER +environment variable. + +Basically if all dependencies are installed in the system, it should be enough +to just run: + + export SDK_PATH=/path/to/your/android/sdk + export NDK_PATH=/path/to/your/android/ndk + ./generate_assets.sh + ./make.sh -j5 + + + +-------------------------------------------------------------------------------- + RELEASE BUILD +-------------------------------------------------------------------------------- + +Making a release build is similar to typical compilation, but there are few +additional things to do. + +You have to change version numbers. This is important, because assets manager +in STK checks these numbers and detects if already extracted data files are +up to date. So that when you will install new STK version, this will force new +data extraction automatically. + +So that you have to: + +1. Change "data/supertuxkart.git" to "data/supertuxkart.VERSION_NUMBER" + +2. Open "src/utils/constants.cpp" and change: + + const char STK_VERSION[] = "git"; + + to + + const char STK_VERSION[] = "VERSION_NUMBER"; + + where "VERSION_NUMBER" is for example "0.9.3" or "git20170409" or whatever. + +3. You can also update these lines in "android/AndroidManifest.xml": + android:versionCode="1" + android:versionName="1.0" + + +Before compilation you have to set: + + export BUILD_TYPE=release + +and then you make standard compilation with: + + ./generate_assets.sh + ./make.sh -j5 + + +The compiled apk is unsigned, so you have to sign it with your key. To sign it, +you have to run: + + jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore \ + my-release-key.keystore SuperTuxKart-release-unsigned.apk alias_name + +and then: + + zipalign -v 4 SuperTuxKart-release-unsigned.apk SuperTuxKart-release.apk + + + +-------------------------------------------------------------------------------- + KNOWN ISSUES +-------------------------------------------------------------------------------- + +1. It's not possible to compile STK for Android < 4.4 due to missing GLES 3.0 + functions. It is technically possible to do - check GLES context version, + load OpenGL functions dynamically using EGL, and if they are not loaded + properly, then fallback to GLES 2.0. + +2. It never ocurred for me, but it's possible that EGL context is lost in some + cases. SuperTuxKart is not designed to re-create all textures at any moment, + so this is a "Wontfix", at least for now. + +3. We use "exit(0)" at the end of main function. We shouldn't do it and we + should just return from the main function. But STK uses some global + variables and their values are remembered when the game is restarted. We + should properly clear them or re-initialize on startup. Using the "exit(0)" + is not-that-bad workaround, but it may cause a crash on exit sometimes. + It seems to affect only Android 5.0. More information about the crash: + https://code.google.com/p/android/issues/detail?id=160824 + +4. STK crashes on startup on some devices when aarch64 build is made using + Android r13 NDK. The r13 version has rather big modifications (it uses clang + instead of gcc by default). This is probably a bug in NDK/compiler/OS, but + for this reason using NDK r12 for 64-bit arm compilation is preferred. + +5. Angelscript doesn't have full support for aarch64 builds, so that scripting + won't work on this platform. + +6. Turning left/right using accelerometer is available, but at this stage the + default screen orientation is not automatically detected and user must + manually choose if he needs "phone" or "tablet" accelerometer. Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/android/res/drawable/icon.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/android/res/drawable/icon.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/android/res/drawable-hdpi/icon.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/android/res/drawable-hdpi/icon.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/android/res/drawable-mdpi/icon.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/android/res/drawable-mdpi/icon.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/android/res/drawable-xhdpi/icon.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/android/res/drawable-xhdpi/icon.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/android/res/drawable-xxhdpi/icon.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/android/res/drawable-xxhdpi/icon.png differ diff -Nru supertuxkart-0.9.2+dfsg/android/res/values/strings.xml supertuxkart-0.9.3/android/res/values/strings.xml --- supertuxkart-0.9.2+dfsg/android/res/values/strings.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/android/res/values/strings.xml 2017-04-23 17:18:56.000000000 +0000 @@ -0,0 +1,4 @@ + + + SuperTuxKart + diff -Nru supertuxkart-0.9.2+dfsg/.appveyor.yml supertuxkart-0.9.3/.appveyor.yml --- supertuxkart-0.9.2+dfsg/.appveyor.yml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/.appveyor.yml 2017-10-19 04:33:01.000000000 +0000 @@ -0,0 +1,66 @@ +environment: + DEPS_DIR: c:\\projects\dependencies + DEPS_BRANCH: master + ASSETS_DIR: c:\\projects\stk-assets + APPVEYOR_CACHE_ENTRY_ZIP_ARGS: -t7z -m0=lzma2 -mx=9 + IRC_NOTIFY_SCRIPT: c:\\projects\stk-code\tools\appveyor-irc-notify.py + +os: Visual Studio 2015 +clone_depth: 1 +shallow_clone: true + +platform: + # - x86 + - x64 + +configuration: + - Debug + - Release + +matrix: + fast_finish: true + +#cache: +# - '%DEPS_DIR%' + #- '%ASSETS_DIR%' + +install: + - ps: >- + If(!(Test-Path "$env:DEPS_DIR")) { + Write-Host "Downloading dependencies"; + Start-Process -FilePath "git" -ArgumentList "clone --branch $env:DEPS_BRANCH --single-branch --depth 1 https://github.com/supertuxkart/dependencies.git $env:DEPS_DIR" -Wait; + } + Else { + Write-Host "Updating dependencies"; + Start-Process -FilePath "git" -ArgumentList "fetch --depth 1" -WorkingDirectory "$env:DEPS_DIR" -Wait; + } + Get-ChildItem $env:DEPS_DIR | Measure-Object -property length -sum + #- ps: >- + #If(!(Test-Path "$env:ASSETS_DIR")) { + # Write-Host "Downloading assets"; + # Start-Process -FilePath "svn" -ArgumentList "checkout https://svn.code.sf.net/p/supertuxkart/code/stk-assets $env:ASSETS_DIR" -Wait; + #} + #Else { + # Write-Host "Updating assets"; + # Start-Process -FilePath "svn" -ArgumentList "update" -WorkingDirectory "$env:ASSETS_DIR" -Wait; + #} + #Get-ChildItem $env:ASSETS_DIR | Measure-Object -property length -sum + +before_build: + - ps: Copy-Item "${env:DEPS_DIR}\windows_64bit\dependencies" c:\projects\stk-code\dependencies-64bit –Recurse + - cmd: | + md build + cd build + if "%platform%"=="x64" set CMAKE_GENERATOR_NAME="Visual Studio 14 2015 Win64" + cmake -G %CMAKE_GENERATOR_NAME% -DCMAKE_BUILD_TYPE="%configuration%" .. -DCHECK_ASSETS=OFF + +build: + parallel: true + project: build\ALL_BUILD.vcxproj + + +on_success: + - "python %IRC_NOTIFY_SCRIPT% supertuxkart [{author}:{branch}] {short_commit}: {message} {color_green}Succeeded,Details: {build_url},Commit: {commit_url}" + +on_failure: + - "python %IRC_NOTIFY_SCRIPT% supertuxkart [{author}:{branch}] {short_commit}: {message} {color_red}Failed,Details: {build_url},Commit: {commit_url}" diff -Nru supertuxkart-0.9.2+dfsg/AUTHORS supertuxkart-0.9.3/AUTHORS --- supertuxkart-0.9.2+dfsg/AUTHORS 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/AUTHORS 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -See the file data/CREDITS . diff -Nru supertuxkart-0.9.2+dfsg/CHANGELOG.md supertuxkart-0.9.3/CHANGELOG.md --- supertuxkart-0.9.2+dfsg/CHANGELOG.md 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/CHANGELOG.md 2017-10-27 06:38:52.000000000 +0000 @@ -1,3 +1,20 @@ +## SuperTuxKart 0.9.3 +* Reduced RAM and VRAM usage, reducing load times by Auria and Benau +* New mesh format optimized for space and hardware skinning +* Code refactoring of both render pipeline by Benau and Elderme +* New kart Wilber and Hexley by Jymis +* New kart Kiki and updated Konqi by Benau +* New tracks Candela City, Cornfield Crossing and Las Dunas Arena by samuncle +* Physics improvements and various physics bugfixes by hiker +* Kart GFX improvements (exhaust and headlight) +* In-game screen recording powered by libopenglrecorder +* High quality mipmap generation by Stragus +* New smoother camera by Auria +* New grand prix win scene +* Gamepad configuration bugfixes +* 3 Strikes Battles : added spare tire karts +* Various improvements (wall driving fixes, parachutes, GP points, cannon fixes, colorization shader) + ## SuperTuxKart 0.9.2 * Ghost replay races by Benau * Battle mode AI by Benau diff -Nru supertuxkart-0.9.2+dfsg/cmake/FindEGL.cmake supertuxkart-0.9.3/cmake/FindEGL.cmake --- supertuxkart-0.9.2+dfsg/cmake/FindEGL.cmake 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/cmake/FindEGL.cmake 2017-10-19 04:33:01.000000000 +0000 @@ -0,0 +1,18 @@ +# - Find EGL +# Find the EGL includes and libraries +# +# Following variables are provided: +# EGL_FOUND +# True if EGL has been found +# EGL_INCLUDE_DIR +# The include directory of EGL +# EGL_LIBRARY +# EGL library list + +find_path(EGL_INCLUDE_DIR EGL/egl.h) +find_library(EGL_LIBRARY NAMES EGL) + +include(FindPackageHandleStandardArgs) +find_package_handle_standard_args(EGL DEFAULT_MSG EGL_LIBRARY EGL_INCLUDE_DIR) + +mark_as_advanced(EGL_LIBRARY EGL_INCLUDE_DIR) diff -Nru supertuxkart-0.9.2+dfsg/cmake/FindFreetype.cmake supertuxkart-0.9.3/cmake/FindFreetype.cmake --- supertuxkart-0.9.2+dfsg/cmake/FindFreetype.cmake 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/cmake/FindFreetype.cmake 2017-10-19 04:33:01.000000000 +0000 @@ -10,8 +10,8 @@ # Freetype library list if(WIN32) - find_path(FREETYPE_INCLUDE_DIRS NAMES freetype/freetype.h PATHS "${PROJECT_SOURCE_DIR}/dependencies/include") - find_library(FREETYPE_LIBRARY NAMES freetype PATHS "${PROJECT_SOURCE_DIR}/dependencies/lib") + find_path(FREETYPE_INCLUDE_DIRS NAMES freetype/freetype.h PATHS "${PROJECT_SOURCE_DIR}/${DEPENDENCIES}/include") + find_library(FREETYPE_LIBRARY NAMES freetype PATHS "${PROJECT_SOURCE_DIR}/${DEPENDENCIES}/lib") set(FREETYPE_FOUND 1) set(FREETYPE_LIBRARIES ${FREETYPE_LIBRARY}) elseif(APPLE) diff -Nru supertuxkart-0.9.2+dfsg/cmake/FindFribidi.cmake supertuxkart-0.9.3/cmake/FindFribidi.cmake --- supertuxkart-0.9.2+dfsg/cmake/FindFribidi.cmake 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/cmake/FindFribidi.cmake 2017-10-19 04:33:01.000000000 +0000 @@ -24,8 +24,8 @@ endif() if(NOT FRIBIDI_FOUND) - find_path(FRIBIDI_INCLUDE_DIR NAMES fribidi/fribidi.h PATHS /Library/Frameworks/fribidi.framework/Headers "${PROJECT_SOURCE_DIR}/dependencies/include") - find_library(FRIBIDI_LIBRARY NAMES fribidi PATHS /Library/Frameworks/fribidi.framework "${PROJECT_SOURCE_DIR}/dependencies/lib") + find_path(FRIBIDI_INCLUDE_DIR NAMES fribidi/fribidi.h PATHS /Library/Frameworks/fribidi.framework/Headers "${PROJECT_SOURCE_DIR}/${DEPENDENCIES}/include") + find_library(FRIBIDI_LIBRARY NAMES fribidi PATHS /Library/Frameworks/fribidi.framework "${PROJECT_SOURCE_DIR}/${DEPENDENCIES}/lib") include(FindPackageHandleStandardArgs) find_package_handle_standard_args(Fribidi DEFAULT_MSG FRIBIDI_INCLUDE_DIR FRIBIDI_LIBRARY) diff -Nru supertuxkart-0.9.2+dfsg/cmake/FindLibbfd.cmake supertuxkart-0.9.3/cmake/FindLibbfd.cmake --- supertuxkart-0.9.2+dfsg/cmake/FindLibbfd.cmake 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/cmake/FindLibbfd.cmake 2016-07-22 00:48:24.000000000 +0000 @@ -0,0 +1,89 @@ +# - Try to find libbfd +# Once done this will define +# +# LIBBFD_FOUND - system has libbfd +# LIBBFD_INCLUDE_DIRS - the libbfd include directory +# LIBBFD_LIBRARIES - Link these to use libbfd +# LIBBFD_DEFINITIONS - Compiler switches required for using libbfd +# +# Based on: +# +# Copyright (c) 2008 Bernhard Walle +# +# Redistribution and use is allowed according to the terms of the New +# BSD license. +# For details see the accompanying COPYING-CMAKE-SCRIPTS file. +# + + +if (LIBBFD_LIBRARIES AND LIBBFD_INCLUDE_DIRS) + set (LIBBFD_FIND_QUIETLY TRUE) +endif () + +find_path (LIBBFD_INCLUDE_DIRS + NAMES + bfd.h + dis-asm.h + PATHS + /usr/include + /usr/local/include + /opt/local/include + /opt/include + ENV CPATH) + +# Ugly, yes ugly... +find_library (LIBBFD_BFD_LIBRARY + NAMES + bfd + PATHS + /usr/lib + /usr/lib64 + /usr/local/lib + /usr/local/lib64 + /usr/include + /opt/local/lib + /opt/usr/lib64 + ENV LIBRARY_PATH + ENV LD_LIBRARY_PATH) + +#find_library (LIBBFD_IBERTY_LIBRARY +# NAMES +# iberty +# PATHS +# /usr/lib +# /usr/lib64 +# /usr/local/lib +# /usr/local/lib64 +# /usr/include +# /opt/local/lib +# /opt/usr/lib64 +# ENV LIBRARY_PATH +# ENV LD_LIBRARY_PATH) + +#find_library (LIBBFD_OPCODES_LIBRARY +# NAMES +# opcodes +# PATHS +# /usr/lib +# /usr/lib64 +# /usr/local/lib +# /usr/local/lib64 +# /usr/include +# /opt/local/lib +# /opt/usr/lib64 +# ENV LIBRARY_PATH +# ENV LD_LIBRARY_PATH) + + +include (FindPackageHandleStandardArgs) + + +# handle the QUIETLY and REQUIRED arguments and set LIBBFD_FOUND to TRUE if all listed variables are TRUE +FIND_PACKAGE_HANDLE_STANDARD_ARGS(LIBBFD DEFAULT_MSG + LIBBFD_BFD_LIBRARY +# LIBBFD_IBERTY_LIBRARY +# LIBBFD_OPCODES_LIBRARY + LIBBFD_INCLUDE_DIRS) + +set(LIBBFD_LIBRARIES "${LIBBFD_BFD_LIBRARY}") +mark_as_advanced(LIBBFD_INCLUDE_DIRS LIBBFD_LIBRARIES LIBBFD_BFD_LIBRARY) diff -Nru supertuxkart-0.9.2+dfsg/cmake/FindOggVorbis.cmake supertuxkart-0.9.3/cmake/FindOggVorbis.cmake --- supertuxkart-0.9.2+dfsg/cmake/FindOggVorbis.cmake 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/cmake/FindOggVorbis.cmake 2017-10-19 04:33:01.000000000 +0000 @@ -10,11 +10,12 @@ # OggVorbis library list -find_path(OGGVORBIS_OGG_INCLUDE_DIR NAMES ogg/ogg.h PATHS "${PROJECT_SOURCE_DIR}/dependencies/include") -find_path(OGGVORBIS_VORBIS_INCLUDE_DIR NAMES vorbis/vorbisfile.h PATHS "${PROJECT_SOURCE_DIR}/dependencies/include") -find_library(OGGVORBIS_OGG_LIBRARY NAMES ogg Ogg libogg PATHS "${PROJECT_SOURCE_DIR}/dependencies/lib") -find_library(OGGVORBIS_VORBIS_LIBRARY NAMES vorbis Vorbis libvorbis PATHS "${PROJECT_SOURCE_DIR}/dependencies/lib") -find_library(OGGVORBIS_VORBISFILE_LIBRARY NAMES vorbisfile libvorbisfile PATHS "${PROJECT_SOURCE_DIR}/dependencies/lib") +find_path(OGGVORBIS_OGG_INCLUDE_DIR NAMES ogg/ogg.h PATHS "${PROJECT_SOURCE_DIR}/${DEPENDENCIES}/include") +find_path(OGGVORBIS_VORBIS_INCLUDE_DIR NAMES vorbis/vorbisfile.h PATHS "${PROJECT_SOURCE_DIR}/${DEPENDENCIES}/include") +find_library(OGGVORBIS_OGG_LIBRARY NAMES ogg Ogg libogg PATHS "${PROJECT_SOURCE_DIR}/${DEPENDENCIES}/lib") +find_library(OGGVORBIS_VORBIS_LIBRARY NAMES vorbis Vorbis libvorbis PATHS "${PROJECT_SOURCE_DIR}/${DEPENDENCIES}/lib") +find_library(OGGVORBIS_VORBISFILE_LIBRARY NAMES vorbisfile libvorbisfile PATHS "${PROJECT_SOURCE_DIR}/${DEPENDENCIES}/lib") +find_library(OGGVORBIS_VORBISENC_LIBRARY NAMES vorbisenc libvorbisenc PATHS "${PROJECT_SOURCE_DIR}/${DEPENDENCIES}/lib") if (APPLE) set(OGGVORBIS_OGG_INCLUDE_DIR "/Library/Frameworks/Ogg.framework/Headers/") @@ -26,6 +27,11 @@ set(OGGVORBIS_VORBISFILE_LIBRARY ${OGGVORBIS_VORBIS_LIBRARY}) endif() +if(APPLE AND NOT OGGVORBIS_VORBISENC_LIBRARY) + # Seems to be the same on Apple systems + set(OGGVORBIS_VORBISENC_LIBRARY ${OGGVORBIS_VORBIS_LIBRARY}) +endif() + include(FindPackageHandleStandardArgs) find_package_handle_standard_args(OggVorbis DEFAULT_MSG OGGVORBIS_OGG_INCLUDE_DIR OGGVORBIS_VORBIS_INCLUDE_DIR @@ -33,8 +39,8 @@ # Publish variables set(OGGVORBIS_INCLUDE_DIRS ${OGGVORBIS_OGG_INCLUDE_DIR} ${OGGVORBIS_VORBIS_INCLUDE_DIR}) -set(OGGVORBIS_LIBRARIES ${OGGVORBIS_OGG_LIBRARY} ${OGGVORBIS_VORBIS_LIBRARY} ${OGGVORBIS_VORBISFILE_LIBRARY}) +set(OGGVORBIS_LIBRARIES ${OGGVORBIS_OGG_LIBRARY} ${OGGVORBIS_VORBIS_LIBRARY} ${OGGVORBIS_VORBISFILE_LIBRARY} ${OGGVORBIS_VORBISENC_LIBRARY}) list(REMOVE_DUPLICATES OGGVORBIS_INCLUDE_DIRS) list(REMOVE_DUPLICATES OGGVORBIS_LIBRARIES) mark_as_advanced(OGGVORBIS_OGG_INCLUDE_DIR OGGVORBIS_VORBIS_INCLUDE_DIR) -mark_as_advanced(OGGVORBIS_OGG_LIBRARY OGGVORBIS_VORBIS_LIBRARY OGGVORBIS_VORBISFILE_LIBRARY) +mark_as_advanced(OGGVORBIS_OGG_LIBRARY OGGVORBIS_VORBIS_LIBRARY OGGVORBIS_VORBISFILE_LIBRARY OGGVORBIS_VORBISENC_LIBRARY) diff -Nru supertuxkart-0.9.2+dfsg/cmake/FindWayland.cmake supertuxkart-0.9.3/cmake/FindWayland.cmake --- supertuxkart-0.9.2+dfsg/cmake/FindWayland.cmake 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/cmake/FindWayland.cmake 2017-10-19 04:33:01.000000000 +0000 @@ -0,0 +1,52 @@ +# - Find Wayland +# Find the Wayland includes and libraries +# +# Following variables are provided: +# WAYLAND_FOUND +# True if Wayland has been found +# WAYLAND_INCLUDE_DIRS +# The include directories of Wayland +# WAYLAND_LIBRARIES +# Wayland library list + +find_path(WAYLAND_CLIENT_INCLUDE_DIR wayland-client.h) +find_path(WAYLAND_CURSOR_INCLUDE_DIR wayland-cursor.h) +find_path(WAYLAND_EGL_INCLUDE_DIR wayland-egl.h) +find_path(XKBCOMMON_INCLUDE_DIR xkbcommon/xkbcommon.h) + +find_library(WAYLAND_CLIENT_LIBRARY NAMES wayland-client) +find_library(WAYLAND_CURSOR_LIBRARY NAMES wayland-cursor) +find_library(WAYLAND_EGL_LIBRARY NAMES wayland-egl) +find_library(XKBCOMMON_LIBRARY NAMES xkbcommon) + +include(FindPackageHandleStandardArgs) +find_package_handle_standard_args(Wayland DEFAULT_MSG WAYLAND_CLIENT_LIBRARY + WAYLAND_CURSOR_LIBRARY + WAYLAND_EGL_LIBRARY + XKBCOMMON_LIBRARY + WAYLAND_CLIENT_INCLUDE_DIR + WAYLAND_CURSOR_INCLUDE_DIR + WAYLAND_EGL_INCLUDE_DIR + XKBCOMMON_INCLUDE_DIR) + +set(WAYLAND_INCLUDE_DIRS ${WAYLAND_CLIENT_INCLUDE_DIR} + ${WAYLAND_CURSOR_INCLUDE_DIR} + ${WAYLAND_EGL_INCLUDE_DIR} + ${XKBCOMMON_INCLUDE_DIR}) + +set(WAYLAND_LIBRARIES ${WAYLAND_CLIENT_LIBRARY} + ${WAYLAND_CURSOR_LIBRARY} + ${WAYLAND_EGL_LIBRARY} + ${XKBCOMMON_LIBRARY}) + +list(REMOVE_DUPLICATES WAYLAND_INCLUDE_DIRS) +list(REMOVE_DUPLICATES WAYLAND_LIBRARIES) + +mark_as_advanced(WAYLAND_CLIENT_LIBRARY + WAYLAND_CURSOR_LIBRARY + WAYLAND_EGL_LIBRARY + XKBCOMMON_LIBRARY + WAYLAND_CLIENT_INCLUDE_DIR + WAYLAND_CURSOR_INCLUDE_DIR + WAYLAND_EGL_INCLUDE_DIR + XKBCOMMON_INCLUDE_DIR) diff -Nru supertuxkart-0.9.2+dfsg/cmake/FindXrandr.cmake supertuxkart-0.9.3/cmake/FindXrandr.cmake --- supertuxkart-0.9.2+dfsg/cmake/FindXrandr.cmake 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/cmake/FindXrandr.cmake 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -find_path(XRANDR_INCLUDE_DIR NAMES X11/extensions/Xrandr.h - PATH_SUFFIXES X11/extensions - DOC "The XRANDR include directory" -) - -find_library(XRANDR_LIBRARY NAMES Xrandr - DOC "The XRANDR library" -) - -include(FindPackageHandleStandardArgs) -FIND_PACKAGE_HANDLE_STANDARD_ARGS(XRANDR DEFAULT_MSG XRANDR_LIBRARY XRANDR_INCLUDE_DIR) - -if(XRANDR_FOUND) - set( XRANDR_LIBRARIES ${XRANDR_LIBRARY} ) - set( XRANDR_INCLUDE_DIRS ${XRANDR_INCLUDE_DIR} ) -endif() - -mark_as_advanced(XRANDR_INCLUDE_DIR XRANDR_LIBRARY) diff -Nru supertuxkart-0.9.2+dfsg/cmake/Toolchain-android.cmake supertuxkart-0.9.3/cmake/Toolchain-android.cmake --- supertuxkart-0.9.2+dfsg/cmake/Toolchain-android.cmake 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/cmake/Toolchain-android.cmake 2017-04-23 17:18:56.000000000 +0000 @@ -0,0 +1,32 @@ +# Cross-compiling requires CMake 2.6 or newer. Example: +# cmake .. -DCMAKE_TOOLCHAIN_FILE=../XCompile-Android.txt -DHOST=arm-linux-androideabi +# Where 'arm-linux-androideabi' is the host prefix for the cross-compiler. If +# you already have a toolchain file setup, you may use that instead of this +# file. Make sure to set CMAKE_FIND_ROOT_PATH to where the NDK toolchain was +# installed (e.g. "$ENV{HOME}/toolchains/arm-linux-androideabi-r10c-21"). + +# the name of the target operating system +SET(CMAKE_SYSTEM_NAME Linux) + +# which compilers to use for C and C++ +SET(CMAKE_C_COMPILER "${HOST}-gcc") +SET(CMAKE_CXX_COMPILER "${HOST}-g++") +SET(CMAKE_RC_COMPILER "${HOST}-windres") + +# here is the target environment located +SET(CMAKE_FIND_ROOT_PATH $ENV{NDK_TOOLCHAIN_PATH}) + +# here is where stuff gets installed to +SET(CMAKE_INSTALL_PREFIX "${CMAKE_FIND_ROOT_PATH}" CACHE STRING "Install path prefix, prepended onto install directories." FORCE) + +# adjust the default behaviour of the FIND_XXX() commands: +# search headers and libraries in the target environment, search +# programs in the host environment +set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER) +set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) +set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) + +# set env vars so that pkg-config will look in the appropriate directory for +# .pc files (as there seems to be no way to force using ${HOST}-pkg-config) +set(ENV{PKG_CONFIG_LIBDIR} "${CMAKE_INSTALL_PREFIX}/lib/pkgconfig") +set(ENV{PKG_CONFIG_PATH} "") diff -Nru supertuxkart-0.9.2+dfsg/cmake/Toolchain-mingw-64bit.cmake supertuxkart-0.9.3/cmake/Toolchain-mingw-64bit.cmake --- supertuxkart-0.9.2+dfsg/cmake/Toolchain-mingw-64bit.cmake 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/cmake/Toolchain-mingw-64bit.cmake 2017-11-06 06:33:43.000000000 +0000 @@ -9,8 +9,11 @@ SET(CMAKE_CXX_COMPILER x86_64-w64-mingw32-g++-posix) SET(CMAKE_RC_COMPILER x86_64-w64-mingw32-windres) +# figure out folder to look in +execute_process(COMMAND sh -c "ls /usr/lib/gcc/x86_64-w64-mingw32/ | grep posix | tr -d '\n'" OUTPUT_VARIABLE MINGW_DEPS_FOLDER) + # here is the target environment located -SET(CMAKE_FIND_ROOT_PATH /usr/x86_64-w64-mingw32 /usr/lib/gcc/x86_64-w64-mingw32/4.9-posix ${PROJECT_SOURCE_DIR}/dependencies) +SET(CMAKE_FIND_ROOT_PATH /usr/x86_64-w64-mingw32 /usr/lib/gcc/x86_64-w64-mingw32/${MINGW_DEPS_FOLDER}/ ${PROJECT_SOURCE_DIR}/dependencies-64bit) # adjust the default behaviour of the FIND_XXX() commands: # search headers and libraries in the target environment, search diff -Nru supertuxkart-0.9.2+dfsg/cmake/Toolchain-mingw.cmake supertuxkart-0.9.3/cmake/Toolchain-mingw.cmake --- supertuxkart-0.9.2+dfsg/cmake/Toolchain-mingw.cmake 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/cmake/Toolchain-mingw.cmake 2017-10-19 04:33:01.000000000 +0000 @@ -9,8 +9,11 @@ SET(CMAKE_CXX_COMPILER i686-w64-mingw32-g++-posix) SET(CMAKE_RC_COMPILER i686-w64-mingw32-windres) +# figure out folder to look in +execute_process(COMMAND sh -c "ls /usr/lib/gcc/i686-w64-mingw32/ | grep posix | tr -d '\n'" OUTPUT_VARIABLE MINGW_DEPS_FOLDER) + # here is the target environment located -SET(CMAKE_FIND_ROOT_PATH /usr/i686-w64-mingw32 /usr/lib/gcc/i686-w64-mingw32/4.9-posix ${PROJECT_SOURCE_DIR}/dependencies) +SET(CMAKE_FIND_ROOT_PATH /usr/i686-w64-mingw32 /usr/lib/gcc/i686-w64-mingw32/${MINGW_DEPS_FOLDER}/ ${PROJECT_SOURCE_DIR}/dependencies) # adjust the default behaviour of the FIND_XXX() commands: # search headers and libraries in the target environment, search diff -Nru supertuxkart-0.9.2+dfsg/CMakeLists.txt supertuxkart-0.9.3/CMakeLists.txt --- supertuxkart-0.9.2+dfsg/CMakeLists.txt 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/CMakeLists.txt 2017-11-17 00:40:01.000000000 +0000 @@ -1,6 +1,6 @@ # root CMakeLists for the SuperTuxKart project project(SuperTuxKart) -set(PROJECT_VERSION "0.9.2") +set(PROJECT_VERSION "0.9.3") cmake_minimum_required(VERSION 2.8.4) if(NOT (CMAKE_MAJOR_VERSION VERSION_LESS 3)) @@ -8,6 +8,14 @@ endif() set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${PROJECT_SOURCE_DIR}/cmake") +include(CMakeDependentOption) + +set(DEPENDENCIES "dependencies") +# In case of 64-bit windows, use a different path for dependencies +# so that both dependencies can be installed next to each other +if ( WIN32 AND (CMAKE_SIZEOF_VOID_P EQUAL 8 ) ) + set(DEPENDENCIES "dependencies-64bit") +endif() include(BuildTypeSTKRelease) if (NOT CMAKE_BUILD_TYPE) @@ -15,10 +23,22 @@ set(CMAKE_BUILD_TYPE "STKRelease") endif() +option(SERVER_ONLY "Create a server only (i.e. no graphics or sound)" OFF) option(USE_FRIBIDI "Support for right-to-left languages" ON) option(CHECK_ASSETS "Check if assets are installed in ../stk-assets" ON) option(USE_SYSTEM_ANGELSCRIPT "Use system angelscript instead of built-in angelscript. If you enable this option, make sure to use a compatible version." OFF) -option(ENABLE_NETWORK_MULTIPLAYER "Enable network multiplayer. This will replace the online profile GUI in the main menu with the network multiplayer GUI" OFF) +option(ENABLE_WAYLAND_DEVICE "Enable Wayland device for linux build" OFF) + +CMAKE_DEPENDENT_OPTION(BUILD_RECORDER "Build opengl recorder" ON + "NOT SERVER_ONLY;NOT USE_GLES2;NOT APPLE" OFF) + +if (UNIX AND NOT APPLE) + option(USE_GLES2 "Use OpenGL ES2 renderer" OFF) +endif() + +if(UNIX OR MINGW) + option(DEBUG_SYMBOLS "Compile with debug symbols" OFF) +endif() if(MSVC AND (MSVC_VERSION LESS 1900)) # Normally hide the option to build wiiuse on VS, since it depends @@ -30,15 +50,15 @@ set(WIIUSE_BUILD ON) endif() -if(MINGW OR CYGWIN) +if(MINGW OR CYGWIN OR SERVER_ONLY) option(USE_WIIUSE "Support for wiimote input devices" OFF) else() option(USE_WIIUSE "Support for wiimote input devices" ON) endif() if(UNIX AND NOT APPLE) - option(USE_XRANDR "Use xrandr instead of vidmode" ON) option(USE_ASAN "Build with Leak/Address sanitizer" OFF) + option(USE_LIBBFD "Use libbfd for crash reporting and leak check" OFF) endif() set(STK_SOURCE_DIR "src") @@ -53,10 +73,32 @@ # These variables enable MSVC to find libraries located in "dependencies" if(WIN32) - set(ENV{PATH} "$ENV{PATH};${PROJECT_SOURCE_DIR}/dependencies/include") - set(ENV{LIB} ${PROJECT_SOURCE_DIR}/dependencies/lib) - set(ENV{OPENALDIR} ${PROJECT_SOURCE_DIR}/dependencies) + set(ENV{PATH} "$ENV{PATH};${PROJECT_SOURCE_DIR}/${DEPENDENCIES}/include") + set(ENV{LIB} ${PROJECT_SOURCE_DIR}/${DEPENDENCIES}/lib) + set(ENV{OPENALDIR} ${PROJECT_SOURCE_DIR}/${DEPENDENCIES}) add_definitions(-D_IRR_STATIC_LIB_) + add_definitions(-DNO_IRR_COMPILE_WITH_X11_) +endif() + +if(USE_GLES2) + add_definitions(-DUSE_GLES2) + add_definitions(-D_IRR_COMPILE_WITH_OGLES2_ -DNO_IRR_COMPILE_WITH_OPENGL_) +endif() + +if(SERVER_ONLY) + add_definitions(-DSERVER_ONLY) + add_definitions(-DNO_IRR_COMPILE_WITH_X11_) +endif() + +#if(DISABLE_VPX) +# add_definitions(-DNO_VPX) +#endif() + +if(UNIX OR MINGW) + if(DEBUG_SYMBOLS) + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -g") + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g") + endif() endif() # Build the Bullet physics library @@ -68,11 +110,13 @@ include_directories("${PROJECT_SOURCE_DIR}/lib/enet/include") # Build glew library -add_definitions(-DGLEW_NO_GLU) -add_subdirectory("${PROJECT_SOURCE_DIR}/lib/glew") -include_directories("${PROJECT_SOURCE_DIR}/lib/glew/include") +if(NOT USE_GLES2 AND NOT SERVER_ONLY) + add_definitions(-DGLEW_NO_GLU) + add_subdirectory("${PROJECT_SOURCE_DIR}/lib/glew") + include_directories("${PROJECT_SOURCE_DIR}/lib/glew/include") +endif() -if((WIN32 AND NOT MINGW) OR APPLE) +if(MSVC OR APPLE) if (NOT APPLE) # Build zlib library add_subdirectory("${PROJECT_SOURCE_DIR}/lib/zlib") @@ -83,22 +127,54 @@ endif() # Build png library - set (SKIP_INSTALL_ALL TRUE) - set (PNG_STATIC TRUE) - set (PNG_TESTS FALSE) - set (PNG_SHARED FALSE) + set(SKIP_INSTALL_ALL TRUE) + set(PNG_STATIC TRUE CACHE BOOL "Build static lib") + set(PNG_TESTS FALSE CACHE BOOL "Build libpng tests") + set(PNG_SHARED FALSE CACHE BOOL "Build shared lib") add_subdirectory("${PROJECT_SOURCE_DIR}/lib/libpng") include_directories("${PROJECT_SOURCE_DIR}/lib/libpng") - #build jpeg library + set(PNG_PNG_INCLUDE_DIR "${PROJECT_SOURCE_DIR}/lib/libpng/") + set(PNG_LIBRARY png_static) +endif() + +# Add jpeg library +if (APPLE) add_subdirectory("${PROJECT_SOURCE_DIR}/lib/jpeglib") include_directories("${PROJECT_SOURCE_DIR}/lib/jpeglib") - - set(PNG_PNG_INCLUDE_DIR "${PROJECT_SOURCE_DIR}/lib/libpng/") - set(PNG_LIBRARY png15_static) set(JPEG_INCLUDE_DIR "${PROJECT_SOURCE_DIR}/lib/jpeglib/") set(JPEG_LIBRARY jpeglib) +else() + find_package(JPEG REQUIRED) + include_directories(${JPEG_INCLUDE_DIR}) endif() + +if (BUILD_RECORDER) + find_library(OPENGLRECORDER_LIBRARY NAMES openglrecorder libopenglrecorder PATHS "${PROJECT_SOURCE_DIR}/${DEPENDENCIES}/lib") + find_path(OPENGLRECORDER_INCLUDEDIR NAMES openglrecorder.h PATHS "${PROJECT_SOURCE_DIR}/${DEPENDENCIES}/include") + if (NOT OPENGLRECORDER_LIBRARY OR NOT OPENGLRECORDER_INCLUDEDIR) + if(PROJECT_VERSION STREQUAL "git") + message(WARNING "libopenglrecorder not found, disabling in-game recorder. " + "To use recorder, install libopenglrecorder.") + set(OPENGLRECORDER_LIBRARY CACHE INTERNAL "") + set(OPENGLRECORDER_INCLUDEDIR CACHE INTERNAL "") + set(BUILD_RECORDER OFF) + else() + message(FATAL_ERROR "libopenglrecorder not found. " + "Either install libopenglrecorder or disable in-game recorder with -DBUILD_RECORDER=0") + endif() + else() + include_directories(${OPENGLRECORDER_INCLUDEDIR}) + mark_as_advanced(OPENGLRECORDER_LIBRARY OPENGLRECORDER_INCLUDEDIR) + add_definitions(-DENABLE_RECORDER) + endif() +endif() + +if(NOT SERVER_ONLY AND NOT USE_GLES2) + add_subdirectory("${PROJECT_SOURCE_DIR}/lib/graphics_utils") + include_directories("${PROJECT_SOURCE_DIR}/lib/graphics_utils") +endif() + # Build the irrlicht library add_subdirectory("${PROJECT_SOURCE_DIR}/lib/irrlicht") include_directories("${PROJECT_SOURCE_DIR}/lib/irrlicht/include") @@ -187,29 +263,20 @@ endif() endif() -# OpenMP -find_package(OpenMP) -if (OPENMP_FOUND) - set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${OpenMP_C_FLAGS}") - set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${OpenMP_CXX_FLAGS}") -endif() - # OpenGL -find_package(OpenGL REQUIRED) -include_directories(${OPENGL_INCLUDE_DIR}) - -if(UNIX AND NOT APPLE) - find_package(X11 REQUIRED) - include_directories(${X11_INCLUDE_DIR}) +if(NOT USE_GLES2 AND NOT SERVER_ONLY) + find_package(OpenGL REQUIRED) + include_directories(${OPENGL_INCLUDE_DIR}) +endif() - if(USE_XRANDR) - find_package(Xrandr REQUIRED) - if(NOT XRANDR_FOUND) - message(FATAL_ERROR "XRANDR not found.") - endif() +if(USE_LIBBFD) + find_package(Libbfd) + if(LIBBFD_FOUND) + add_definitions(-DENABLE_LIBBFD) + include_directories(${LIBBFD_INCLUDE_DIRS}) else() - find_library(IRRLICHT_XF86VM_LIBRARY Xxf86vm) - mark_as_advanced(IRRLICHT_XF86VM_LIBRARY) + set(USE_LIBBFD OFF CACHE BOOL "Use libbfd for crash reporting and leak check" FORCE) + message(WARNING "Libbfd not found, disable integrated stack trace.") endif() endif() @@ -223,11 +290,6 @@ SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,--subsystem,windows") endif() -# Netwowk Multiplayer -if(ENABLE_NETWORK_MULTIPLAYER) - add_definitions(-DENABLE_NETWORK_MULTIPLAYER_SCREEN) -endif() - if(WIN32) # By default windows.h has macros defined for min and max that screw up everything add_definitions(-DNOMINMAX) @@ -309,7 +371,7 @@ elseif(MINGW) set(PTHREAD_NAMES "winpthread-1" "libwinpthread-1" "pthreadGC2") endif() - find_library(PTHREAD_LIBRARY NAMES pthread ${PTHREAD_NAMES} PATHS ${PROJECT_SOURCE_DIR}/dependencies/lib) + find_library(PTHREAD_LIBRARY NAMES pthread ${PTHREAD_NAMES} PATHS ${PROJECT_SOURCE_DIR}/${DEPENDENCIES}/lib) mark_as_advanced(PTHREAD_LIBRARY) # Set data dir (absolute or relative to CMAKE_INSTALL_PREFIX) @@ -330,8 +392,10 @@ endif() # CURL -if(WIN32) - target_link_libraries(supertuxkart ${PROJECT_SOURCE_DIR}/dependencies/lib/libcurldll.a) +if(MSVC) + target_link_libraries(supertuxkart ${PROJECT_SOURCE_DIR}/${DEPENDENCIES}/lib/libcurl.lib) +elseif(MINGW) + target_link_libraries(supertuxkart ${PROJECT_SOURCE_DIR}/${DEPENDENCIES}/lib/libcurldll.a) else() find_package(CURL REQUIRED) include_directories(${CURL_INCLUDE_DIRS}) @@ -343,22 +407,28 @@ bulletcollision bulletmath enet - glew stkirrlicht ${Angelscript_LIBRARIES} ${CURL_LIBRARIES} ${OGGVORBIS_LIBRARIES} ${OPENAL_LIBRARY} - ${OPENGL_LIBRARIES} ${FREETYPE_LIBRARIES} + ${JPEG_LIBRARIES} + ${TURBOJPEG_LIBRARY} + #${VPX_LIBRARIES} ) -if(UNIX AND NOT APPLE) - target_link_libraries(supertuxkart ${X11_LIBRARIES}) - if(USE_XRANDR) - target_link_libraries(supertuxkart ${XRANDR_LIBRARIES}) +if(NOT SERVER_ONLY) + if(NOT USE_GLES2) + target_link_libraries(supertuxkart ${OPENGL_gl_LIBRARY} glew graphics_utils) else() - target_link_libraries(supertuxkart ${IRRLICHT_XF86VM_LIBRARY}) + target_link_libraries(supertuxkart GLESv2) + endif() +endif() + +if(UNIX AND NOT APPLE) + if(USE_LIBBFD) + target_link_libraries(supertuxkart ${LIBBFD_LIBRARIES}) endif() if(USE_ASAN) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=address -fno-omit-frame-pointer") @@ -366,6 +436,10 @@ endif() endif() +if(BUILD_RECORDER) + target_link_libraries(supertuxkart ${OPENGLRECORDER_LIBRARY}) +endif() + # FreeBSD does not search in /usr/local/lib, but at least Freetype is installed there :( if(${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD") SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -L/usr/local/lib") @@ -396,7 +470,7 @@ if(WIIUSE_BUILD) target_link_libraries(supertuxkart wiiuse) else() - target_link_libraries(supertuxkart ${PROJECT_SOURCE_DIR}/dependencies/lib/wiiuse.lib) + target_link_libraries(supertuxkart ${PROJECT_SOURCE_DIR}/${DEPENDENCIES}/lib/wiiuse.lib) endif() else() target_link_libraries(supertuxkart wiiuse bluetooth) @@ -409,7 +483,7 @@ target_link_libraries(supertuxkart iphlpapi.lib) add_custom_command(TARGET supertuxkart POST_BUILD COMMAND ${CMAKE_COMMAND} -E copy_directory - "${PROJECT_SOURCE_DIR}/dependencies/dll" + "${PROJECT_SOURCE_DIR}/${DEPENDENCIES}/dll" $) add_custom_target(stkshaders SOURCES ${STK_SHADERS}) endif() @@ -423,10 +497,6 @@ if(LIBSTDCPP) file(COPY ${LIBSTDCPP} DESTINATION ${CMAKE_BINARY_DIR}/bin/) endif() - find_library(LIBOPENMP NAMES "libgomp-1.dll" PATHS ${CMAKE_FIND_ROOT_PATH}) - if(LIBOPENMP) - file(COPY ${LIBOPENMP} DESTINATION ${CMAKE_BINARY_DIR}/bin/) - endif() find_library(LIBPTHREAD NAMES "winpthread-1.dll" "libwinpthread-1.dll" "pthreadGC2.dll" PATHS ${CMAKE_FIND_ROOT_PATH}) if(LIBPTHREAD) file(COPY ${LIBPTHREAD} DESTINATION ${CMAKE_BINARY_DIR}/bin/) @@ -470,9 +540,9 @@ install(DIRECTORY ${STK_ASSETS_DIR} DESTINATION ${STK_INSTALL_DATA_DIR}/data PATTERN ".svn" EXCLUDE PATTERN ".git" EXCLUDE) endif() install(FILES ${STK_DATA_DIR}/supertuxkart.desktop DESTINATION share/applications) -install(FILES data/supertuxkart_32.png DESTINATION share/icons/hicolor/32x32/apps RENAME supertuxkart.png) +install(FILES data/supertuxkart_48.png DESTINATION share/icons/hicolor/48x48/apps RENAME supertuxkart.png) install(FILES data/supertuxkart_128.png DESTINATION share/icons/hicolor/128x128/apps RENAME supertuxkart.png) -install(FILES data/supertuxkart_32.png data/supertuxkart_128.png DESTINATION share/pixmaps) +install(FILES data/supertuxkart_48.png DESTINATION share/pixmaps RENAME supertuxkart.png) install(FILES data/supertuxkart.appdata.xml DESTINATION share/appdata) if(MINGW) diff -Nru supertuxkart-0.9.2+dfsg/COPYING supertuxkart-0.9.3/COPYING --- supertuxkart-0.9.2+dfsg/COPYING 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/COPYING 2017-10-25 01:18:37.000000000 +0000 @@ -12,7 +12,7 @@ Version 3, 29 June 2007 -Copyright © 2007 Free Software Foundation, Inc. +Copyright (c) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. diff -Nru supertuxkart-0.9.2+dfsg/data/achievements.xml supertuxkart-0.9.3/data/achievements.xml --- supertuxkart-0.9.2+dfsg/data/achievements.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/achievements.xml 2017-10-19 04:33:01.000000000 +0000 @@ -2,9 +2,9 @@ - + - + @@ -19,9 +19,10 @@ - + + diff -Nru supertuxkart-0.9.2+dfsg/data/challenges/abyss.challenge supertuxkart-0.9.3/data/challenges/abyss.challenge --- supertuxkart-0.9.2+dfsg/data/challenges/abyss.challenge 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/challenges/abyss.challenge 2017-11-03 09:03:56.000000000 +0000 @@ -10,7 +10,7 @@ - + diff -Nru supertuxkart-0.9.2+dfsg/data/challenges/city.challenge supertuxkart-0.9.3/data/challenges/city.challenge --- supertuxkart-0.9.2+dfsg/data/challenges/city.challenge 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/challenges/city.challenge 2017-10-19 04:33:01.000000000 +0000 @@ -1,6 +1,6 @@ - + @@ -16,4 +16,6 @@ + + diff -Nru supertuxkart-0.9.2+dfsg/data/challenges/cornfield_crossing.challenge supertuxkart-0.9.3/data/challenges/cornfield_crossing.challenge --- supertuxkart-0.9.2+dfsg/data/challenges/cornfield_crossing.challenge 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/challenges/cornfield_crossing.challenge 2017-04-23 17:18:56.000000000 +0000 @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff -Nru supertuxkart-0.9.2+dfsg/data/challenges/farm.challenge supertuxkart-0.9.3/data/challenges/farm.challenge --- supertuxkart-0.9.2+dfsg/data/challenges/farm.challenge 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/challenges/farm.challenge 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff -Nru supertuxkart-0.9.2+dfsg/data/challenges/hacienda.challenge supertuxkart-0.9.3/data/challenges/hacienda.challenge --- supertuxkart-0.9.2+dfsg/data/challenges/hacienda.challenge 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/challenges/hacienda.challenge 2017-10-19 04:33:01.000000000 +0000 @@ -10,10 +10,10 @@ - + - + diff -Nru supertuxkart-0.9.2+dfsg/data/challenges/olivermath.challenge supertuxkart-0.9.3/data/challenges/olivermath.challenge --- supertuxkart-0.9.2+dfsg/data/challenges/olivermath.challenge 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/challenges/olivermath.challenge 2017-04-23 17:18:56.000000000 +0000 @@ -14,7 +14,7 @@ - + Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/CREDITS and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/CREDITS differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/icons/indicator.b3d and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/icons/indicator.b3d differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/icons/indicator.spm and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/icons/indicator.spm differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_accacia_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_accacia_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_agave_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_agave_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_airConditioner_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_airConditioner_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_animalPig_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_animalPig_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_animGrass_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_animGrass_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_armchair_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_armchair_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_asianLantern_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_asianLantern_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_asianWoodPost_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_asianWoodPost_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_autumnSmallBush_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_autumnSmallBush_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_autumnTree_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_autumnTree_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_aztecFountain_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_aztecFountain_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_aztecFountain.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_aztecFountain.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_aztecHouse_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_aztecHouse_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_aztecHouse_b.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_aztecHouse_b.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_aztecHut_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_aztecHut_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_aztekGirlCheering_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_aztekGirlCheering_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_aztekTorch_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_aztekTorch_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_aztekVase_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_aztekVase_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_balcony_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_balcony_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_bambooTorch_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_bambooTorch_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_beachBarMenu_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_beachBarMenu_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_beachGuy_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_beachGuy_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_beachWomen_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_beachWomen_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_bench_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_bench_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_bigAirBlower_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_bigAirBlower_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_bigBlueFutureLight_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_bigBlueFutureLight_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_blimp_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_blimp_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_blueRadioTower_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_blueRadioTower_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_boxGrid_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_boxGrid_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_cabbage_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_cabbage_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_candle_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_candle_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_carrot_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_carrot_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_cartraffic_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_cartraffic_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_cattail_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_cattail_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_chimney_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_chimney_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_chimney_b.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_chimney_b.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_classchair_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_classchair_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_cliffGrassEarth_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_cliffGrassEarth_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_cocoaTree_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_cocoaTree_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_computer_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_computer_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_computerScreenMail_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_computerScreenMail_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_cornPlant_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_cornPlant_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_cypress_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_cypress_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_deadTree_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_deadTree_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_electricalBox_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_electricalBox_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_electricalFence_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_electricalFence_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_electricalFenceGate_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_electricalFenceGate_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_electricalFencePost_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_electricalFencePost_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_entranceGuardianMale_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_entranceGuardianMale_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_fern_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_fern_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_fishSkeleton_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_fishSkeleton_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_fitchBarrel_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_fitchBarrel_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_fitchBarreltest_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_fitchBarreltest_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_giantPlasticBag_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_giantPlasticBag_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_gnuMeditation_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_gnuMeditation_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_gramophone_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_gramophone_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_greenRadioTower_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_greenRadioTower_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_hayBall_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_hayBall_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_hexajet_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_hexajet_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_igloo_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_igloo_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_inflatableFence_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_inflatableFence_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_inflatableFence_b.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_inflatableFence_b.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_inflatableFence_c.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_inflatableFence_c.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_jetBlast_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_jetBlast_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_jungleTree_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_jungleTree_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_jungleTree_b.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_jungleTree_b.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_lamponeFlag_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_lamponeFlag_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_liana_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_liana_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_liana_source.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_liana_source.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_logBarrier_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_logBarrier_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_loudspeaker_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_loudspeaker_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_loveAlcove_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_loveAlcove_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_loveGate_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_loveGate_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_loveLantern_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_loveLantern_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_lowAnimGrass_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_lowAnimGrass_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_lowPalmTree_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_lowPalmTree_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_lowPineTree_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_lowPineTree_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_lowRockBarrier_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_lowRockBarrier_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_luggage_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_luggage_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_mailbox_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_mailbox_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_mermaid_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_mermaid_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_metalPostLamp_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_metalPostLamp_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_metalSupportBeam_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_metalSupportBeam_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_mineLantern_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_mineLantern_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_modernHousing_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_modernHousing_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_modernHousing_b.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_modernHousing_b.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_monkeyCheering_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_monkeyCheering_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_movingMapPlane_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_movingMapPlane_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_mudpot_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_mudpot_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_mushroom_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_mushroom_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_mushroom_b.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_mushroom_b.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_nolokFlags_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_nolokFlags_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_oldCar_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_oldCar_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_oldLantern_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_oldLantern_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_oldLibraryLamp_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_oldLibraryLamp_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_oldLightBulbGroup.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_oldLightBulbGroup.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_oldschoolLamp_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_oldschoolLamp_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_oldschoolLampVerticalSupport_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_oldschoolLampVerticalSupport_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_orangeCocktail_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_orangeCocktail_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_pallet_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_pallet_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_palmTree_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_palmTree_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_papiAirport_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_papiAirport_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_partyFlags_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_partyFlags_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_pencilPaint_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_pencilPaint_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_pinetree_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_pinetree_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_pinkRibbon_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_pinkRibbon_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_piranha_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_piranha_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_poseidon_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_poseidon_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_prayerFlags_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_prayerFlags_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_princessSaraDepartureAirport_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_princessSaraDepartureAirport_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_pumpkin_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_pumpkin_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_ranchPortal_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_ranchPortal_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_redCrab_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_redCrab_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_redFlowerBush_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_redFlowerBush_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_redParrot_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_redParrot_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_redSeaweed_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_redSeaweed_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_redShell_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_redShell_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_redToriiPortal_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_redToriiPortal_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_redXmasLight_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_redXmasLight_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_ReedBoat_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_ReedBoat_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_reef_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_reef_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_rocketBooster_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_rocketBooster_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_roots_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_roots_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_runwayBeacon_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_runwayBeacon_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_sagebrush_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_sagebrush_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_sandCastle_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_sandCastle_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_saraVertical_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_saraVertical_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_seaLantern_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_seaLantern_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_seaweed_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_seaweed_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_showProjector_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_showProjector_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_silvianClock_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_silvianClock_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_silvianGirl_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_silvianGirl_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_silvianHouse_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_silvianHouse_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_silvianHouse_b.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_silvianHouse_b.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_silvianHouse_c.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_silvianHouse_c.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_silvianKiosk_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_silvianKiosk_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_skyBeam_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_skyBeam_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_slivianFountain_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_slivianFountain_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_smartphone_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_smartphone_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_snowRocks_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_snowRocks_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_snowSmallBush_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_snowSmallBush_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_speedTrap_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_speedTrap_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_spiralBlueShell_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_spiralBlueShell_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_stkVertical_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_stkVertical_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_stormLantern_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_stormLantern_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_tetrapodUnderwater_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_tetrapodUnderwater_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_tiresBarrier_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_tiresBarrier_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_trainSemaphore_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_trainSemaphore_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_trijet_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_trijet_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_tropicalPlant_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_tropicalPlant_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_tvVan_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_tvVan_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_umbrellaBeach_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_umbrellaBeach_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_usSignMerge_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_usSignMerge_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_waterLily_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_waterLily_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_watertower_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_watertower_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_weatherCock_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_weatherCock_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_welcomeAboard_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_welcomeAboard_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_wilbertSecurity_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_wilbertSecurity_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_windpump_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_windpump_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_woodLittleBridge_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_woodLittleBridge_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_woodLodge_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_woodLodge_a.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_woodPostLamp_a_main.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_woodPostLamp_a_main.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/editor/img/stklib_woodPostLamp_a.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/editor/img/stklib_woodPostLamp_a.png differ diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/horse.xml supertuxkart-0.9.3/data/editor/xml/horse.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/horse.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/horse.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,7 +0,0 @@ - - - - - - - diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_accacia_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_accacia_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_accacia_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_accacia_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_agave_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_agave_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_agave_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_agave_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_airConditioner_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_airConditioner_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_airConditioner_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_airConditioner_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_animalPig_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_animalPig_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_animalPig_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_animalPig_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_animGrass_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_animGrass_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_animGrass_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_animGrass_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_animGrass_a.xml supertuxkart-0.9.3/data/editor/xml/stklib_animGrass_a.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_animGrass_a.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_animGrass_a.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,5 +0,0 @@ - - - - - diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_armchair_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_armchair_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_armchair_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_armchair_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_asianLantern_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_asianLantern_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_asianLantern_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_asianLantern_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_asianWoodPost_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_asianWoodPost_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_asianWoodPost_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_asianWoodPost_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_autumnSmallBush_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_autumnSmallBush_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_autumnSmallBush_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_autumnSmallBush_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_autumnTree_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_autumnTree_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_autumnTree_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_autumnTree_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_aztecFountain_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_aztecFountain_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_aztecFountain_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_aztecFountain_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_aztecFountain_a_main.xml supertuxkart-0.9.3/data/editor/xml/stklib_aztecFountain_a_main.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_aztecFountain_a_main.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_aztecFountain_a_main.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ - - - - - - - - diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_aztecHouse_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_aztecHouse_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_aztecHouse_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_aztecHouse_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_aztecHouse_a.xml supertuxkart-0.9.3/data/editor/xml/stklib_aztecHouse_a.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_aztecHouse_a.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_aztecHouse_a.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,5 +0,0 @@ - - - - - diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_aztecHouse_b.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_aztecHouse_b.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_aztecHouse_b.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_aztecHouse_b.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_aztecHouse_b.xml supertuxkart-0.9.3/data/editor/xml/stklib_aztecHouse_b.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_aztecHouse_b.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_aztecHouse_b.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,5 +0,0 @@ - - - - - diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_aztecHut_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_aztecHut_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_aztecHut_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_aztecHut_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_aztekGirlCheering_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_aztekGirlCheering_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_aztekGirlCheering_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_aztekGirlCheering_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_aztekTorch_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_aztekTorch_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_aztekTorch_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_aztekTorch_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_aztekTorch_a.xml supertuxkart-0.9.3/data/editor/xml/stklib_aztekTorch_a.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_aztekTorch_a.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_aztekTorch_a.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,5 +0,0 @@ - - - - - diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_aztekVase_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_aztekVase_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_aztekVase_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_aztekVase_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_balcony_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_balcony_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_balcony_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_balcony_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_balcony_a.xml supertuxkart-0.9.3/data/editor/xml/stklib_balcony_a.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_balcony_a.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_balcony_a.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,5 +0,0 @@ - - - - - diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_bambooTorch_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_bambooTorch_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_bambooTorch_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_bambooTorch_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_beachBarMenu_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_beachBarMenu_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_beachBarMenu_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_beachBarMenu_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_beachGuy_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_beachGuy_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_beachGuy_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_beachGuy_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_beachWomen_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_beachWomen_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_beachWomen_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_beachWomen_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_bench_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_bench_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_bench_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_bench_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_bigAirBlower_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_bigAirBlower_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_bigAirBlower_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_bigAirBlower_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_bigBlueFutureLight_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_bigBlueFutureLight_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_bigBlueFutureLight_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_bigBlueFutureLight_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_blimp_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_blimp_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_blimp_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_blimp_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_blueRadioTower_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_blueRadioTower_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_blueRadioTower_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_blueRadioTower_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_boxGrid_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_boxGrid_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_boxGrid_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_boxGrid_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_cabbage_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_cabbage_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_cabbage_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_cabbage_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_candle_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_candle_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_candle_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_candle_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_carrot_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_carrot_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_carrot_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_carrot_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_cartraffic_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_cartraffic_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_cartraffic_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_cartraffic_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_cattail_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_cattail_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_cattail_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_cattail_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_chimney_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_chimney_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_chimney_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_chimney_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_chimney_a.xml supertuxkart-0.9.3/data/editor/xml/stklib_chimney_a.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_chimney_a.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_chimney_a.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,5 +0,0 @@ - - - - - diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_chimney_b.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_chimney_b.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_chimney_b.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_chimney_b.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_chimney_b.xml supertuxkart-0.9.3/data/editor/xml/stklib_chimney_b.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_chimney_b.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_chimney_b.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,5 +0,0 @@ - - - - - diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_classchair_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_classchair_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_classchair_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_classchair_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_cliffGrassEarth_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_cliffGrassEarth_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_cliffGrassEarth_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_cliffGrassEarth_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_cliffGrassEarth_a.xml supertuxkart-0.9.3/data/editor/xml/stklib_cliffGrassEarth_a.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_cliffGrassEarth_a.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_cliffGrassEarth_a.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ - - - - - - - - - diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_cocoaTree_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_cocoaTree_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_cocoaTree_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_cocoaTree_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_computer_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_computer_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_computer_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_computer_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_computerScreenMail_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_computerScreenMail_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_computerScreenMail_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_computerScreenMail_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_cornPlant_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_cornPlant_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_cornPlant_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_cornPlant_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_cypress_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_cypress_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_cypress_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_cypress_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_deadTree_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_deadTree_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_deadTree_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_deadTree_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_electricalBox_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_electricalBox_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_electricalBox_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_electricalBox_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_electricalFence_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_electricalFence_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_electricalFence_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_electricalFence_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_electricalFenceGate_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_electricalFenceGate_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_electricalFenceGate_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_electricalFenceGate_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_electricalFencePost_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_electricalFencePost_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_electricalFencePost_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_electricalFencePost_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_entranceGuardianMale_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_entranceGuardianMale_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_entranceGuardianMale_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_entranceGuardianMale_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_fern_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_fern_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_fern_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_fern_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_fern_a.xml supertuxkart-0.9.3/data/editor/xml/stklib_fern_a.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_fern_a.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_fern_a.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,7 +0,0 @@ - - - - - - - diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_fishSkeleton_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_fishSkeleton_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_fishSkeleton_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_fishSkeleton_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_fitchBarrel_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_fitchBarrel_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_fitchBarrel_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_fitchBarrel_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_fitchBarrel_a.xml supertuxkart-0.9.3/data/editor/xml/stklib_fitchBarrel_a.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_fitchBarrel_a.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_fitchBarrel_a.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ - - - - - - - - diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_fitchBarrelTest_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_fitchBarrelTest_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_fitchBarrelTest_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_fitchBarrelTest_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_fitchBarreltest_a.xml supertuxkart-0.9.3/data/editor/xml/stklib_fitchBarreltest_a.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_fitchBarreltest_a.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_fitchBarreltest_a.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ - - - - - - - - diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_giantPlasticBag_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_giantPlasticBag_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_giantPlasticBag_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_giantPlasticBag_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_gnuMeditation_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_gnuMeditation_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_gnuMeditation_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_gnuMeditation_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_gramophone_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_gramophone_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_gramophone_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_gramophone_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_greenRadioTower_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_greenRadioTower_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_greenRadioTower_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_greenRadioTower_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_hayBall_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_hayBall_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_hayBall_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_hayBall_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_hayBall_a.xml supertuxkart-0.9.3/data/editor/xml/stklib_hayBall_a.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_hayBall_a.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_hayBall_a.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ - - - - - - - - - diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_hexajet_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_hexajet_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_hexajet_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_hexajet_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_igloo_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_igloo_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_igloo_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_igloo_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_inflatableFence_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_inflatableFence_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_inflatableFence_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_inflatableFence_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_inflatableFence_b.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_inflatableFence_b.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_inflatableFence_b.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_inflatableFence_b.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_inflatableFence_c.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_inflatableFence_c.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_inflatableFence_c.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_inflatableFence_c.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_jetBlast_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_jetBlast_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_jetBlast_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_jetBlast_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_jungleTree_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_jungleTree_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_jungleTree_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_jungleTree_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_jungleTree_a.xml supertuxkart-0.9.3/data/editor/xml/stklib_jungleTree_a.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_jungleTree_a.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_jungleTree_a.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ - - - - - - - - - diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_jungleTree_b.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_jungleTree_b.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_jungleTree_b.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_jungleTree_b.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_jungleTree_b_main.xml supertuxkart-0.9.3/data/editor/xml/stklib_jungleTree_b_main.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_jungleTree_b_main.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_jungleTree_b_main.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ - - - - - - - - - diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_lamponeFlag_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_lamponeFlag_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_lamponeFlag_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_lamponeFlag_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_liana_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_liana_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_liana_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_liana_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_liana_a.xml supertuxkart-0.9.3/data/editor/xml/stklib_liana_a.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_liana_a.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_liana_a.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,7 +0,0 @@ - - - - - - - diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_liana_source.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_liana_source.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_liana_source.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_liana_source.blend.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_logBarrier_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_logBarrier_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_logBarrier_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_logBarrier_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_loudspeaker_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_loudspeaker_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_loudspeaker_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_loudspeaker_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_loveAlcove_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_loveAlcove_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_loveAlcove_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_loveAlcove_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_loveGate_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_loveGate_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_loveGate_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_loveGate_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_loveLantern_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_loveLantern_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_loveLantern_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_loveLantern_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_loveLantern_a.xml supertuxkart-0.9.3/data/editor/xml/stklib_loveLantern_a.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_loveLantern_a.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_loveLantern_a.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ - - - - - - - - - diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_lowAnimGrass_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_lowAnimGrass_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_lowAnimGrass_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_lowAnimGrass_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_lowPalmTree_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_lowPalmTree_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_lowPalmTree_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_lowPalmTree_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_lowPineTree_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_lowPineTree_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_lowPineTree_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_lowPineTree_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_lowRockBarrier_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_lowRockBarrier_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_lowRockBarrier_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_lowRockBarrier_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_lowRockBarrier_a.xml supertuxkart-0.9.3/data/editor/xml/stklib_lowRockBarrier_a.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_lowRockBarrier_a.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_lowRockBarrier_a.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ - - - - - - - - diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_luggage_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_luggage_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_luggage_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_luggage_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_mailbox_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_mailbox_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_mailbox_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_mailbox_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_mermaid_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_mermaid_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_mermaid_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_mermaid_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_metalPostLamp_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_metalPostLamp_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_metalPostLamp_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_metalPostLamp_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_metalSupportBeam_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_metalSupportBeam_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_metalSupportBeam_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_metalSupportBeam_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_metalSupportBeam_a.xml supertuxkart-0.9.3/data/editor/xml/stklib_metalSupportBeam_a.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_metalSupportBeam_a.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_metalSupportBeam_a.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,7 +0,0 @@ - - - - - - - diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_mineLantern_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_mineLantern_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_mineLantern_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_mineLantern_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_modernHousing_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_modernHousing_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_modernHousing_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_modernHousing_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_modernHousing_b.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_modernHousing_b.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_modernHousing_b.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_modernHousing_b.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_monkeyCheering_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_monkeyCheering_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_monkeyCheering_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_monkeyCheering_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_movingMapPlane_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_movingMapPlane_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_movingMapPlane_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_movingMapPlane_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_mudpot_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_mudpot_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_mudpot_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_mudpot_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_mushroom_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_mushroom_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_mushroom_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_mushroom_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_mushroom_b.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_mushroom_b.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_mushroom_b.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_mushroom_b.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_nolokFlags_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_nolokFlags_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_nolokFlags_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_nolokFlags_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_oldCar_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_oldCar_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_oldCar_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_oldCar_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_oldLantern_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_oldLantern_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_oldLantern_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_oldLantern_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_oldLantern_a.xml supertuxkart-0.9.3/data/editor/xml/stklib_oldLantern_a.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_oldLantern_a.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_oldLantern_a.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ - - - - - - - - diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_oldLibraryLamp_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_oldLibraryLamp_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_oldLibraryLamp_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_oldLibraryLamp_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_oldLightBulbGroup.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_oldLightBulbGroup.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_oldLightBulbGroup.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_oldLightBulbGroup.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_oldschoolLamp_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_oldschoolLamp_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_oldschoolLamp_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_oldschoolLamp_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_oldschoolLampVerticalSupport_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_oldschoolLampVerticalSupport_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_oldschoolLampVerticalSupport_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_oldschoolLampVerticalSupport_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_orangeCocktail_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_orangeCocktail_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_orangeCocktail_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_orangeCocktail_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_pallet_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_pallet_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_pallet_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_pallet_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_palmTree_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_palmTree_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_palmTree_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_palmTree_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_palmTree_a.xml supertuxkart-0.9.3/data/editor/xml/stklib_palmTree_a.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_palmTree_a.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_palmTree_a.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,7 +0,0 @@ - - - - - - - diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_papiAirport_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_papiAirport_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_papiAirport_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_papiAirport_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_partyFlags_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_partyFlags_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_partyFlags_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_partyFlags_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_pencilPaint_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_pencilPaint_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_pencilPaint_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_pencilPaint_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_pinetree_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_pinetree_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_pinetree_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_pinetree_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_pinkRibbon_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_pinkRibbon_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_pinkRibbon_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_pinkRibbon_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_piranha_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_piranha_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_piranha_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_piranha_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_poseidon_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_poseidon_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_poseidon_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_poseidon_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_prayerFlags_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_prayerFlags_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_prayerFlags_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_prayerFlags_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_princessSaraDepartureAirport_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_princessSaraDepartureAirport_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_princessSaraDepartureAirport_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_princessSaraDepartureAirport_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_pumpkin_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_pumpkin_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_pumpkin_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_pumpkin_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_pumpkin_a.xml supertuxkart-0.9.3/data/editor/xml/stklib_pumpkin_a.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_pumpkin_a.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_pumpkin_a.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ - - - - - - - - diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_ranchPortal_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_ranchPortal_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_ranchPortal_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_ranchPortal_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_redCrab_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_redCrab_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_redCrab_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_redCrab_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_redFlowerBush_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_redFlowerBush_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_redFlowerBush_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_redFlowerBush_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_redFlowerBush_a.xml supertuxkart-0.9.3/data/editor/xml/stklib_redFlowerBush_a.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_redFlowerBush_a.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_redFlowerBush_a.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ - - - - - - - - diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_redParrot_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_redParrot_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_redParrot_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_redParrot_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_redParrot_a_mainstklib_redParrot_a.xml supertuxkart-0.9.3/data/editor/xml/stklib_redParrot_a_mainstklib_redParrot_a.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_redParrot_a_mainstklib_redParrot_a.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_redParrot_a_mainstklib_redParrot_a.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,7 +0,0 @@ - - - - - - - diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_redSeaweed_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_redSeaweed_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_redSeaweed_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_redSeaweed_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_redShell_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_redShell_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_redShell_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_redShell_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_redToriiPortal_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_redToriiPortal_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_redToriiPortal_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_redToriiPortal_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_redXmasLight_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_redXmasLight_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_redXmasLight_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_redXmasLight_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_ReedBoat_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_ReedBoat_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_ReedBoat_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_ReedBoat_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_reef_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_reef_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_reef_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_reef_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_rocketBooster_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_rocketBooster_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_rocketBooster_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_rocketBooster_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_roots_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_roots_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_roots_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_roots_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_roots_a_main.xml supertuxkart-0.9.3/data/editor/xml/stklib_roots_a_main.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_roots_a_main.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_roots_a_main.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ - - - - - - diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_runwayBeacon_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_runwayBeacon_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_runwayBeacon_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_runwayBeacon_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_sagebrush_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_sagebrush_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_sagebrush_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_sagebrush_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_sagebrush_a_main.xml supertuxkart-0.9.3/data/editor/xml/stklib_sagebrush_a_main.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_sagebrush_a_main.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_sagebrush_a_main.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,7 +0,0 @@ - - - - - - - diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_sandCastle_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_sandCastle_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_sandCastle_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_sandCastle_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_saraVertical_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_saraVertical_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_saraVertical_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_saraVertical_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_seaLantern_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_seaLantern_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_seaLantern_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_seaLantern_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_seaweed_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_seaweed_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_seaweed_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_seaweed_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_showProjector_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_showProjector_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_showProjector_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_showProjector_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_silvianClock_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_silvianClock_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_silvianClock_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_silvianClock_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_silvianGirl_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_silvianGirl_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_silvianGirl_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_silvianGirl_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_silvianHouse_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_silvianHouse_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_silvianHouse_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_silvianHouse_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_silvianHouse_b.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_silvianHouse_b.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_silvianHouse_b.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_silvianHouse_b.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_silvianHouse_c.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_silvianHouse_c.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_silvianHouse_c.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_silvianHouse_c.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_silvianKiosk_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_silvianKiosk_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_silvianKiosk_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_silvianKiosk_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_skyBeam_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_skyBeam_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_skyBeam_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_skyBeam_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_slivianFountain_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_slivianFountain_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_slivianFountain_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_slivianFountain_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_smartphone_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_smartphone_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_smartphone_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_smartphone_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_snowRocks_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_snowRocks_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_snowRocks_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_snowRocks_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_snowSmallBush_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_snowSmallBush_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_snowSmallBush_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_snowSmallBush_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_speedTrap_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_speedTrap_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_speedTrap_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_speedTrap_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_spiralBlueShell_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_spiralBlueShell_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_spiralBlueShell_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_spiralBlueShell_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_stkVertical_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_stkVertical_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_stkVertical_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_stkVertical_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_stormLantern_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_stormLantern_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_stormLantern_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_stormLantern_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_tetrapodUnderwater_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_tetrapodUnderwater_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_tetrapodUnderwater_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_tetrapodUnderwater_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_tiresBarrier_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_tiresBarrier_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_tiresBarrier_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_tiresBarrier_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_trainSemaphore_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_trainSemaphore_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_trainSemaphore_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_trainSemaphore_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_trijet_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_trijet_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_trijet_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_trijet_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_tropicalPlant_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_tropicalPlant_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_tropicalPlant_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_tropicalPlant_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_tropicalPlant_a_main.xml supertuxkart-0.9.3/data/editor/xml/stklib_tropicalPlant_a_main.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_tropicalPlant_a_main.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_tropicalPlant_a_main.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,7 +0,0 @@ - - - - - - - diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_tvVan_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_tvVan_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_tvVan_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_tvVan_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_umbrellaBeach_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_umbrellaBeach_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_umbrellaBeach_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_umbrellaBeach_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_usSignMerge_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_usSignMerge_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_usSignMerge_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_usSignMerge_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_waterLily_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_waterLily_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_waterLily_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_waterLily_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_watertower_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_watertower_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_watertower_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_watertower_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_weatherCock_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_weatherCock_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_weatherCock_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_weatherCock_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_welcomeAboard_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_welcomeAboard_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_welcomeAboard_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_welcomeAboard_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_wilbertSecurity_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_wilbertSecurity_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_wilbertSecurity_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_wilbertSecurity_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_windpump_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_windpump_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_windpump_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_windpump_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_windpump_a_main.xml supertuxkart-0.9.3/data/editor/xml/stklib_windpump_a_main.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_windpump_a_main.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_windpump_a_main.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,7 +0,0 @@ - - - - - - - diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_woodLittleBridge_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_woodLittleBridge_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_woodLittleBridge_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_woodLittleBridge_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_woodLittleBridge_a_main.xml supertuxkart-0.9.3/data/editor/xml/stklib_woodLittleBridge_a_main.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_woodLittleBridge_a_main.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_woodLittleBridge_a_main.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,7 +0,0 @@ - - - - - - - diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_woodLodge_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_woodLodge_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_woodLodge_a.blend.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_woodLodge_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_woodPostLamp_a.blend.xml supertuxkart-0.9.3/data/editor/xml/stklib_woodPostLamp_a.blend.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_woodPostLamp_a.blend.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_woodPostLamp_a.blend.xml 2017-11-17 00:41:31.000000000 +0000 @@ -1,5 +1,5 @@ - - - - + + + + \ No newline at end of file diff -Nru supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_woodPostLamp_a.xml supertuxkart-0.9.3/data/editor/xml/stklib_woodPostLamp_a.xml --- supertuxkart-0.9.2+dfsg/data/editor/xml/stklib_woodPostLamp_a.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/editor/xml/stklib_woodPostLamp_a.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ - - - - - - - - - diff -Nru supertuxkart-0.9.2+dfsg/data/gfx/black_smoke.xml supertuxkart-0.9.3/data/gfx/black_smoke.xml --- supertuxkart-0.9.2+dfsg/data/gfx/black_smoke.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/gfx/black_smoke.xml 2017-10-19 04:33:01.000000000 +0000 @@ -26,7 +26,4 @@ - - - diff -Nru supertuxkart-0.9.2+dfsg/data/gfx/confetti_bleu.xml supertuxkart-0.9.3/data/gfx/confetti_bleu.xml --- supertuxkart-0.9.2+dfsg/data/gfx/confetti_bleu.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/gfx/confetti_bleu.xml 2017-10-19 04:33:01.000000000 +0000 @@ -25,11 +25,7 @@ - - - - + diff -Nru supertuxkart-0.9.2+dfsg/data/gfx/confetti.xml supertuxkart-0.9.3/data/gfx/confetti.xml --- supertuxkart-0.9.2+dfsg/data/gfx/confetti.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/gfx/confetti.xml 2017-10-19 04:33:01.000000000 +0000 @@ -25,11 +25,7 @@ - - - - + diff -Nru supertuxkart-0.9.2+dfsg/data/gfx/droplet.xml supertuxkart-0.9.3/data/gfx/droplet.xml --- supertuxkart-0.9.2+dfsg/data/gfx/droplet.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/gfx/droplet.xml 2017-10-19 04:33:01.000000000 +0000 @@ -26,7 +26,4 @@ - - - diff -Nru supertuxkart-0.9.2+dfsg/data/gfx/explosion_bomb.xml supertuxkart-0.9.3/data/gfx/explosion_bomb.xml --- supertuxkart-0.9.2+dfsg/data/gfx/explosion_bomb.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/gfx/explosion_bomb.xml 2017-10-19 04:33:01.000000000 +0000 @@ -10,24 +10,21 @@ - + - - - - diff -Nru supertuxkart-0.9.2+dfsg/data/gfx/explosion_cake.xml supertuxkart-0.9.3/data/gfx/explosion_cake.xml --- supertuxkart-0.9.2+dfsg/data/gfx/explosion_cake.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/gfx/explosion_cake.xml 2017-10-19 04:33:01.000000000 +0000 @@ -10,24 +10,21 @@ - + - - - - diff -Nru supertuxkart-0.9.2+dfsg/data/gfx/explosion_low.xml supertuxkart-0.9.3/data/gfx/explosion_low.xml --- supertuxkart-0.9.2+dfsg/data/gfx/explosion_low.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/gfx/explosion_low.xml 2017-10-19 04:33:01.000000000 +0000 @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + diff -Nru supertuxkart-0.9.2+dfsg/data/gfx/explosion.xml supertuxkart-0.9.3/data/gfx/explosion.xml --- supertuxkart-0.9.2+dfsg/data/gfx/explosion.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/gfx/explosion.xml 2017-10-19 04:33:01.000000000 +0000 @@ -10,24 +10,21 @@ - + - - - - diff -Nru supertuxkart-0.9.2+dfsg/data/gfx/fire.xml supertuxkart-0.9.3/data/gfx/fire.xml --- supertuxkart-0.9.2+dfsg/data/gfx/fire.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/gfx/fire.xml 2017-10-19 04:33:01.000000000 +0000 @@ -18,12 +18,10 @@ max="500" /> - + - - diff -Nru supertuxkart-0.9.2+dfsg/data/gfx/gfx_blueNebula_a.xml supertuxkart-0.9.3/data/gfx/gfx_blueNebula_a.xml --- supertuxkart-0.9.2+dfsg/data/gfx/gfx_blueNebula_a.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/gfx/gfx_blueNebula_a.xml 2017-10-19 04:33:01.000000000 +0000 @@ -26,7 +26,4 @@ - - - diff -Nru supertuxkart-0.9.2+dfsg/data/gfx/gfx_bubble_a.xml supertuxkart-0.9.3/data/gfx/gfx_bubble_a.xml --- supertuxkart-0.9.2+dfsg/data/gfx/gfx_bubble_a.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/gfx/gfx_bubble_a.xml 2017-10-19 04:33:01.000000000 +0000 @@ -26,7 +26,4 @@ - - - diff -Nru supertuxkart-0.9.2+dfsg/data/gfx/gfx_bubbleFast_a.xml supertuxkart-0.9.3/data/gfx/gfx_bubbleFast_a.xml --- supertuxkart-0.9.2+dfsg/data/gfx/gfx_bubbleFast_a.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/gfx/gfx_bubbleFast_a.xml 2017-10-19 04:33:01.000000000 +0000 @@ -26,7 +26,4 @@ - - - diff -Nru supertuxkart-0.9.2+dfsg/data/gfx/gfx_fallingLeaf_a.xml supertuxkart-0.9.3/data/gfx/gfx_fallingLeaf_a.xml --- supertuxkart-0.9.2+dfsg/data/gfx/gfx_fallingLeaf_a.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/gfx/gfx_fallingLeaf_a.xml 2017-10-19 04:33:01.000000000 +0000 @@ -25,11 +25,7 @@ - - - - + diff -Nru supertuxkart-0.9.2+dfsg/data/gfx/gfx_firework_a.xml supertuxkart-0.9.3/data/gfx/gfx_firework_a.xml --- supertuxkart-0.9.2+dfsg/data/gfx/gfx_firework_a.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/gfx/gfx_firework_a.xml 2017-10-19 04:33:01.000000000 +0000 @@ -25,11 +25,5 @@ - - - - - diff -Nru supertuxkart-0.9.2+dfsg/data/gfx/gfx_fireworkExplosion_a.xml supertuxkart-0.9.3/data/gfx/gfx_fireworkExplosion_a.xml --- supertuxkart-0.9.2+dfsg/data/gfx/gfx_fireworkExplosion_a.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/gfx/gfx_fireworkExplosion_a.xml 2017-10-19 04:33:01.000000000 +0000 @@ -26,8 +26,5 @@ - - - diff -Nru supertuxkart-0.9.2+dfsg/data/gfx/gfx_fireworkGreen_a.xml supertuxkart-0.9.3/data/gfx/gfx_fireworkGreen_a.xml --- supertuxkart-0.9.2+dfsg/data/gfx/gfx_fireworkGreen_a.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/gfx/gfx_fireworkGreen_a.xml 2017-10-19 04:33:01.000000000 +0000 @@ -26,8 +26,5 @@ - - - diff -Nru supertuxkart-0.9.2+dfsg/data/gfx/gfx_fireworkSmoke_a.xml supertuxkart-0.9.3/data/gfx/gfx_fireworkSmoke_a.xml --- supertuxkart-0.9.2+dfsg/data/gfx/gfx_fireworkSmoke_a.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/gfx/gfx_fireworkSmoke_a.xml 2017-10-19 04:33:01.000000000 +0000 @@ -27,9 +27,5 @@ - - - - diff -Nru supertuxkart-0.9.2+dfsg/data/gfx/gfx_jetBlastEarth_a.xml supertuxkart-0.9.3/data/gfx/gfx_jetBlastEarth_a.xml --- supertuxkart-0.9.2+dfsg/data/gfx/gfx_jetBlastEarth_a.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/gfx/gfx_jetBlastEarth_a.xml 2017-10-19 04:33:01.000000000 +0000 @@ -26,7 +26,4 @@ - - - diff -Nru supertuxkart-0.9.2+dfsg/data/gfx/gfx_jetBlastSand_a.xml supertuxkart-0.9.3/data/gfx/gfx_jetBlastSand_a.xml --- supertuxkart-0.9.2+dfsg/data/gfx/gfx_jetBlastSand_a.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/gfx/gfx_jetBlastSand_a.xml 2017-10-19 04:33:01.000000000 +0000 @@ -26,7 +26,4 @@ - - - diff -Nru supertuxkart-0.9.2+dfsg/data/gfx/gfx_mudPot_a.xml supertuxkart-0.9.3/data/gfx/gfx_mudPot_a.xml --- supertuxkart-0.9.2+dfsg/data/gfx/gfx_mudPot_a.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/gfx/gfx_mudPot_a.xml 2017-10-19 04:33:01.000000000 +0000 @@ -27,9 +27,5 @@ - - - - - + diff -Nru supertuxkart-0.9.2+dfsg/data/gfx/gfx_sandExplosion_a.xml supertuxkart-0.9.3/data/gfx/gfx_sandExplosion_a.xml --- supertuxkart-0.9.2+dfsg/data/gfx/gfx_sandExplosion_a.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/gfx/gfx_sandExplosion_a.xml 2017-10-19 04:33:01.000000000 +0000 @@ -26,7 +26,4 @@ - - - diff -Nru supertuxkart-0.9.2+dfsg/data/gfx/gfx_smallWaterFlow.xml supertuxkart-0.9.3/data/gfx/gfx_smallWaterFlow.xml --- supertuxkart-0.9.2+dfsg/data/gfx/gfx_smallWaterFlow.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/gfx/gfx_smallWaterFlow.xml 2017-10-19 04:33:01.000000000 +0000 @@ -26,7 +26,4 @@ - - - diff -Nru supertuxkart-0.9.2+dfsg/data/gfx/gfx_sparkBlue_a.xml supertuxkart-0.9.3/data/gfx/gfx_sparkBlue_a.xml --- supertuxkart-0.9.2+dfsg/data/gfx/gfx_sparkBlue_a.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/gfx/gfx_sparkBlue_a.xml 2017-10-19 04:33:01.000000000 +0000 @@ -18,7 +18,7 @@ - + - - - - - diff -Nru supertuxkart-0.9.2+dfsg/data/gfx/gfx_sparkFire_a.xml supertuxkart-0.9.3/data/gfx/gfx_sparkFire_a.xml --- supertuxkart-0.9.2+dfsg/data/gfx/gfx_sparkFire_a.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/gfx/gfx_sparkFire_a.xml 2017-10-19 04:33:01.000000000 +0000 @@ -25,11 +25,5 @@ - - - - - diff -Nru supertuxkart-0.9.2+dfsg/data/gfx/jump_explosion.xml supertuxkart-0.9.3/data/gfx/jump_explosion.xml --- supertuxkart-0.9.2+dfsg/data/gfx/jump_explosion.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/gfx/jump_explosion.xml 2017-10-19 04:33:01.000000000 +0000 @@ -26,8 +26,5 @@ - - - diff -Nru supertuxkart-0.9.2+dfsg/data/gfx/kart_exhaust.xml supertuxkart-0.9.3/data/gfx/kart_exhaust.xml --- supertuxkart-0.9.2+dfsg/data/gfx/kart_exhaust.xml 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/gfx/kart_exhaust.xml 2017-10-19 04:33:01.000000000 +0000 @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + diff -Nru supertuxkart-0.9.2+dfsg/data/gfx/nitro-smoke.xml supertuxkart-0.9.3/data/gfx/nitro-smoke.xml --- supertuxkart-0.9.2+dfsg/data/gfx/nitro-smoke.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/gfx/nitro-smoke.xml 2017-10-19 04:33:01.000000000 +0000 @@ -23,8 +23,5 @@ - - - diff -Nru supertuxkart-0.9.2+dfsg/data/gfx/nitro.xml supertuxkart-0.9.3/data/gfx/nitro.xml --- supertuxkart-0.9.2+dfsg/data/gfx/nitro.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/gfx/nitro.xml 2017-10-19 04:33:01.000000000 +0000 @@ -26,8 +26,5 @@ - - - diff -Nru supertuxkart-0.9.2+dfsg/data/gfx/rain-ground.xml supertuxkart-0.9.3/data/gfx/rain-ground.xml --- supertuxkart-0.9.2+dfsg/data/gfx/rain-ground.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/gfx/rain-ground.xml 2017-10-19 04:33:01.000000000 +0000 @@ -32,9 +32,4 @@ - - - - diff -Nru supertuxkart-0.9.2+dfsg/data/gfx/rain.xml supertuxkart-0.9.3/data/gfx/rain.xml --- supertuxkart-0.9.2+dfsg/data/gfx/rain.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/gfx/rain.xml 2017-10-19 04:33:01.000000000 +0000 @@ -25,9 +25,5 @@ - - - - diff -Nru supertuxkart-0.9.2+dfsg/data/gfx/skid1.xml supertuxkart-0.9.3/data/gfx/skid1.xml --- supertuxkart-0.9.2+dfsg/data/gfx/skid1.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/gfx/skid1.xml 2017-10-19 04:33:01.000000000 +0000 @@ -25,8 +25,5 @@ - - - diff -Nru supertuxkart-0.9.2+dfsg/data/gfx/skid2.xml supertuxkart-0.9.3/data/gfx/skid2.xml --- supertuxkart-0.9.2+dfsg/data/gfx/skid2.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/gfx/skid2.xml 2017-10-19 04:33:01.000000000 +0000 @@ -25,8 +25,5 @@ - - - diff -Nru supertuxkart-0.9.2+dfsg/data/gfx/smoke_brown.xml supertuxkart-0.9.3/data/gfx/smoke_brown.xml --- supertuxkart-0.9.2+dfsg/data/gfx/smoke_brown.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/gfx/smoke_brown.xml 2017-10-19 04:33:01.000000000 +0000 @@ -24,7 +24,4 @@ - - - diff -Nru supertuxkart-0.9.2+dfsg/data/gfx/smoke_red.xml supertuxkart-0.9.3/data/gfx/smoke_red.xml --- supertuxkart-0.9.2+dfsg/data/gfx/smoke_red.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/gfx/smoke_red.xml 2017-10-19 04:33:01.000000000 +0000 @@ -24,7 +24,4 @@ - - - diff -Nru supertuxkart-0.9.2+dfsg/data/gfx/smoke_short_burst.xml supertuxkart-0.9.3/data/gfx/smoke_short_burst.xml --- supertuxkart-0.9.2+dfsg/data/gfx/smoke_short_burst.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/gfx/smoke_short_burst.xml 2017-10-19 04:33:01.000000000 +0000 @@ -25,7 +25,4 @@ - - - diff -Nru supertuxkart-0.9.2+dfsg/data/gfx/smoke.xml supertuxkart-0.9.3/data/gfx/smoke.xml --- supertuxkart-0.9.2+dfsg/data/gfx/smoke.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/gfx/smoke.xml 2017-10-19 04:33:01.000000000 +0000 @@ -24,7 +24,4 @@ - - - diff -Nru supertuxkart-0.9.2+dfsg/data/gfx/smoke_yellow.xml supertuxkart-0.9.3/data/gfx/smoke_yellow.xml --- supertuxkart-0.9.2+dfsg/data/gfx/smoke_yellow.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/gfx/smoke_yellow.xml 2017-10-19 04:33:01.000000000 +0000 @@ -24,7 +24,4 @@ - - - diff -Nru supertuxkart-0.9.2+dfsg/data/gfx/snow.xml supertuxkart-0.9.3/data/gfx/snow.xml --- supertuxkart-0.9.2+dfsg/data/gfx/snow.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/gfx/snow.xml 2017-10-19 04:33:01.000000000 +0000 @@ -23,13 +23,9 @@ - - - - - + diff -Nru supertuxkart-0.9.2+dfsg/data/gfx/sparks.xml supertuxkart-0.9.3/data/gfx/sparks.xml --- supertuxkart-0.9.2+dfsg/data/gfx/sparks.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/gfx/sparks.xml 2017-10-19 04:33:01.000000000 +0000 @@ -25,7 +25,4 @@ - - - diff -Nru supertuxkart-0.9.2+dfsg/data/gfx/splash.xml supertuxkart-0.9.3/data/gfx/splash.xml --- supertuxkart-0.9.2+dfsg/data/gfx/splash.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/gfx/splash.xml 2017-10-19 04:33:01.000000000 +0000 @@ -25,9 +25,4 @@ - - - - diff -Nru supertuxkart-0.9.2+dfsg/data/gfx/swampDriving.xml supertuxkart-0.9.3/data/gfx/swampDriving.xml --- supertuxkart-0.9.2+dfsg/data/gfx/swampDriving.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/gfx/swampDriving.xml 2017-10-19 04:33:01.000000000 +0000 @@ -25,9 +25,4 @@ - - - - diff -Nru supertuxkart-0.9.2+dfsg/data/gfx/waterfall.xml supertuxkart-0.9.3/data/gfx/waterfall.xml --- supertuxkart-0.9.2+dfsg/data/gfx/waterfall.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/gfx/waterfall.xml 2017-10-19 04:33:01.000000000 +0000 @@ -26,7 +26,4 @@ - - - diff -Nru supertuxkart-0.9.2+dfsg/data/gfx/zipper_fire.xml supertuxkart-0.9.3/data/gfx/zipper_fire.xml --- supertuxkart-0.9.2+dfsg/data/gfx/zipper_fire.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/gfx/zipper_fire.xml 2017-10-19 04:33:01.000000000 +0000 @@ -24,8 +24,5 @@ - - - diff -Nru supertuxkart-0.9.2+dfsg/data/grandprix/1_penguinplayground.grandprix supertuxkart-0.9.3/data/grandprix/1_penguinplayground.grandprix --- supertuxkart-0.9.2+dfsg/data/grandprix/1_penguinplayground.grandprix 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/grandprix/1_penguinplayground.grandprix 2017-04-23 17:18:56.000000000 +0000 @@ -1,10 +1,10 @@ - - - - - + + + + + diff -Nru supertuxkart-0.9.2+dfsg/data/graphical_restrictions.xml supertuxkart-0.9.3/data/graphical_restrictions.xml --- supertuxkart-0.9.2+dfsg/data/graphical_restrictions.xml 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/graphical_restrictions.xml 2017-10-19 04:33:01.000000000 +0000 @@ -1,16 +1,21 @@ + + + + + - - + + + - + - @@ -26,5 +31,12 @@ 1.32.20 --> + + + + + + + + - diff -Nru supertuxkart-0.9.2+dfsg/data/gui/addons_screen.stkgui supertuxkart-0.9.3/data/gui/addons_screen.stkgui --- supertuxkart-0.9.2+dfsg/data/gui/addons_screen.stkgui 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/gui/addons_screen.stkgui 2016-11-09 06:01:07.000000000 +0000 @@ -33,5 +33,8 @@ + + + Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/gui/android/blur_bg_button_focus.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/gui/android/blur_bg_button_focus.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/gui/android/blur_bg_button.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/gui/android/blur_bg_button.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/gui/android/directionnal_wheel.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/gui/android/directionnal_wheel.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/gui/android/drift.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/gui/android/drift.png differ diff -Nru supertuxkart-0.9.2+dfsg/data/gui/android/license.txt supertuxkart-0.9.3/data/gui/android/license.txt --- supertuxkart-0.9.2+dfsg/data/gui/android/license.txt 1970-01-01 00:00:00.000000000 +0000 +++ supertuxkart-0.9.3/data/gui/android/license.txt 2017-04-23 17:18:56.000000000 +0000 @@ -0,0 +1,12 @@ +# Licensing work + +Icons firstly made for SuperTuxKart UI on Android. + +Files: blur_bg_button ; blur_bg_button_focus ; directionnal_wheel ; drift ; nitro ; nitro_empty ; pause ; thunderbird_reset ; wing_mirror + - CC BY-SA 4.0 / author: Néd J. Édoire + +# License information: + +- Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) + Visit the following link for detailed informations: + https://creativecommons.org/licenses/by-sa/4.0/ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/gui/android/nitro_empty.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/gui/android/nitro_empty.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/gui/android/nitro.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/gui/android/nitro.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/gui/android/pause.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/gui/android/pause.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/gui/android/thunderbird_reset.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/gui/android/thunderbird_reset.png differ Binary files /tmp/tmp4j6lnm/jWOZBz6Tbp/supertuxkart-0.9.2+dfsg/data/gui/android/wing_mirror.png and /tmp/tmp4j6lnm/Dn_Zq8dWwE/supertuxkart-0.9.3/data/gui/android/wing_mirror.png differ diff -Nru supertuxkart-0.9.2+dfsg/data/gui/confirm_dialog.stkgui supertuxkart-0.9.3/data/gui/confirm_dialog.stkgui --- supertuxkart-0.9.2+dfsg/data/gui/confirm_dialog.stkgui 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/gui/confirm_dialog.stkgui 2016-11-09 06:01:07.000000000 +0000 @@ -1,15 +1,19 @@
-
diff -Nru supertuxkart-0.9.2+dfsg/data/gui/custom_video_settings.stkgui supertuxkart-0.9.3/data/gui/custom_video_settings.stkgui --- supertuxkart-0.9.2+dfsg/data/gui/custom_video_settings.stkgui 2016-12-04 01:17:52.000000000 +0000 +++ supertuxkart-0.9.3/data/gui/custom_video_settings.stkgui 2017-10-19 04:33:01.000000000 +0000 @@ -133,31 +133,21 @@
- + -
- +
-
- - -
- - - -
- - -
+
- - + +