Started adding new icons from OpenGameArt
git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/branches/irrlicht@4218 178a84e3-b1eb-0310-8ba1-8eac791a3b58
@ -62,6 +62,10 @@ Tobias Beyrer
|
||||
- Wilber kart
|
||||
- elePHPant kart
|
||||
|
||||
GUI Icons
|
||||
- onyum.com, commissioned by OpenGameArt.org/Bart Kelsey
|
||||
- yeKcim (Anthony Carré)
|
||||
|
||||
Ivar ten Cate (Varivar)
|
||||
- Old mine track
|
||||
- Tux Tollway track
|
||||
@ -201,6 +205,7 @@ Donations
|
||||
- Phelippeau Rudy (rudy251079)
|
||||
- Carl Olsson
|
||||
- Tux_penguin
|
||||
- OpenGameArt.org
|
||||
|
||||
= Previous contributors =
|
||||
|
||||
|
@ -1,24 +1,15 @@
|
||||
All images in this directory come from the Tango icon project are Public Domain (http://tango.freedesktop.org)
|
||||
All icons come from Open Game Art (art by onyum.com, comissionned by Bart Kelsey)
|
||||
|
||||
Except :
|
||||
|
||||
Logo and Logo_slim : under CC-BY-SA 3.0+ by 'rastapax'
|
||||
|
||||
background in glass skin : under CC-BY-SA by 'elisee'
|
||||
|
||||
Logo and Logo_slim : under CC-BY-SA 3.0+ by 'rastapax'
|
||||
|
||||
main_*.png icons, released under Creative-Commons BY-SA 3, By yeKcim (Anthony Carré)
|
||||
|
||||
logo.png is released under GPL
|
||||
difficulty_*.png icons, released under Creative-Commons BY-SA 3, By Conso (Constantin Pelikan)
|
||||
|
||||
main_race.png created by Andreas Bilng (c) 2008, with Tuxicon by Enrico Billing (c) 2008
|
||||
released under Creative Commons Attribution-Share Alike 3.0 Germany [http://creativecommons.org/licenses/by-sa/3.0/de/deed.en]
|
||||
|
||||
mode_normal.png released under CC-BY-SA 3.0, based on work by MiniBjorn
|
||||
|
||||
FIXME - track*.png are temporary and should be [re]moved
|
||||
====
|
||||
|
||||
FIXME - mode_ftl.png has an unclear license, it combines a GPL kart and a CC kart. How does those licenses deal with this?
|
||||
|
||||
track_random.png released under public domain, by Auria
|
||||
Glass Skin by Auria, under CC-BY-SA 3+
|
||||
except background, under CC-BY-SA, by 'elisee'
|
||||
|
Before Width: | Height: | Size: 6.6 KiB After Width: | Height: | Size: 3.9 KiB |
BIN
data/gui/challenge.png
Normal file
After Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 8.0 KiB After Width: | Height: | Size: 9.2 KiB |
Before Width: | Height: | Size: 7.3 KiB After Width: | Height: | Size: 5.2 KiB |
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 9.4 KiB |
Before Width: | Height: | Size: 23 KiB After Width: | Height: | Size: 6.9 KiB |
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 9.2 KiB |
Before Width: | Height: | Size: 7.6 KiB After Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 9.0 KiB |
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 7.9 KiB |
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 8.4 KiB |
@ -2617,6 +2617,7 @@
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PRECOMPILE_PREFIX_HEADER = NO;
|
||||
GCC_PREFIX_HEADER = "";
|
||||
GCC_VERSION = 4.0;
|
||||
GCC_WARN_ABOUT_MISSING_NEWLINE = YES;
|
||||
GCC_WARN_NON_VIRTUAL_DESTRUCTOR = YES;
|
||||
GCC_WARN_UNUSED_FUNCTION = NO;
|
||||
@ -2650,6 +2651,7 @@
|
||||
GCC_MODEL_TUNING = G5;
|
||||
GCC_PRECOMPILE_PREFIX_HEADER = NO;
|
||||
GCC_PREFIX_HEADER = "";
|
||||
GCC_VERSION = 4.0;
|
||||
GCC_WARN_ABOUT_MISSING_NEWLINE = YES;
|
||||
GCC_WARN_NON_VIRTUAL_DESTRUCTOR = YES;
|
||||
GCC_WARN_UNUSED_FUNCTION = NO;
|
||||
|
@ -65,10 +65,9 @@ namespace GUIEngine
|
||||
char buffer[64];
|
||||
for (int n=0; n<activeChallengeAmount; n++)
|
||||
{
|
||||
// TODO : temporary icon until we have a 'unsolved challenge' icon
|
||||
sprintf(buffer, "challenge%i", n);
|
||||
w->addItem(activeChallenges[n]->getName() + L"\n" + activeChallenges[n]->getChallengeDescription(),
|
||||
buffer, file_manager->getTextureFile("speedback.png"));
|
||||
buffer, file_manager->getGUIDir() + "/challenge.png");
|
||||
}
|
||||
for (int n=0; n<solvedChallengeAmount; n++)
|
||||
{
|
||||
|