v1.0.1 : Updated preview + some fixes

This commit is contained in:
Klemek
2018-11-02 19:57:31 +01:00
parent deb0b2c21a
commit 48d307fb6a
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -6,7 +6,7 @@
<groupId>fr.klemek</groupId> <groupId>fr.klemek</groupId>
<artifactId>mapping</artifactId> <artifactId>mapping</artifactId>
<version>1.0</version> <version>1.0.1</version>
<repositories> <repositories>
<repository> <repository>
BIN
View File
Binary file not shown.

Before

Width:  |  Height:  |  Size: 62 KiB

After

Width:  |  Height:  |  Size: 64 KiB

@@ -9,7 +9,7 @@ import javax.swing.*;
class MainWindow extends JFrame { class MainWindow extends JFrame {
static final String FILE_NAME = "mapping.csv"; static final String FILE_NAME = "mapping.csv";
private static final String VERSION = "1.0"; private static final String VERSION = "1.0.1";
private static final int DEFAULT_SIZE = 17; private static final int DEFAULT_SIZE = 17;
private static final String INFO_TEXT = "" + private static final String INFO_TEXT = "" +
"<html>" + "<html>" +
@@ -20,8 +20,8 @@ class MainWindow extends JFrame {
"[BACKSPACE] - Erase everything<br>" + "[BACKSPACE] - Erase everything<br>" +
"[ARROWS] - Move view<br>" + "[ARROWS] - Move view<br>" +
"[PAGE UP/DOWN] - Change size<br/>" + "[PAGE UP/DOWN] - Change size<br/>" +
"[CTRL+S] - Save current work" + "[CTRL+S] - Save current work<br>" +
"[0] - Show hide this info<br>" + "[0] - Show/hide this info<br>" +
"[1] - Show grid<br>" + "[1] - Show grid<br>" +
"[2] - Add random<br>"; "[2] - Add random<br>";
private MainPanel mp; private MainPanel mp;