aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartijn Kaijser <mcm.kaijser@gmail.com>2014-08-01 18:18:24 +0200
committerMartijn Kaijser <mcm.kaijser@gmail.com>2014-08-01 18:18:24 +0200
commit62d01f6b401af69d6f2be039ebefc6e143e3486e (patch)
tree661fa24ac80c78a4f148ec6f475510f1dd4715ca
parent219d0e1c1f9aa6118736d60a6b08e223c8d67b87 (diff)
[namechange] Add Kodi splash and start log message with "Kodi"14.0a2-Helix
-rw-r--r--media/Splash.pngbin23481 -> 65326 bytes
-rw-r--r--xbmc/Application.cpp6
2 files changed, 3 insertions, 3 deletions
diff --git a/media/Splash.png b/media/Splash.png
index 013c95176e..17fd02aaff 100644
--- a/media/Splash.png
+++ b/media/Splash.png
Binary files differ
diff --git a/xbmc/Application.cpp b/xbmc/Application.cpp
index a25f44f2ec..397bfa4c0b 100644
--- a/xbmc/Application.cpp
+++ b/xbmc/Application.cpp
@@ -697,7 +697,7 @@ bool CApplication::Create()
CProfilesManager::Get().Load();
CLog::Log(LOGNOTICE, "-----------------------------------------------------------------------");
- CLog::Log(LOGNOTICE, "Starting XBMC (%s). Platform: %s %s %d-bit", g_infoManager.GetVersion().c_str(), g_sysinfo.GetBuildTargetPlatformName().c_str(),
+ CLog::Log(LOGNOTICE, "Starting Kodi (%s). Platform: %s %s %d-bit", g_infoManager.GetVersion().c_str(), g_sysinfo.GetBuildTargetPlatformName().c_str(),
g_sysinfo.GetBuildTargetCpuFamily().c_str(), g_sysinfo.GetXbmcBitness());
std::string buildType;
@@ -716,8 +716,8 @@ bool CApplication::Create()
//#elif defined(some_ID) // uncomment for special version/fork
// specialVersion = " (version for XXXX)";
#endif
- CLog::Log(LOGNOTICE, "Using %s XBMC x%d build%s", buildType.c_str(), g_sysinfo.GetXbmcBitness(), specialVersion.c_str());
- CLog::Log(LOGNOTICE, "XBMC compiled " __DATE__ " by %s for %s %s %d-bit %s (%s)", g_sysinfo.GetUsedCompilerNameAndVer().c_str(), g_sysinfo.GetBuildTargetPlatformName().c_str(),
+ CLog::Log(LOGNOTICE, "Using Kodi %s x%d build%s", buildType.c_str(), g_sysinfo.GetXbmcBitness(), specialVersion.c_str());
+ CLog::Log(LOGNOTICE, "Kodi compiled " __DATE__ " by %s for %s %s %d-bit %s (%s)", g_sysinfo.GetUsedCompilerNameAndVer().c_str(), g_sysinfo.GetBuildTargetPlatformName().c_str(),
g_sysinfo.GetBuildTargetCpuFamily().c_str(), g_sysinfo.GetXbmcBitness(), g_sysinfo.GetBuildTargetPlatformVersionDecoded().c_str(),
g_sysinfo.GetBuildTargetPlatformVersion().c_str());