| |
1 # UPDATING VERSION NUMBERS FOR RELEASES |
| |
2 # |
| |
3 # If any code has changed in libgnt: |
| |
4 # gnt_micro_version += 1 |
| |
5 # |
| |
6 # If any functions have been added to libgnt: |
| |
7 # gnt_micro_version = 0 |
| |
8 # gnt_minor_version += 1 |
| |
9 # gnt_lt_current += 1 |
| |
10 # |
| |
11 # If backwards compatibility has been broken in libgnt: |
| |
12 # gnt_micro_version = 0 |
| |
13 # gnt_minor_version = 0 |
| |
14 # gnt_major_version += 1; |
| |
15 # gnt_lt_current += 1 |
| |
16 # |
| |
17 # gnt_version_suffix should be similar to one of the following: |
| |
18 # For beta releases: 'beta2' |
| |
19 # For code under development: 'devel' |
| |
20 # For production releases: '' |
| |
21 # |
| |
22 |
| |
23 # the last version for Finch 2 was 2.8.10, |
| |
24 # the first version for Finch 3 was 2.9.0 |
| |
25 gnt_lt_current = 9 |
| |
26 gnt_major_version = 2 |
| |
27 gnt_minor_version = 9 |
| |
28 gnt_micro_version = 0 |
| |
29 gnt_version_suffix = 'devel' |
| |
30 gnt_version = '@0@.@1@.@2@'.format(gnt_major_version, |
| |
31 gnt_minor_version, |
| |
32 gnt_micro_version) |
| |
33 gnt_display_version = '@0@@1@'.format(gnt_version, |
| |
34 gnt_version_suffix) |
| |
35 |
| |
36 GNT_LIB_VERSION = '@0@.@1@.@2@'.format(gnt_lt_current - gnt_minor_version, |
| |
37 gnt_minor_version, |
| |
38 gnt_micro_version) |
| |
39 |
| 1 gnt_config = configuration_data() |
40 gnt_config = configuration_data() |
| 2 ####################################################################### |
41 ####################################################################### |
| 3 # Check for ncurses and other things used by the console UI |
42 # Check for ncurses and other things used by the console UI |
| 4 ####################################################################### |
43 ####################################################################### |
| 5 ncurses_available = false |
44 ncurses_available = false |