File : data/Version.js

1
/*
2
Copyright - 2017 2023 - wwwouaiebe - Contact: https://www.ouaie.be/
3
4
This  program is free software;
5
you can redistribute it and/or modify it under the terms of the
6
GNU General Public License as published by the Free Software Foundation;
7
either version 3 of the License, or any later version.
8
This program is distributed in the hope that it will be useful,
9
but WITHOUT ANY WARRANTY; without even the implied warranty of
10
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
GNU General Public License for more details.
12
You should have received a copy of the GNU General Public License
13
along with this program; if not, write to the Free Software
14
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
15
*/
16
/*
17
Changes:
18
    - v4.0.0:
19
        - created from v3.6.0
20
Doc reviewed 202208
21
 */
22
23
/*
24
25
Warning!!! Warning!!! Warning!!! Warning!!! Warning!!! Warning!!! Warning!!!
26
27
                                --
28
                               //\\
29
                              //  \\
30
                             //    \\
31
                            //   |  \\
32
                           //    |   \\
33
                          //     |    \\
34
                         //      o     \\
35
                         \==============/
36
37
Since v3.0.0 theDataVersion and theAppVersion are two different values.
38
39
theDataVersion is only modified when changes in the Itinerary, ItineraryPoint,
40
Maneuver, Note, Route, Travel or WayPoint classes interfaces.
41
42
You have also to adapt the theDataVersion in the #upgradeObject ( ) method of
43
Itinerary, ItineraryPoint,Maneuver, Note, Route, Travel and WayPoint.
44
45
The theAppVersion changes at each release.
46
You have also to change the theAppVersion in the package.json file
47
and run npm audit fix before a release.
48
49
*/
50
51
/* ------------------------------------------------------------------------------------------------------------------------- */
52
/**
53
The current version of the data
54
@type {String}
55
*/
56
/* ------------------------------------------------------------------------------------------------------------------------- */
57
58
const theDataVersion = '2.4.0';
59
60
/* ------------------------------------------------------------------------------------------------------------------------- */
61
/**
62
The current version of TravelNotes
63
@type {String}
64
*/
65
/* ------------------------------------------------------------------------------------------------------------------------- */
66
67
const theAppVersion = 'v4.3.1';
68
69
export { theDataVersion, theAppVersion };
70
71
/* --- End of file --------------------------------------------------------------------------------------------------------- */
72