Skip to content

Commit

Permalink
Release version 2.04
Browse files Browse the repository at this point in the history
  • Loading branch information
Hartrik committed Sep 2, 2017
1 parent 9469604 commit 06ec22c
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jar {
manifest {
attributes(
'Implementation-Title': 'Sand Game 2',
'Implementation-Version': '2.03 Beta',
'Implementation-Version': '2.04 Beta',
'Implementation-Vendor': 'Patrik Harag',
'Main-Class': 'cz.hartrik.sg2.app.sandbox.Main',
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,19 @@ <h3>Historie verzí - Beta</h3>
&emsp;&bull; opraveno blikání, které způsobovalo motion blur, když počet cyklů byl nižší než FPS<br>
</td>
</tr>

<tr>
<td>2.04&nbsp;Beta</td>
<td>2017&#8209;09&#8209;02</td>
<td>
&bull; migrace na Gradle, rozdělení na podprojekty<br>
&bull; anglická lokalizace<br>
&bull; konzole v aplikaci (F12)<br>
&bull; přiblížení/oddálení pomocí ctrl + kolečko myši<br>
&bull; snížena režie za uspávání chunků – celkové zvýšení výkonu<br>
&bull; a další menší vylepšení, opravy chyb atd...<br>
</td>
</tr>
</tbody>
</table>
</body>
Expand Down
6 changes: 3 additions & 3 deletions sg2-app/src/cz/hartrik/sg2/app/sandbox/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ public class Main extends javafx.application.Application {
private static final String LOGGING_CONFIG = "/logging.properties";

public static final String APP_NAME = "Sand Game 2";
public static final String APP_VERSION = "2.03 Beta";
public static final String APP_VERSION_DATE = "2016-07-03";
public static final String APP_VERSION = "2.04 Beta";
public static final String APP_VERSION_DATE = "2017-09-02";
public static final String APP_TITLE = APP_NAME + " (" + APP_VERSION + ")";
public static final String APP_AUTHOR = 2016 Patrik Harag\n[email protected]";
public static final String APP_AUTHOR = 2017 Patrik Harag\n[email protected]";
public static final String APP_WEB = "https://github.com/Hartrik/Sand-Game-2";

public static final String ICON = "icon - sg2.png";
Expand Down

0 comments on commit 06ec22c

Please sign in to comment.