Skip to content

Commit

Permalink
Increased version to 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jonborg committed Nov 28, 2021
1 parent 66c35d7 commit 3cce70d
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 10 deletions.
27 changes: 19 additions & 8 deletions README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,28 @@
// 0.Release Notes //
///////////////////////////////////////

----------Added features on v2.1.0-----------
- Added Stream filte for Smash.gg thumbnail generation;
- Can assign different fighter image settings for each tournament;
- Added log support to track application usage for debug analysis;
- Fixed issue were Rosalina, Young Link and Incineroar would not show their preview icons;
- Fixed issue with fonts when no font styling (bold and italic) was selected, which would not allow thumbnail generation;
- Kazuya added to the roster;
- Sora added to the roster.



----------Added features on v2.0.0-----------
- Thumbnails can now be generated for Smash.gg tournaments
- Tournament settings can be created, edited or deleted.
- Menu bar added to initial page to select Thumbnail Generator's functionalities
- Thumbnails can now be generated for Smash.gg tournaments;
- Tournament settings can be created, edited or deleted;
- Menu bar added to initial page to select Thumbnail Generator's functionalities.



----------Added features on v1.4.0-----------
- Scroll pane added to tournament list
- Updated Falco horizontal offset from -10 to 60
- Sephiroth added to the roster.
- Scroll pane added to tournament list;
- Updated Falco horizontal offset from -10 to 60;
- Sephiroth added to the roster;
- Pyra/Mythra added to the roster.


Expand All @@ -28,8 +39,8 @@


----------Added features on v1.2.2-----------
- Min Min added to the roster.
- Added Tiamat as a league
- Min Min added to the roster;
- Added Tiamat as a league.



Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.tgen</groupId>
<artifactId>thumbnail-generator</artifactId>
<version>2.0.0</version>
<version>2.1.0</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
3 changes: 2 additions & 1 deletion src/main/java/thumbnail/generate/Thumbnail.java
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,14 @@ public static BufferedImage generatePreview(Tournament tournament)
private static BufferedImage generateThumbnail(Tournament tournament, ImageSettings imageSettings, boolean locally, String round, String date, Fighter... fighters)
throws LocalImageNotFoundException, OnlineImageNotFoundException,
FontNotFoundException, FighterImageSettingsNotFoundException {

LOGGER.debug("*********************************************************************************************");
LOGGER.debug("Creating thumbnail with following parameters:");
LOGGER.debug("Tournament -> {}", tournament.getName());
LOGGER.debug("Player 1 -> {}", fighters[0].toString());
LOGGER.debug("Player 2 -> {}", fighters[1].toString());
LOGGER.debug("Round -> {}", round);
LOGGER.debug("Date -> {}", date);
LOGGER.debug("*********************************************************************************************");

saveLocally = locally;
thumbnail = new BufferedImage(WIDTH, HEIGHT, BufferedImage.TYPE_INT_ARGB);
Expand Down

0 comments on commit 3cce70d

Please sign in to comment.