Browse CVS Repository
Contents of /samurai-graph/samurai-graph/HowToRelease.txt
Parent Directory
| Revision Log
| Revision Graph
Revision 1.7 -
( show annotations)
( download)
Wed Oct 27 07:06:06 2004 UTC
(19 years, 5 months ago)
by kuromaru
Branch: MAIN
CVS Tags: RELEASE_0_2_0
Changes since 1.6: +3 -1 lines
File MIME type: text/plain
Modified the lines to be edited.
| 1 |
Memorandum of How To Release. |
| 2 |
|
| 3 |
1. update version number. |
| 4 |
|
| 5 |
- build.xml |
| 6 |
<property name="version" value="0.1.2"/> |
| 7 |
|
| 8 |
- installer/win32/samurai-graph-win32-inst.nsi |
| 9 |
!define SG_VER_MAJOR "0" |
| 10 |
!define SG_VER_MINOR "1" |
| 11 |
!define SG_VER_MICRO "2" |
| 12 |
|
| 13 |
- installer/mac/build.sh |
| 14 |
VERSION=0.1.2 |
| 15 |
|
| 16 |
- installer/mac/resources/bundler/Info.plist |
| 17 |
<key>CFBundleVersion</key> |
| 18 |
<string>0.1.2</string> |
| 19 |
<key>CFBundleShortVersionString</key> |
| 20 |
<string>0.1</string> |
| 21 |
<key>CFBundleGetInfoString</key> |
| 22 |
<string>Samurai Graph 0.1.2, Copyright (c) 2004 RIKEN (The Institute of Physical and Chemical Research)</string> |
| 23 |
|
| 24 |
- installer/mac/resources/bundler/version.plist |
| 25 |
<key>BuildVersion</key> |
| 26 |
<string>1</string> |
| 27 |
<key>CFBundleShortVersionString</key> |
| 28 |
<string>0.1</string> |
| 29 |
<key>CFBundleVersion</key> |
| 30 |
<string>0.1.2</string> |
| 31 |
<key>SourceVersion</key> |
| 32 |
<string>RELEASE_0_1_2</string> |
| 33 |
|
| 34 |
- src/resources/About.html |
| 35 |
Samurai Graph 0.1.2 |
| 36 |
|
| 37 |
- src/jp/riken/brain/ni/samuraigraph/application/SGDrawingServer.java |
| 38 |
public static final int MAJOR_VERSION_NUMBER = 0; |
| 39 |
public static final int MINOR_VERSION_NUMBER = 1; |
| 40 |
public static final int MICRO_VERSION_NUMBER = 2; |
| 41 |
|
| 42 |
2. commit version updated sources. |
| 43 |
% cvs commit |
| 44 |
|
| 45 |
3. add tag to CVS repository. |
| 46 |
% cvs tag RELEASE_0_1_2 |
| 47 |
|
| 48 |
4. rebuild binaries. |
| 49 |
% ./build.sh rebuild |
| 50 |
|
| 51 |
5. create os specific installer |
| 52 |
Windows: |
| 53 |
run NSIS 2.0 compiler. |
| 54 |
- installer/win32/samurai-graph-wiwn32-inst.nsi |
| 55 |
MacOS X: |
| 56 |
create disk image distribution file |
| 57 |
% cd installer/mac |
| 58 |
% ./build.sh |
|