Browse CVS Repository
Contents of /samurai-graph/samurai-graph/HowToRelease.txt
Parent Directory
| Revision Log
| Revision Graph
Revision 1.3 -
( show annotations)
( download)
Tue Sep 14 08:08:15 2004 UTC
(19 years, 6 months ago)
by kuromaru
Branch: MAIN
Changes since 1.2: +3 -1 lines
File MIME type: text/plain
Added a new file to update.
| 1 |
How To Release. |
| 2 |
|
| 3 |
1. update version number. |
| 4 |
- build.xml |
| 5 |
<property name="version" value="0.1.2"/> |
| 6 |
- installer/win32/samurai-graph-win32-inst.nsi |
| 7 |
!define SG_VER_MAJOR "0" |
| 8 |
!define SG_VER_MINOR "1" |
| 9 |
!define SG_VER_MICRO "2" |
| 10 |
- installer/mac/build.sh |
| 11 |
VERSION=0.1.2 |
| 12 |
- installer/mac/resources/bundler/Info.plist |
| 13 |
<key>CFBundleVersion</key> |
| 14 |
<string>0.1.2</string> |
| 15 |
<key>CFBundleShortVersionString</key> |
| 16 |
<string>0.1</string> |
| 17 |
<key>CFBundleGetInfoString</key> |
| 18 |
<string>Samurai Graph 0.1.2, Copyright (c) 2004 RIKEN (The Institute of Physical and Chemical Research)</string> |
| 19 |
- src/jp/riken/brain/ni/samuraigraph/base/SGDefaultValues.java |
| 20 |
public static final String VERSION_NUMBER = "0.1.2"; |
| 21 |
|
| 22 |
2. add tag to CVS repository. |
| 23 |
% cvs tag RELEASE_0_1_2 |
| 24 |
|
| 25 |
3. rebuild binaries. |
| 26 |
% ./build.sh rebuild |
| 27 |
|
| 28 |
4. create os specific installer |
| 29 |
Windows: |
| 30 |
run NSIS 2.0 compiler. |
| 31 |
- installer/win32/samurai-graph-wiwn32-inst.nsi |
| 32 |
MacOS X: |
| 33 |
create disk image distribution file |
| 34 |
% cd installer/mac |
| 35 |
% ./build.sh |
|