Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
toolbox
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Institute of Technical Acoustics (ITA)
toolbox
Merge requests
!22
Update ita pathhandling to only store ita paths in user directory
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Update ita pathhandling to only store ita paths in user directory
updatePathHandling
into
master
Overview
1
Commits
26
Changes
8
Merged
Hark Simon Braren
requested to merge
updatePathHandling
into
master
1 year ago
Overview
1
Commits
26
Changes
8
Expand
Only store ita_paths (and load on startup)
removes problems with multiple matlab versions on one machine or when switching matlab versions
inform user of the switch and force the to call ita_toolbox_setup through version bump
does affect the startup script which can affect the behavior of other toolboxes (only if sth. goes wrong)
tested on two windows and one macOS machine
0
0
Merge request reports
Compare
master
version 5
149d41b5
1 year ago
version 4
423ad858
1 year ago
version 3
a20f91f1
1 year ago
version 2
4555d78f
1 year ago
version 1
5b23e4e2
1 year ago
master (base)
and
latest version
latest version
1a6db761
26 commits,
1 year ago
version 5
149d41b5
25 commits,
1 year ago
version 4
423ad858
22 commits,
1 year ago
version 3
a20f91f1
20 commits,
1 year ago
version 2
4555d78f
15 commits,
1 year ago
version 1
5b23e4e2
14 commits,
1 year ago
8 files
+
280
−
49
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
8
Search (e.g. *.vue) (Ctrl+P)
applications/HTMLhelp/ita_generate_documentation.m
+
3
−
4
Options
@@ -87,10 +87,9 @@ toc
%% Build search database for helpdesk
% switching to basic rendering to fix bug with builddocsearchdb
webutils
.
htmlrenderer
(
'basic'
);
%
webutils.htmlrenderer('basic');
% no longer needed
% MATLAB requires the html files to be in its search path
addpath
(
htmlFolder
,
docFolder
);
savepath
;
ita_savepath
({
htmlFolder
,
docFolder
},
'append'
);
% switching seems to take a while sometimes
pause
(
1
);
if
nargin
==
0
@@ -98,7 +97,7 @@ if nargin == 0
rehash
toolboxcache
end
% switch back to standard renderer
webutils
.
htmlrenderer
(
'default'
);
%
webutils.htmlrenderer('default');
% no longer needed
ita_verbose_info
(
'Please restart MATLAB if the MATLAB ITA Toolbox entry does not show in the documentation browser.'
,
0
);
%% Go back to the last working directory
Loading