Add server icon and fix Installer shortcuts
This commit is contained in:
parent
52dae03aae
commit
ad72057c38
@ -4,6 +4,7 @@
|
|||||||
#define AppName "OpenStarbound"
|
#define AppName "OpenStarbound"
|
||||||
#define AppVersion "1.0"
|
#define AppVersion "1.0"
|
||||||
#define AppExeName "starbound.exe"
|
#define AppExeName "starbound.exe"
|
||||||
|
#define AppServerExeName "starbound_server.exe"
|
||||||
|
|
||||||
[Setup]
|
[Setup]
|
||||||
SourceDir={#SourcePath}\..\..\
|
SourceDir={#SourcePath}\..\..\
|
||||||
@ -42,8 +43,12 @@ Source: "windows\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs creat
|
|||||||
Name: "{app}"; Permissions: users-modify
|
Name: "{app}"; Permissions: users-modify
|
||||||
|
|
||||||
[Icons]
|
[Icons]
|
||||||
Name: "{autoprograms}\{#AppName}"; Filename: "{app}\{#AppExeName}"
|
; Client
|
||||||
Name: "{autodesktop}\{#AppName}"; Filename: "{app}\{#AppExeName}"; Tasks: desktopicon
|
Name: "{autoprograms}\{#AppName}"; Filename: "{app}\win\{#AppExeName}"
|
||||||
|
Name: "{autodesktop}\{#AppName}"; Filename: "{app}\win\{#AppExeName}"; Tasks: desktopicon
|
||||||
|
; Server
|
||||||
|
Name: "{autoprograms}\{#AppName} Server"; Filename: "{app}\win\{#AppServerExeName}"
|
||||||
|
Name: "{autodesktop}\{#AppName} Server"; Filename: "{app}\win\{#AppServerExeName}"; Tasks: desktopicon
|
||||||
|
|
||||||
[Run]
|
[Run]
|
||||||
Filename: "{app}\win\{#AppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(AppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent
|
Filename: "{app}\win\{#AppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(AppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent
|
||||||
|
BIN
source/client/starbound-circle.ico
Normal file
BIN
source/client/starbound-circle.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 361 KiB |
Binary file not shown.
Before Width: | Height: | Size: 401 KiB |
Binary file not shown.
Before Width: | Height: | Size: 401 KiB After Width: | Height: | Size: 54 KiB |
@ -1,19 +1,19 @@
|
|||||||
1 VERSIONINFO
|
1 VERSIONINFO
|
||||||
FILEVERSION 0,9,0,0
|
FILEVERSION 1,0,0,0
|
||||||
PRODUCTVERSION 0,9,0,0
|
PRODUCTVERSION 1,0,0,0
|
||||||
BEGIN
|
BEGIN
|
||||||
BLOCK "StringFileInfo"
|
BLOCK "StringFileInfo"
|
||||||
BEGIN
|
BEGIN
|
||||||
BLOCK "040904E4"
|
BLOCK "040904E4"
|
||||||
BEGIN
|
BEGIN
|
||||||
VALUE "CompanyName", "Chucklefish LTD"
|
VALUE "CompanyName", "Chucklefish LTD"
|
||||||
VALUE "FileDescription", "Starbound"
|
VALUE "FileDescription", "OpenStarbound"
|
||||||
VALUE "FileVersion", "0.9beta"
|
VALUE "FileVersion", "1.0"
|
||||||
VALUE "InternalName", "starbound"
|
VALUE "InternalName", "starbound"
|
||||||
VALUE "LegalCopyright", "Chucklefish LTD"
|
VALUE "LegalCopyright", "Chucklefish LTD"
|
||||||
VALUE "OriginalFilename", "starbound.exe"
|
VALUE "OriginalFilename", "starbound.exe"
|
||||||
VALUE "ProductName", "Starbound"
|
VALUE "ProductName", "OpenStarbound"
|
||||||
VALUE "ProductVersion", "0.9beta"
|
VALUE "ProductVersion", "1.0"
|
||||||
END
|
END
|
||||||
END
|
END
|
||||||
|
|
||||||
@ -22,4 +22,4 @@ BEGIN
|
|||||||
VALUE "Translation", 0x409, 1252
|
VALUE "Translation", 0x409, 1252
|
||||||
END
|
END
|
||||||
END
|
END
|
||||||
icon ICON "starbound-largelogo.ico"
|
icon ICON "starbound.ico"
|
||||||
|
@ -19,9 +19,15 @@ SET (star_server_SOURCES
|
|||||||
main.cpp
|
main.cpp
|
||||||
)
|
)
|
||||||
|
|
||||||
|
IF (STAR_SYSTEM_WINDOWS)
|
||||||
|
SET (star_server_RESOURCES
|
||||||
|
starbound_server.rc
|
||||||
|
)
|
||||||
|
ENDIF ()
|
||||||
|
|
||||||
ADD_EXECUTABLE (starbound_server
|
ADD_EXECUTABLE (starbound_server
|
||||||
$<TARGET_OBJECTS:star_extern> $<TARGET_OBJECTS:star_core> $<TARGET_OBJECTS:star_base> $<TARGET_OBJECTS:star_game>
|
$<TARGET_OBJECTS:star_extern> $<TARGET_OBJECTS:star_core> $<TARGET_OBJECTS:star_base> $<TARGET_OBJECTS:star_game>
|
||||||
${star_server_HEADERS} ${star_server_SOURCES})
|
${star_server_HEADERS} ${star_server_SOURCES} ${star_server_RESOURCES})
|
||||||
|
|
||||||
IF(STAR_PRECOMPILED_HEADERS)
|
IF(STAR_PRECOMPILED_HEADERS)
|
||||||
TARGET_PRECOMPILE_HEADERS (starbound_server REUSE_FROM star_core)
|
TARGET_PRECOMPILE_HEADERS (starbound_server REUSE_FROM star_core)
|
||||||
|
BIN
source/server/starbound_server.ico
Normal file
BIN
source/server/starbound_server.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.7 KiB |
25
source/server/starbound_server.rc
Normal file
25
source/server/starbound_server.rc
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
1 VERSIONINFO
|
||||||
|
FILEVERSION 1,0,0,0
|
||||||
|
PRODUCTVERSION 1,0,0,0
|
||||||
|
BEGIN
|
||||||
|
BLOCK "StringFileInfo"
|
||||||
|
BEGIN
|
||||||
|
BLOCK "040904E4"
|
||||||
|
BEGIN
|
||||||
|
VALUE "CompanyName", "Chucklefish LTD"
|
||||||
|
VALUE "FileDescription", "OpenStarbound Server"
|
||||||
|
VALUE "FileVersion", "1.0"
|
||||||
|
VALUE "InternalName", "starbound_server"
|
||||||
|
VALUE "LegalCopyright", "Chucklefish LTD"
|
||||||
|
VALUE "OriginalFilename", "starbound_server.exe"
|
||||||
|
VALUE "ProductName", "OpenStarbound Server"
|
||||||
|
VALUE "ProductVersion", "1.0"
|
||||||
|
END
|
||||||
|
END
|
||||||
|
|
||||||
|
BLOCK "VarFileInfo"
|
||||||
|
BEGIN
|
||||||
|
VALUE "Translation", 0x409, 1252
|
||||||
|
END
|
||||||
|
END
|
||||||
|
icon ICON "starbound_server.ico"
|
Loading…
Reference in New Issue
Block a user