Skip to content

Commit

Permalink
Merge pull request #275 from leepeuker/replace-movary-logo
Browse files Browse the repository at this point in the history
Replace third party movary logo with self made logo
  • Loading branch information
leepeuker authored Feb 5, 2023
2 parents bcbaf97 + 9391792 commit 4c41eb4
Show file tree
Hide file tree
Showing 19 changed files with 26 additions and 8 deletions.
Binary file modified public/images/favicon.ico
Binary file not shown.
Binary file removed public/images/icon-menu.png
Binary file not shown.
Binary file removed public/images/icon-pwa-144x144.png
Binary file not shown.
Binary file removed public/images/icon-pwa-192x192.png
Binary file not shown.
Binary file removed public/images/icon-pwa-512x512.png
Binary file not shown.
Binary file removed public/images/icon-pwa-72x72.png
Binary file not shown.
Binary file removed public/images/icon-pwa-96x96.png
Binary file not shown.
Binary file added public/images/movary-logo-120x120.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/movary-logo-128x128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/movary-logo-144x144.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/movary-logo-152x152.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/movary-logo-180x180.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/movary-logo-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/movary-logo-384x384.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/movary-logo-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/movary-logo-72x72.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/movary-logo-96x96.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
32 changes: 26 additions & 6 deletions public/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,27 +8,47 @@
"theme_color": "white",
"icons": [
{
"src": "/images/icon-pwa-72x72.png",
"src": "/images/movary-logo-72x72.png",
"type": "image/png",
"sizes": "72x72"
},
{
"src": "/images/icon-pwa-96x96.png",
"src": "/images/movary-logo-96x96.png",
"type": "image/png",
"sizes": "96x96"
},
{
"src": "/images/icon-pwa-144x144.png",
"src": "/images/movary-logo-120x120.png",
"type": "image/png",
"sizes": "144x144"
"sizes": "120x120"
},
{
"src": "/images/icon-pwa-192x192.png",
"src": "/images/movary-logo-128x128.png",
"type": "image/png",
"sizes": "128x128"
},
{
"src": "/images/movary-logo-152x152.png",
"type": "image/png",
"sizes": "152x152"
},
{
"src": "/images/movary-logo-180x180.png",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "/images/icon-pwa-512x512.png",
"src": "/images/movary-logo-192x192.png",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "/images/movary-logo-384x384.png",
"type": "image/png",
"sizes": "384x384"
},
{
"src": "/images/movary-logo-512x512.png",
"type": "image/png",
"sizes": "512x512"
}
Expand Down
2 changes: 0 additions & 2 deletions src/HttpController/HistoryController.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

namespace Movary\HttpController;

use Movary\Api\Tmdb\TmdbApi;
use Movary\Domain\Movie\History\MovieHistoryApi;
use Movary\Domain\Movie\MovieApi;
use Movary\Domain\User\Service\Authentication;
Expand All @@ -26,7 +25,6 @@ class HistoryController
public function __construct(
private readonly Environment $twig,
private readonly MovieHistoryApi $movieHistoryApi,
private readonly TmdbApi $tmdbApi,
private readonly MovieApi $movieApi,
private readonly UserApi $userApi,
private readonly SyncMovie $tmdbMovieSyncService,
Expand Down

0 comments on commit 4c41eb4

Please sign in to comment.