Skip to content

Commit

Permalink
(learning) update flier
Browse files Browse the repository at this point in the history
  • Loading branch information
gleidsonmt committed Oct 13, 2022
1 parent 6a864df commit f9da048
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<h1></h1>

<p align="center">
<img src="logo_flier.png" />
<img src="./src/main/resources/logo/logo_flier.png" />
</p>

<h1></h1>
Expand Down
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -119,14 +119,14 @@ jlink {

jpackage {

// imageOptions = [
// '--icon', 'logo_full.ico'
// ]
imageOptions = [
'--icon', 'logo_256.ico'
]
installerType = 'exe'
installerOptions = [
'--description', "A decorator stage for javafx apps.",
'--copyright', 'Copyrigth © 2021-2022 GLEIDSON NEVES DA SILVEIRA'
// , '--icon', 'logo_32.ico'
, '--icon', 'logo_256.ico'

]

Expand Down
Binary file added logo_256.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion src/main/java/io/github/gleidsonmt/gndecorator/App.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public void start(Stage stage) throws Exception {
decorator.setContent(content);


decorator.getIcons().add(new Image(Objects.requireNonNull(getClass().getResource("/logo/logo_256.png")).toExternalForm()));
decorator.getIcons().add(new Image(Objects.requireNonNull(getClass().getResource("/logo/logo_32.png")).toExternalForm()));


decorator.setTitle(null);
Expand Down

0 comments on commit f9da048

Please sign in to comment.