diff --git a/launcher/resources/backgrounds/backgrounds.qrc b/launcher/resources/backgrounds/backgrounds.qrc index 5e98fcc4c..a8bbeee77 100644 --- a/launcher/resources/backgrounds/backgrounds.qrc +++ b/launcher/resources/backgrounds/backgrounds.qrc @@ -29,5 +29,9 @@ polly-xmas.png polly-bday.png polly.png + spaceship-phoebe.png + spaceship-phoebe-xmas.png + spaceship-phoebe-bday.png + spaceship-phoebe-spooky.png diff --git a/launcher/resources/backgrounds/spaceship-phoebe-bday.png b/launcher/resources/backgrounds/spaceship-phoebe-bday.png new file mode 100644 index 000000000..7ceb2d698 Binary files /dev/null and b/launcher/resources/backgrounds/spaceship-phoebe-bday.png differ diff --git a/launcher/resources/backgrounds/spaceship-phoebe-spooky.png b/launcher/resources/backgrounds/spaceship-phoebe-spooky.png new file mode 100644 index 000000000..b7cd390e4 Binary files /dev/null and b/launcher/resources/backgrounds/spaceship-phoebe-spooky.png differ diff --git a/launcher/resources/backgrounds/spaceship-phoebe-xmas.png b/launcher/resources/backgrounds/spaceship-phoebe-xmas.png new file mode 100644 index 000000000..5d37f0970 Binary files /dev/null and b/launcher/resources/backgrounds/spaceship-phoebe-xmas.png differ diff --git a/launcher/resources/backgrounds/spaceship-phoebe.png b/launcher/resources/backgrounds/spaceship-phoebe.png new file mode 100644 index 000000000..31cbc4243 Binary files /dev/null and b/launcher/resources/backgrounds/spaceship-phoebe.png differ diff --git a/launcher/ui/themes/ThemeManager.cpp b/launcher/ui/themes/ThemeManager.cpp index d1442e8b9..3b6c7a5b5 100644 --- a/launcher/ui/themes/ThemeManager.cpp +++ b/launcher/ui/themes/ThemeManager.cpp @@ -298,7 +298,8 @@ void ThemeManager::initializeCatPacks() { "rory", QObject::tr("Rory ID 11 (drawn by Ashtaka)") }, { "rory-flat", QObject::tr("Rory ID 11 (flat edition, drawn by Ashtaka)") }, { "teawie", QObject::tr("Teawie (drawn by SympathyTea)") }, - { "polly", QObject::tr("Polly the Parrot (drawn by anoraktrend)") } }; + { "polly", QObject::tr("Polly the Parrot (drawn by anoraktrend)") }, + { "spaceship-phoebe", QObject::tr("Spaceship and Phoebe (drawn by Evan)") } }; for (auto [id, name] : defaultCats) { addCatPack(std::unique_ptr(new BasicCatPack(id, name))); } @@ -349,4 +350,4 @@ void ThemeManager::refresh() initializeThemes(); initializeCatPacks(); -} \ No newline at end of file +}