diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0fa1aa0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +build/ +project/ \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt index f5cf3dd..e5271ad 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,6 +31,10 @@ if (WIN32) set(CMAKE_C_FLAGS_RELEASE "/MT /Zi /O2 /Ob2 /D NDEBUG") remove_definitions(-DUNICODE -D_UNICODE) + + if(MSVC) + add_definitions(-D_CRT_SECURE_NO_WARNINGS) # Do not show CRT warnings + endif() else() # optimize for reduced code size set(CMAKE_CXX_FLAGS_RELEASE "-Os") diff --git a/src/resources/etl.ico b/src/resources/etl.ico new file mode 100644 index 0000000..0b4a589 Binary files /dev/null and b/src/resources/etl.ico differ diff --git a/src/resources/mac.icns b/src/resources/mac.icns index 08213c8..907634d 100644 Binary files a/src/resources/mac.icns and b/src/resources/mac.icns differ diff --git a/src/resources/updater.ico b/src/resources/updater.ico deleted file mode 100644 index 43c60cb..0000000 Binary files a/src/resources/updater.ico and /dev/null differ diff --git a/src/resources/updater.rc b/src/resources/updater.rc index ee66c49..6c276ca 100644 --- a/src/resources/updater.rc +++ b/src/resources/updater.rc @@ -1,4 +1,4 @@ -IDI_APPICON ICON DISCARDABLE "updater.ico" +IDI_APPICON ICON DISCARDABLE "etl.ico" 1 VERSIONINFO FILEVERSION 0,0,1,0 @@ -18,9 +18,9 @@ BEGIN VALUE "OriginalFilename", "updater.exe" VALUE "InternalName", "updater.exe" VALUE "FileDescription", "Software Update Tool" - VALUE "CompanyName", "Mendeley Ltd." - VALUE "LegalCopyright", "(C) Mendeley Ltd. 2011" - VALUE "ProductName", "Mendeley Software Updater" + VALUE "CompanyName", "Legacy Team." + VALUE "LegalCopyright", "© 2011-2014 Legacy Team" + VALUE "ProductName", "Legacy Updater" VALUE "PrivateBuild", "Built by Robert Knight" END END