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