Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Institute of Technical Acoustics (ITA)
toolbox
Commits
d6942871
Commit
d6942871
authored
Sep 15, 2017
by
Jan-Gerrit Richter
Browse files
added date to history lines
parent
ba4cf4bb
Changes
2
Hide whitespace changes
Inline
Side-by-side
kernel/ClassStuff/@itaSuper/itaSuper.m
View file @
d6942871
...
...
@@ -160,7 +160,7 @@ classdef itaSuper < itaMeta
%% Add history line
commitID
=
ita_git_getMasterCommitHash
;
if
~
isempty
(
commitID
)
this
=
ita_metainfo_add_historyline
(
this
,
'
itaSuper
GitVersion'
,
commitID
);
this
=
ita_metainfo_add_historyline
(
this
,
'GitVersion'
,
commitID
);
end
end
...
...
kernel/MetaInfo/ita_metainfo_add_historyline.m
View file @
d6942871
...
...
@@ -97,7 +97,17 @@ if nargin >= 3 % the function had some input arguments
elseif
isa
(
arguments
,
'itaSuper'
)
argumentStr
=
'(audioObj)'
;
end
historyline
=
[
historyline
argumentStr
];
dateLine
=
''
;
try
dateLine
=
date
;
dateLine
=
[
dateLine
' - '
];
catch
e
end
historyline
=
[
dateLine
historyline
argumentStr
];
end
%% Add the history line ?�pdi:faster
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment