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.' 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 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":