Skip to content

Commit

Permalink
Merge pull request #148 from Suwayomi/logo-change
Browse files Browse the repository at this point in the history
New Logo
  • Loading branch information
aless2003 authored Sep 26, 2024
2 parents 3ef61a8 + 6bcde54 commit 5e8b6b1
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 2 deletions.
Binary file modified linux/flatpak/online.hatsune_miku.tachidesk-vaadinui.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 modified package/icons/icon.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion src/main/frontend/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="shortcut icon" href="icons/favicon.ico" />

<style>
body, #outlet {
height: 100vh;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

import com.vaadin.flow.component.page.AppShellConfigurator;
import com.vaadin.flow.component.page.Push;
import com.vaadin.flow.server.AppShellSettings;
import com.vaadin.flow.server.PWA;
import com.vaadin.flow.theme.Theme;
import org.springframework.context.annotation.Configuration;
Expand All @@ -23,4 +24,13 @@
@Push
@Theme("miku")
@PWA(name = "Suwayomi VaadinUI", shortName = "VaadinUI")
public class VaadinConfig implements AppShellConfigurator {}
public class VaadinConfig implements AppShellConfigurator {

@Override
public void configurePage(AppShellSettings settings) {
AppShellConfigurator.super.configurePage(settings);
settings.addFavIcon("icon", "icons/favicon-32x32.png", "32x32");
settings.addFavIcon("icon", "icons/favicon-144x144.png", "144x144");
settings.addFavIcon("shortcut icon", "icons/favicon.ico", "256x256");
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/main/resources/META-INF/resources/icons/favicon.ico
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/main/resources/icon/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 5e8b6b1

Please sign in to comment.