OSDN Git Service

release 1.1.0 1.1.0
authorankys <ankys@users.sourceforge.jp>
Tue, 19 Jul 2011 09:57:11 +0000 (18:57 +0900)
committerankys <ankys@users.sourceforge.jp>
Tue, 19 Jul 2011 09:57:11 +0000 (18:57 +0900)
History.txt
Readme.txt
Todo.txt
build.xml
macapp/PosterDivider.app/Contents/Info.plist
src/jp/sourceforge/posterdivider/MainFrame.java
src/jp/sourceforge/posterdivider/Message.properties

index b4db271..38d1d40 100644 (file)
@@ -29,3 +29,9 @@ Mac版で.appへのファイルドロップを受け付けるようにした(kh.
 1.0.3.20110613
 Windows版のリリースを開始
 暗号化?PDFファイルを読み取る時のエラーを処理していなかったのを修正
+
+1.1.0.20110719
+GUIをSwingに変更
+ついでにレイアウトも変更
+操作手順を一部変更した
+NumberField を修正
index 1f9f02b..a12d8d6 100644 (file)
@@ -1,4 +1,4 @@
-PosterDivider 1.0.3.20110613
+PosterDivider 1.1.0.20110719
 
 1. 概要
 
index a0d0966..d030269 100644 (file)
--- a/Todo.txt
+++ b/Todo.txt
@@ -1,14 +1,14 @@
 Preview に画像を表示させる
 CanvasPreview をドラッグすることで値の設定をできるようにする
-NumberField の更新タイミングが不安定
 PosterSize 周りもよくわからなくなってきた
 Margin を印刷用紙の余白として設定したため2枚重なる部分ののりしろの長さが設定値の倍になる
  PdfGenerator を設計し直す必要があって面倒
 一部PDFファイルでjava.lang.NoClassDefFoundError: org/bouncycastle/asn1/ASN1OctetString が出る
  <http://www.bouncycastle.org/latest_releases.html>にあるが、これを解消してもファイル生成時に例外が出る
-レイアウトが今ひとつ(特に PaperSize の行)
+一部PDFファイルで背景オブジェクトの位置が狂うという報告あり
+レイアウトが今ひとつ
 Java依存からの脱却
  iText Java依存、重い
  libharu PDFのインポート機能がない
- PoDoFo 未検証
+ PoDoFo PDFのインポート機能がない?
  GNUpdf 未完成
index 206a013..bfc30e4 100644 (file)
--- a/build.xml
+++ b/build.xml
@@ -1,8 +1,8 @@
 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
 <project name="PosterDivider" basedir="." default="build">
     <property environment="env"/>
-    <property name="VERSION" value="1.0.3.20110613"/>
-    <property name="SHORTVERSION" value="1.0.3"/>
+    <property name="VERSION" value="1.1.0.20110719"/>
+    <property name="SHORTVERSION" value="1.1.0"/>
     <property name="ITEXTJAR" value="itextpdf-5.1.0.jar"/>
     <property name="BCPROVJAR" value="bcprov-jdk16-146.jar"/>
     <path id="PosterDivider.classpath">
index 2d7cf31..272a27d 100644 (file)
@@ -22,7 +22,7 @@
        <key>CFBundleExecutable</key>
        <string>JavaApplicationStub</string>
        <key>CFBundleGetInfoString</key>
-       <string>PosterDivider 1.0.3.20110613</string>
+       <string>PosterDivider 1.1.0.20110719</string>
        <key>CFBundleInfoDictionaryVersion</key>
        <string>6.0</string>
        <key>CFBundleIconFile</key>
@@ -36,7 +36,7 @@
        <key>CFBundleSignature</key>
        <string>????</string>
        <key>CFBundleVersion</key>
-       <string>1.0.3.20110613</string>
+       <string>1.1.0.20110719</string>
        <key>Java</key>
        <dict>
                <key>JVMVersion</key>
index f1a75f5..52d0c20 100644 (file)
@@ -791,7 +791,8 @@ public class MainFrame extends JFrame {
        private void mainFrame_initializeComponents() {
            this.setTitle(Lib.getMessage("App.LowerTitle"));
                this.setSize(800, 600);
-               this.setLocationRelativeTo(null);
+               this.setLocationByPlatform(true);
+               //this.setLocationRelativeTo(null);
                this.addWindowListener(new WindowListener() {
                        public void windowActivated(WindowEvent e) {
                        }
@@ -1232,7 +1233,7 @@ public class MainFrame extends JFrame {
                    panelOutput.add(buttonOutput);
                    break;
                default:
-                   panelOutput.setLayout(new FlowLayout(FlowLayout.LEFT));
+                   panelOutput.setLayout(new FlowLayout(FlowLayout.LEFT, 15, 15));
                    panelOutput.add(buttonOutput);
                    //panelOutput.add(labelMessage);
                    break;
index 105af31..1aa912a 100644 (file)
@@ -5,8 +5,8 @@
 
 App.Title=PosterDivider
 App.LowerTitle=posterdivider
-App.Version=1.0.3.20110613
-App.ShortVersion=1.0.3
+App.Version=1.1.0.20110719
+App.ShortVersion=1.1.0
 
 fileFilterPdfAndImage.Description=PDF and Image files
 menuFile.Text=File