From 8ad7cee34a1d01fe40689c51b87ef751f03da3e5 Mon Sep 17 00:00:00 2001 From: BryanRumsey <44621966+BryanRumsey@users.noreply.github.com> Date: Tue, 27 Jul 2021 15:19:56 -0400 Subject: [PATCH 1/3] fixed upload substring check --- stochss/handlers/util/stochss_folder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stochss/handlers/util/stochss_folder.py b/stochss/handlers/util/stochss_folder.py index 51192689da..6900da24ae 100644 --- a/stochss/handlers/util/stochss_folder.py +++ b/stochss/handlers/util/stochss_folder.py @@ -445,7 +445,7 @@ def upload_from_link(self, remote_path): ''' ext = remote_path.split('.').pop() body = requests.get(remote_path, allow_redirects=True).content - if "download-presentation" in remote_path: + if "download_presentation" in remote_path: if ext in ("mdl", "smdl"): file = f"{json.loads(body)['name']}.{ext}" elif ext == "ipynb": From 092fc7c8aef86de593644924631f9dcf41c8c5c2 Mon Sep 17 00:00:00 2001 From: BryanRumsey <44621966+BryanRumsey@users.noreply.github.com> Date: Tue, 27 Jul 2021 15:22:50 -0400 Subject: [PATCH 2/3] Updated the hub home page to include the publication system. --- client/templates/pages/home.pug | 1 + 1 file changed, 1 insertion(+) diff --git a/client/templates/pages/home.pug b/client/templates/pages/home.pug index 47b87ae585..6adba77cb5 100644 --- a/client/templates/pages/home.pug +++ b/client/templates/pages/home.pug @@ -22,6 +22,7 @@ section.page li Import SBML Models li Parameter Sweep Workflows li Spatial Simulations + li Publish Models and Notebooks div.col-md-5 From bfe98087525b078f49362edd84b24db52b8c6467 Mon Sep 17 00:00:00 2001 From: BryanRumsey <44621966+BryanRumsey@users.noreply.github.com> Date: Tue, 27 Jul 2021 15:24:45 -0400 Subject: [PATCH 3/3] Updated the version to 2.3.9 --- __version__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/__version__.py b/__version__.py index 52a18bd020..8b1219a50e 100644 --- a/__version__.py +++ b/__version__.py @@ -5,7 +5,7 @@ # @website https://github.com/stochss/stochss # ============================================================================= -__version__ = '2.3.8' +__version__ = '2.3.9' __title__ = 'StochSS' __description__ = 'StochSS is an integrated development environment (IDE) \ for simulation of biochemical networks.'