OSDN Git Service

add file README.jp.txt
authorhayashi.yuu <hayashi.yuu@gmail.com>
Tue, 2 Jul 2013 01:51:40 +0000 (10:51 +0900)
committerhayashi.yuu <hayashi.yuu@gmail.com>
Tue, 2 Jul 2013 01:51:40 +0000 (10:51 +0900)
importPicture/.classpath [new file with mode: 0644]
importPicture/.project [new file with mode: 0644]
importPicture/README.jp.txt [new file with mode: 0644]
importPicture/build.xml

diff --git a/importPicture/.classpath b/importPicture/.classpath
new file mode 100644 (file)
index 0000000..2061450
--- /dev/null
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+       <classpathentry kind="src" path="src"/>
+       <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
+       <classpathentry kind="output" path="classes"/>
+</classpath>
diff --git a/importPicture/.project b/importPicture/.project
new file mode 100644 (file)
index 0000000..3ce5071
--- /dev/null
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+       <name>importPicture</name>
+       <comment></comment>
+       <projects>
+       </projects>
+       <buildSpec>
+               <buildCommand>
+                       <name>org.eclipse.jdt.core.javabuilder</name>
+                       <arguments>
+                       </arguments>
+               </buildCommand>
+       </buildSpec>
+       <natures>
+               <nature>org.eclipse.jdt.core.javanature</nature>
+       </natures>
+</projectDescription>
diff --git a/importPicture/README.jp.txt b/importPicture/README.jp.txt
new file mode 100644 (file)
index 0000000..81f7538
--- /dev/null
@@ -0,0 +1,12 @@
+[ importpicture ]
+
+GPSログファイル(GPX)に写真へのリンクを追加します (import picture)
+
+[概要]
+GPSログの記録時刻とデジカメの撮影時刻とを見比べて、GPSログ内に写真へのリンク情報を付加した新しいGPSログファイルを作成します。
+ * 画像ファイルの更新日付をその画像の撮影日時とします。(Exi情報は無視します) ※ 対象とするファイルは'*.jpg'のみ
+ * 精確な時刻との時差を入力することで、撮影日時を補正します。
+ * 画像ファイルの更新日付リストをCSV形式のファイルとして出力する。
+ * 結果は、取り込み元のGPXファイルとは別に、元ファイル名にアンダーバー「_」を付加した.ファイルに出力します。
+
+http://sourceforge.jp/projects/importpicture/wiki/FrontPage
\ No newline at end of file
index 811216f..3ffaf85 100644 (file)
@@ -13,6 +13,7 @@
        </tstamp>\r
     <property name="src" value="${basedir}/src" />\r
     <property name="classes" value="${basedir}/classes" />\r
+       <property name="deploy" value="${basedir}/deploy" />\r
        <property name="appname" value="importPicture"></property>\r
        <property name="version" value="${verdate}"></property>\r
 \r
     </target>\r
 \r
        <!--\r
-       [STEP 4] リンク\r
+       [STEP 4] Deployment\r
         -->\r
-    <target name="release" depends="create_run_jar" description="'${appname}.zip'を作成する">\r
-       <zip destfile="${appname}.zip">\r
+    <target name="release" depends="create_run_jar" description="'${deploy}/${appname}.zip'を作成する">\r
+       <zip destfile="${deploy}/${appname}.zip">\r
                <fileset dir="." includes="${appname}.jar"/>\r
+               <fileset dir="." includes="README.jp.txt"/>\r
                <fileset dir="." includes="${appname}.bat"/>\r
                </zip>\r
     </target>\r