Skip to content

Commit 8b2ea20

Browse files
committed
v0.5.11, introducing html identifier, clc in startup, and formatting changes
1 parent 01ccc8c commit 8b2ea20

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

gui/public/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
<meta name="viewport" content="width=device-width, initial-scale=1" />
99
<meta name="theme-color" content="#000000" />
1010
<meta name="description" content="MATLAB" />
11+
<meta name="internal_mw_identifier" content="MWI_MATLAB_PROXY_IDENTIFIER" />
1112
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
1213
<title>MATLAB</title>
1314
</head>

matlab_proxy/matlab/startup.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,4 @@
3434
matlab_settings.matlab.addons.explorer.isExplorerSupported.TemporaryValue = false;
3535

3636
clear
37+
clc

matlab_proxy/util/windows.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,9 @@ async def start_matlab(matlab_cmd, matlab_env):
8383
# before we can query for its child processes. Hence, to find the actual MATLAB
8484
# process, we check all the processes name and parent process id. Ideally, this
8585
# approach should work in all cases unless MATLAB itself has exited / crashed.
86-
logger.debug("Intermediate process not found. Querying all process to find MATLAB")
86+
logger.debug(
87+
"Intermediate process not found. Querying all process to find MATLAB"
88+
)
8789
for process in psutil.process_iter():
8890
if (
8991
process.name() == "MATLAB.exe"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def run(self):
6565

6666
setuptools.setup(
6767
name="matlab-proxy",
68-
version="0.5.9",
68+
version="0.5.11",
6969
url=config["doc_url"],
7070
author="The MathWorks, Inc.",
7171
author_email="[email protected]",

0 commit comments

Comments
 (0)