From a8412c12dae1d505449dd58e5758f5be1cb7d923 Mon Sep 17 00:00:00 2001 From: MewPurPur Date: Thu, 8 Jun 2023 20:00:18 +0200 Subject: [PATCH] Standardize and Optimize blue robot SVG Co-authored-by: Andre Vallestero <39736205+AndreVallestero@users.noreply.github.com> --- editor/icons/DefaultProjectIcon.svg | 2 +- editor/icons/Godot.svg | 2 +- editor/icons/GodotFile.svg | 2 +- editor/icons/GodotMonochrome.svg | 2 +- editor/icons/Logo.svg | 2 +- icon.svg | 140 +----------------- icon_outlined.svg | 160 +------------------- logo.svg | 220 +--------------------------- logo_outlined.svg | 197 +------------------------ misc/dist/icon_console.svg | 121 +-------------- misc/dist/project_icon.svg | 2 +- tests/core/io/test_pck_packer.h | 4 +- 12 files changed, 13 insertions(+), 841 deletions(-) diff --git a/editor/icons/DefaultProjectIcon.svg b/editor/icons/DefaultProjectIcon.svg index adc26df6c2c..b370ceb7274 100644 --- a/editor/icons/DefaultProjectIcon.svg +++ b/editor/icons/DefaultProjectIcon.svg @@ -1 +1 @@ - + diff --git a/editor/icons/Godot.svg b/editor/icons/Godot.svg index 4887425f4cf..96f4943659e 100644 --- a/editor/icons/Godot.svg +++ b/editor/icons/Godot.svg @@ -1 +1 @@ - + diff --git a/editor/icons/GodotFile.svg b/editor/icons/GodotFile.svg index 3989c842dc1..03d178ca7c5 100644 --- a/editor/icons/GodotFile.svg +++ b/editor/icons/GodotFile.svg @@ -1 +1 @@ - + diff --git a/editor/icons/GodotMonochrome.svg b/editor/icons/GodotMonochrome.svg index d0991e73433..aa46eb8542d 100644 --- a/editor/icons/GodotMonochrome.svg +++ b/editor/icons/GodotMonochrome.svg @@ -1 +1 @@ - + diff --git a/editor/icons/Logo.svg b/editor/icons/Logo.svg index 6c7121e13b4..a32a8f71c2c 100644 --- a/editor/icons/Logo.svg +++ b/editor/icons/Logo.svg @@ -1 +1 @@ - + diff --git a/icon.svg b/icon.svg index 1add292da2a..0adea5f9ec7 100644 --- a/icon.svg +++ b/icon.svg @@ -1,139 +1 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + diff --git a/icon_outlined.svg b/icon_outlined.svg index 08f9f6f8631..6b31d44e9a5 100644 --- a/icon_outlined.svg +++ b/icon_outlined.svg @@ -1,159 +1 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + diff --git a/logo.svg b/logo.svg index d7719089525..4614959eb2d 100644 --- a/logo.svg +++ b/logo.svg @@ -1,219 +1 @@ - -image/svg+xml + diff --git a/logo_outlined.svg b/logo_outlined.svg index 8ddc5642950..6666915fb69 100644 --- a/logo_outlined.svg +++ b/logo_outlined.svg @@ -1,196 +1 @@ - -image/svg+xml + diff --git a/misc/dist/icon_console.svg b/misc/dist/icon_console.svg index d486482f3b6..4a0d2d8d7d3 100644 --- a/misc/dist/icon_console.svg +++ b/misc/dist/icon_console.svg @@ -1,120 +1 @@ - -image/svg+xml + diff --git a/misc/dist/project_icon.svg b/misc/dist/project_icon.svg index 39a8cd63322..5bfc113daad 100644 --- a/misc/dist/project_icon.svg +++ b/misc/dist/project_icon.svg @@ -1 +1 @@ - + diff --git a/tests/core/io/test_pck_packer.h b/tests/core/io/test_pck_packer.h index 2f90a31bc0e..fc4534a9490 100644 --- a/tests/core/io/test_pck_packer.h +++ b/tests/core/io/test_pck_packer.h @@ -111,10 +111,10 @@ TEST_CASE("[PCKPacker] Pack a PCK file with some files and directories") { err == OK, "The generated non-empty PCK file should be opened successfully."); CHECK_MESSAGE( - f->get_length() >= 25000, + f->get_length() >= 18000, "The generated non-empty PCK file should be large enough to actually hold the contents specified above."); CHECK_MESSAGE( - f->get_length() <= 35000, + f->get_length() <= 27000, "The generated non-empty PCK file shouldn't be too large."); } } // namespace TestPCKPacker