Browse CVS Repository
Contents of /samurai-graph/samurai-graph/HowToRelease.txt
Parent Directory
| Revision Log
| Revision Graph
Revision 1.1 -
( show annotations)
( download)
Mon Sep 13 01:10:46 2004 UTC
(19 years, 7 months ago)
by orrisroot
Branch: MAIN
File MIME type: text/plain
added document of how to release.
| 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 Phisycal and Chemical Research)</string> |
| 19 |
|
| 20 |
2. add tag to CVS repository. |
| 21 |
% cvs tag RELEASE_0_1_2 |
| 22 |
|
| 23 |
3. rebuild binaries. |
| 24 |
% ./build.sh rebuild |
| 25 |
|
| 26 |
4. create os specific installer |
| 27 |
Windows: |
| 28 |
run NSIS 2.0 compiler for installer creation. |
| 29 |
- installer/win32/samurai-graph-wiwn32-inst.nsi |
| 30 |
MacOS X: |
| 31 |
create disk image distribution file |
| 32 |
% cd installer/mac |
| 33 |
% ./build.sh |
|