Browse CVS Repository
Annotation of /samurai-graph/samurai-graph/HowToRelease.txt
Parent Directory
| Revision Log
| Revision Graph
Revision 1.6 -
( hide annotations)
( download)
Wed Oct 27 05:30:37 2004 UTC
(19 years, 5 months ago)
by kuromaru
Branch: MAIN
Changes since 1.5: +1 -1 lines
File MIME type: text/plain
Changed the location to be modified.
| 1 |
orrisroot |
1.4 |
Memorandum of How To Release. |
| 2 |
orrisroot |
1.1 |
|
| 3 |
|
|
1. update version number. |
| 4 |
orrisroot |
1.4 |
|
| 5 |
orrisroot |
1.1 |
- build.xml |
| 6 |
|
|
<property name="version" value="0.1.2"/> |
| 7 |
orrisroot |
1.4 |
|
| 8 |
orrisroot |
1.1 |
- 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 |
orrisroot |
1.4 |
|
| 13 |
orrisroot |
1.1 |
- installer/mac/build.sh |
| 14 |
|
|
VERSION=0.1.2 |
| 15 |
orrisroot |
1.4 |
|
| 16 |
orrisroot |
1.1 |
- 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 |
orrisroot |
1.2 |
<string>Samurai Graph 0.1.2, Copyright (c) 2004 RIKEN (The Institute of Physical and Chemical Research)</string> |
| 23 |
orrisroot |
1.4 |
|
| 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 |
kuromaru |
1.5 |
- src/resources/About.html |
| 35 |
|
|
Samurai Graph 0.1.2 |
| 36 |
|
|
|
| 37 |
kuromaru |
1.6 |
- src/jp/riken/brain/ni/samuraigraph/application/SGDrawingServer.java |
| 38 |
kuromaru |
1.3 |
public static final String VERSION_NUMBER = "0.1.2"; |
| 39 |
orrisroot |
1.1 |
|
| 40 |
orrisroot |
1.4 |
2. commit version updated sources. |
| 41 |
|
|
% cvs commit |
| 42 |
|
|
|
| 43 |
|
|
3. add tag to CVS repository. |
| 44 |
orrisroot |
1.1 |
% cvs tag RELEASE_0_1_2 |
| 45 |
|
|
|
| 46 |
orrisroot |
1.4 |
4. rebuild binaries. |
| 47 |
orrisroot |
1.1 |
% ./build.sh rebuild |
| 48 |
|
|
|
| 49 |
orrisroot |
1.4 |
5. create os specific installer |
| 50 |
orrisroot |
1.1 |
Windows: |
| 51 |
kuromaru |
1.3 |
run NSIS 2.0 compiler. |
| 52 |
orrisroot |
1.1 |
- installer/win32/samurai-graph-wiwn32-inst.nsi |
| 53 |
|
|
MacOS X: |
| 54 |
|
|
create disk image distribution file |
| 55 |
|
|
% cd installer/mac |
| 56 |
|
|
% ./build.sh |
|