CONFIGGLIDERTOOLBOXVERSION Configure version of the currently toolbox in use. Syntax: VERSION = CONFIGGLIDERTOOLBOXVERSION() Description: VERSION = CONFIGGLIDERTOOLBOXVERSION() should return the identifier of the current version of the toolbox (see note on versions below). Notes: It is highly recommended to modify the returned version when using a forked version of the toolbox. The recommended way is to compose the custom version identifier by adding a suffix to the identifier of the version on which the fork is based separated by a hyphen. If your version is on a public repository under version control, it might be useful to use the same reference identifier (branch and commit id, tag, revision...) as suffix. Examples: version = configGliderToolboxVersion() Authors: Joan Pau Beltran <joanpau.beltran@socib.cat>
0001 function version = configGliderToolboxVersion() 0002 %CONFIGGLIDERTOOLBOXVERSION Configure version of the currently toolbox in use. 0003 % 0004 % Syntax: 0005 % VERSION = CONFIGGLIDERTOOLBOXVERSION() 0006 % 0007 % Description: 0008 % VERSION = CONFIGGLIDERTOOLBOXVERSION() should return the identifier 0009 % of the current version of the toolbox (see note on versions below). 0010 % 0011 % Notes: 0012 % It is highly recommended to modify the returned version when using a forked 0013 % version of the toolbox. The recommended way is to compose the custom 0014 % version identifier by adding a suffix to the identifier of the version on 0015 % which the fork is based separated by a hyphen. If your version is on a 0016 % public repository under version control, it might be useful to use the same 0017 % reference identifier (branch and commit id, tag, revision...) as suffix. 0018 % 0019 % Examples: 0020 % version = configGliderToolboxVersion() 0021 % 0022 % Authors: 0023 % Joan Pau Beltran <joanpau.beltran@socib.cat> 0024 0025 % Copyright (C) 2014-2016 0026 % ICTS SOCIB - Servei d'observacio i prediccio costaner de les Illes Balears 0027 % <http://www.socib.es> 0028 % 0029 % This program is free software: you can redistribute it and/or modify 0030 % it under the terms of the GNU General Public License as published by 0031 % the Free Software Foundation, either version 3 of the License, or 0032 % (at your option) any later version. 0033 % 0034 % This program is distributed in the hope that it will be useful, 0035 % but WITHOUT ANY WARRANTY; without even the implied warranty of 0036 % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 0037 % GNU General Public License for more details. 0038 % 0039 % You should have received a copy of the GNU General Public License 0040 % along with this program. If not, see <http://www.gnu.org/licenses/>. 0041 0042 error(nargchk(0, 0, nargin, 'struct')); 0043 0044 version = '1.2.0'; 0045 0046 end