diff --git a/pom.xml b/pom.xml
index a22ca5e..4fe7bc9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -8,8 +8,22 @@
scm:git:http://surveyor.mydns.jp/gitbucket/git/yuu/ReStamp-gui.git
http://surveyor.mydns.jp/gitbucket/yuu/ReStamp-gui/wiki
scm:git:http://surveyor.mydns.jp/gitbucket/git/yuu/ReStamp-gui.git
- HEAD
+
+
+
+ MIT License
+ http://www.opensource.org/licenses/mit-license.php
+
+
+
+
+ Yuu Hayashi
+ hayashi.yuu@gmail.com
+ surveyor
+ http://surveyor.mydns.jp/
+
+
UTF-8
@@ -22,31 +36,34 @@
ReStamp-gui
http://surveyor.mydns.jp/gitbucket/yuu/Restamp-gui/wiki
-
+
+
- internal
- Hayashi Repository
+ surveyor.haya4
+ Internal Release Repository
http://surveyor.mydns.jp/archiva/repository/haya4/
-
- true
-
-
- false
-
-
+
+ surveyor.snapshots
+ Archiva Managed Snapshot Repository
+ http://surveyor.mydns.jp/archiva/repository/snapshots/
+
+
+
+
osm.surveyor
ReStamp
- 3.3
+ 3.8.4
+
+
- org.apache.commons
- commons-imaging
- 1.0-alpha1
- jar
+ org.apache.commons
+ commons-imaging
+ 1.0-alpha1
diff --git a/src/main/java/osm/surveyor/matchtime/gui/ReStamp.java b/src/main/java/osm/surveyor/matchtime/gui/ReStamp.java
index 6658919..75fd3bf 100644
--- a/src/main/java/osm/surveyor/matchtime/gui/ReStamp.java
+++ b/src/main/java/osm/surveyor/matchtime/gui/ReStamp.java
@@ -1,8 +1,8 @@
package osm.surveyor.matchtime.gui;
-import osm.surveyor.matchtime.AppParameters;
import java.awt.*;
import java.io.IOException;
+import java.nio.file.Paths;
import java.text.SimpleDateFormat;
import java.util.ResourceBundle;
import java.util.TimeZone;
@@ -22,7 +22,6 @@
public static final String PROGRAM_VARSION = "3.01a";
public static final String PROGRAM_UPDATE = "2020-02-11";
- AppParameters params;
public static SimpleDateFormat dfjp = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss Z");
// Used for addNotify check.
@@ -113,8 +112,6 @@
container.add(Box.createHorizontalStrut(10), BorderLayout.WEST);
container.add(Box.createHorizontalStrut(10), BorderLayout.EAST);
- params = new AppParameters();
-
//---------------------------------------------------------------------
cardPanel = new JTabbedPane(JTabbedPane.LEFT);
mainPanel.add(cardPanel, BorderLayout.CENTER);
@@ -127,7 +124,7 @@
{
arg1_srcFolder = new ParameterPanelFolder(
i18n.getString("label.110") +": ",
- params.getProperty(AppParameters.IMG_SOURCE_FOLDER)
+ Paths.get(".").toString()
);
arg1_srcFolder.argField.getDocument().addDocumentListener(
new SimpleDocumentListener() {