diff --git a/README.md b/README.md index 8c8bebd7..7673ada2 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,6 @@ -![MuJoCo](banner.png) -===================== +

+ MuJoCo +

diff --git a/banner.png b/banner.png index 8c5d3279..a655156c 100644 Binary files a/banner.png and b/banner.png differ diff --git a/dist/appicon.rc b/dist/appicon.rc deleted file mode 100644 index b46fbcea..00000000 --- a/dist/appicon.rc +++ /dev/null @@ -1 +0,0 @@ -IDI_ICON1 ICON DISCARDABLE "mujoco.ico" diff --git a/dist/mujoco.icns b/dist/mujoco.icns index b979247c..dda1f449 100644 Binary files a/dist/mujoco.icns and b/dist/mujoco.icns differ diff --git a/dist/mujoco.ico b/dist/mujoco.ico index 145a5810..80136209 100644 Binary files a/dist/mujoco.ico and b/dist/mujoco.ico differ diff --git a/dist/simulate.rc b/dist/simulate.rc new file mode 100644 index 00000000..d3744217 --- /dev/null +++ b/dist/simulate.rc @@ -0,0 +1,27 @@ +MUJOCO ICON "mujoco.ico" + +1 VERSIONINFO +FILEVERSION 2,2,2,0 +PRODUCTVERSION 2,2,2,0 +FILEOS 0x4 +FILETYPE 0x1 +{ + BLOCK "StringFileInfo" + { + BLOCK "040904b0" + { + VALUE "ProductName", "MuJoCo" + VALUE "ProductVersion", "2.2.2" + VALUE "FileDescription", "MuJoCo" + VALUE "FileVersion", "2.2.2" + VALUE "InternalName", "simulate.exe" + VALUE "OriginalFilename", "simulate.exe" + VALUE "CompanyName", "DeepMind" + VALUE "LegalCopyright", "Copyright 2021 DeepMind Technologies Limited." + } + } + BLOCK "VarFileInfo" + { + VALUE "Translation", 0x0409 0x04B0 + } +} diff --git a/doc/favicons/favicon-32x32.png b/doc/favicons/favicon-32x32.png index 22fcde5e..55a81f3c 100644 Binary files a/doc/favicons/favicon-32x32.png and b/doc/favicons/favicon-32x32.png differ diff --git a/simulate/CMakeLists.txt b/simulate/CMakeLists.txt index 9ea1c8a9..ae02fdc8 100644 --- a/simulate/CMakeLists.txt +++ b/simulate/CMakeLists.txt @@ -126,7 +126,7 @@ endif() if(APPLE) set(SIMULATE_RESOURCE_FILES ${CMAKE_CURRENT_SOURCE_DIR}/../dist/mujoco.icns) elseif(WIN32) - set(SIMULATE_RESOURCE_FILES ${CMAKE_CURRENT_SOURCE_DIR}/../dist/appicon.rc) + set(SIMULATE_RESOURCE_FILES ${CMAKE_CURRENT_SOURCE_DIR}/../dist/simulate.rc) else() set(SIMULATE_RESOURCE_FILES "") endif()