source: MML/trunk/machine/SOLEIL/common/toolbox/GUILayout/layoutVersion.m @ 17

Last change on this file since 17 was 17, checked in by zhangj, 10 years ago

To have a stable version on the server.

  • Property svn:executable set to *
File size: 1.1 KB
Line 
1function [version, versionDate] = layoutVersion()
2%layoutVersion  get the toolbox version and date
3%
4%   V = layoutVersion() returns just the version string
5%
6%   [V,D] = layoutVersion() returns both the version string and the date of
7%   creation (format is ISO8601, i.e. YYYY-MM-DD)
8%
9%   Examples:
10%   >> [v,d] = layoutVersion()
11%   v = '1.0'
12%   d = '2010-05-28'
13%
14%   See also: layoutRoot
15
16%   Copyright 2009-2011 The MathWorks Ltd.
17%   1.1   
18%   2012/05/08 08:02:59
19
20version = '1.10';
21versionDate = '2011-07-14';
22
23% version = '1.9';
24% versionDate = '2011-02-10';
25
26% version = '1.8';
27% versionDate = '2010-11-02';
28
29% version = '1.7';
30% versionDate = '2010-10-22';
31
32% version = '1.6';
33% versionDate = '2010-09-24';
34
35% version = '1.5';
36% versionDate = '2010-07-22';
37
38% version = '1.4';
39% versionDate = '2010-07-15';
40
41% version = '1.3';
42% versionDate = '2010-06-28';
43
44% version = '1.2';
45% versionDate = '2010-06-18';
46
47% version = '1.1';
48% versionDate = '2010-06-09';
49
50% version = '1.0';
51% versionDate = '2010-05-28';
52
53% version = '0.4';
54% versionDate = '2010-05-19';
55
56% version = '0.3';
57% versionDate = '2010-03-10';
58
59% version = '0.2';
60% versionDate = '2010-01-06';
Note: See TracBrowser for help on using the repository browser.