1
0
mirror of https://github.com/blupi-games/planetblupi synced 2024-12-30 10:15:36 +01:00

Merge remote-tracking branch 'origin/master' into wip/darwin

This commit is contained in:
Mathieu Schroeter 2017-07-30 21:31:45 +02:00
commit 9b72cc0810
16 changed files with 2779 additions and 812 deletions

View File

@ -53,7 +53,7 @@ file (COPY resources/image DESTINATION share/planetblupi)
file (COPY resources/movie DESTINATION share/planetblupi)
file (COPY resources/sound DESTINATION share/planetblupi)
file (COPY resources/music DESTINATION share/planetblupi)
file (COPY resources/icon/planetblupi.png DESTINATION share/planetblupi)
file (COPY resources/icon/blupi-256.png DESTINATION share/planetblupi)
# Windows stuff
@ -156,7 +156,7 @@ install (DIRECTORY resources/image DESTINATION share/planetblupi)
install (DIRECTORY resources/movie DESTINATION share/planetblupi)
install (DIRECTORY resources/sound DESTINATION share/planetblupi)
install (DIRECTORY resources/music DESTINATION share/planetblupi)
install (FILES resources/icon/planetblupi.png DESTINATION share/planetblupi)
install (FILES resources/icon/blupi-256.png DESTINATION share/planetblupi)
# Copy libwinpthread-1.dll which seems not be linkable statically
if (${CMAKE_SYSTEM_NAME} STREQUAL "Windows" AND MINGW)

Binary file not shown.

After

Width:  |  Height:  |  Size: 615 B

BIN
resources/icon/blupi-16.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 246 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 803 B

BIN
resources/icon/blupi-32.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 374 B

BIN
resources/icon/blupi-48.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 598 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

BIN
resources/icon/blupi-64.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 702 B

BIN
resources/icon/blupi.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

1399
resources/icon/blupi.svg Normal file

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 66 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 44 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 61 KiB

After

Width:  |  Height:  |  Size: 66 KiB

BIN
resources/win32/blupi.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 264 KiB

View File

@ -1 +1 @@
id ICON "planetblupi.ico"
id ICON "blupi.ico"

View File

@ -405,7 +405,7 @@ static bool DoInit (Sint32 argc, char *argv[])
return false;
}
auto icon = IMG_Load ((GetBaseDir () + "planetblupi.png").c_str ());
auto icon = IMG_Load ((GetBaseDir () + "blupi-256.png").c_str ());
SDL_SetWindowIcon (g_window, icon);
SDL_FreeSurface (icon);