Skip to content

Commit

Permalink
1.9.1up.
Browse files Browse the repository at this point in the history
  • Loading branch information
turbou committed Feb 3, 2023
1 parent 2b868d9 commit ef07d55
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 17 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ Eclipseでプロジェクトをリフレッシュすると、あとは実行でc
launch4jのsign4jを使用します。
```powershell
cd C:\Program Files (x86)\launch4j\sign4j
sign4j.exe java -jar jsign-2.0.jar --alias 1 --keystore C:\Users\turbou\Desktop\CSVDLTool_work\XXXXX.pfx --storepass [パスワード] C:\Users\turbou\Desktop\CSVDLTool_work\common\CSVDLTool_1.9.0.exe
sign4j.exe java -jar jsign-2.0.jar --alias 1 --keystore C:\Users\turbou\Desktop\CSVDLTool_work\XXXXX.pfx --storepass [パスワード] C:\Users\turbou\Desktop\CSVDLTool_work\common\CSVDLTool_1.9.1.exe
```
- 署名の確認
署名の確認については、exeを右クリック->プロパティ で確認できます。
Expand All @@ -106,21 +106,21 @@ Eclipseでプロジェクトをリフレッシュすると、あとは実行でc
読み込めたら、Common Name(通称)をコピー
- 署名
```bash
codesign --deep -s "Contrast Security, Inc." -v CSVDLTool_1.9.0.app
codesign --deep -s "Contrast Security, Inc." -v CSVDLTool_1.9.0_auditlog.app
codesign --deep -s "Contrast Security, Inc." -v CSVDLTool_1.9.1.app
codesign --deep -s "Contrast Security, Inc." -v CSVDLTool_1.9.1_auditlog.app
```
- 署名の確認
```bash
codesign -d --verbose=4 CSVDLTool_1.9.0.app
codesign -d --verbose=4 CSVDLTool_1.9.0_auditlog.app
codesign -d --verbose=4 CSVDLTool_1.9.1.app
codesign -d --verbose=4 CSVDLTool_1.9.1_auditlog.app
```
#### 圧縮について補足
- Mac
```bash
7z a CSVDLTool_1.9.0.cli7z CSVDLTool_1.9.0.app/
7z a CSVDLTool_1.9.0_auditlog.cli7z CSVDLTool_1.9.0_auditlog.app/
7z a CSVDLTool_1.9.1.cli7z CSVDLTool_1.9.1.app/
7z a CSVDLTool_1.9.1_auditlog.cli7z CSVDLTool_1.9.1_auditlog.app/
```

### 起動後の使い方について
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apply plugin: 'eclipse'

sourceCompatibility = 1.8

version = '1.9.0'
version = '1.9.1'

def defaultEncoding = 'UTF-8'
tasks.withType(AbstractCompile) each { it.options.encoding = defaultEncoding }
Expand Down
2 changes: 1 addition & 1 deletion jarpackage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
JAVA_HOME="/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home"
BUNDLE_JRE_HOME="/Users/turbou/Downloads/jre1.8.0_202.jre"
APP_NAME="CSVDLTool"
APP_VERSION="1.9.0"
APP_VERSION="1.9.1"
APP_DIR_NAME="${APP_NAME}_${APP_VERSION}.app"

javapackager \
Expand Down
2 changes: 1 addition & 1 deletion jarpackage_auditlog.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
JAVA_HOME="/Library/Java/JavaVirtualMachines/jdk1.8.0_231.jdk/Contents/Home"
BUNDLE_JRE_HOME="/Users/turbou/Downloads/jre1.8.0_202.jre"
APP_NAME="CSVDLTool"
APP_VERSION="1.9.0"
APP_VERSION="1.9.1"
APP_DIR_NAME="${APP_NAME}_${APP_VERSION}_auditlog.app"

javapackager \
Expand Down
4 changes: 2 additions & 2 deletions launch4j.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<launch4jConfig>
<dontWrapJar>false</dontWrapJar>
<headerType>gui</headerType>
<jar>C:\Users\turbou\Desktop\CSVDLTool_work\common\CSVDLTool-1.9.0.jar</jar>
<outfile>C:\Users\turbou\Desktop\CSVDLTool_work\common\CSVDLTool_1.9.0.exe</outfile>
<jar>C:\Users\turbou\Desktop\CSVDLTool_work\common\CSVDLTool-1.9.1.jar</jar>
<outfile>C:\Users\turbou\Desktop\CSVDLTool_work\common\CSVDLTool_1.9.1.exe</outfile>
<errTitle></errTitle>
<cmdLine></cmdLine>
<chdir>.</chdir>
Expand Down
4 changes: 2 additions & 2 deletions launch4j_auditlog.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<launch4jConfig>
<dontWrapJar>false</dontWrapJar>
<headerType>gui</headerType>
<jar>C:\Users\turbou\Desktop\CSVDLTool_work\common\CSVDLTool-1.9.0.jar</jar>
<outfile>C:\Users\turbou\Desktop\CSVDLTool_work\common\CSVDLTool_1.9.0_auditlog.exe</outfile>
<jar>C:\Users\turbou\Desktop\CSVDLTool_work\common\CSVDLTool-1.9.1.jar</jar>
<outfile>C:\Users\turbou\Desktop\CSVDLTool_work\common\CSVDLTool_1.9.1_auditlog.exe</outfile>
<errTitle></errTitle>
<cmdLine></cmdLine>
<chdir>.</chdir>
Expand Down
4 changes: 2 additions & 2 deletions sign.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ keytool -list -v -storetype pkcs12 -keystore C:\Users\turbou\Desktop\CSVDLTool_w
エイリアスを確認

cd C:\Program Files (x86)\launch4j\sign4j
sign4j.exe java -jar jsign-2.0.jar --alias 1 --keystore C:\Users\turbou\Desktop\CSVDLTool_work\contrast-code.pfx --storepass [パスワード] C:\Users\turbou\Desktop\CSVDLTool_work\common\CSVDLTool_1.9.0.exe
sign4j.exe java -jar jsign-2.0.jar --alias 1 --keystore C:\Users\turbou\Desktop\CSVDLTool_work\contrast-code.pfx --storepass [パスワード] C:\Users\turbou\Desktop\CSVDLTool_work\common\CSVDLTool_1.9.0_auditlog.exe
sign4j.exe java -jar jsign-2.0.jar --alias 1 --keystore C:\Users\turbou\Desktop\CSVDLTool_work\contrast-code.pfx --storepass [パスワード] C:\Users\turbou\Desktop\CSVDLTool_work\common\CSVDLTool_1.9.1.exe
sign4j.exe java -jar jsign-2.0.jar --alias 1 --keystore C:\Users\turbou\Desktop\CSVDLTool_work\contrast-code.pfx --storepass [パスワード] C:\Users\turbou\Desktop\CSVDLTool_work\common\CSVDLTool_1.9.1_auditlog.exe
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ protected Control createContents(Composite parent) {
Label versionValueLbl = new Label(appGrp, SWT.NONE);
GridData versionValueLblGrDt = new GridData();
versionValueLbl.setLayoutData(versionValueLblGrDt);
versionValueLbl.setText("1.9.0"); //$NON-NLS-1$
versionValueLbl.setText("1.9.1"); //$NON-NLS-1$

Label copyrightLbl = new Label(appGrp, SWT.NONE);
GridData copyrightLblGrDt = new GridData();
Expand Down

0 comments on commit ef07d55

Please sign in to comment.