Skip to content
Snippets Groups Projects
Commit a88f9251 authored by Swen Vermeul's avatar Swen Vermeul
Browse files

Merge branch 'release/0.5.3'

parents bf55a5d8 45f65376
No related branches found
Tags 0.5.3
No related merge requests found
Pipeline #2444 passed with warnings
## new in jupyter-openbis-extension 0.5.3
- fixed Windows path
## new in jupyter-openbis-extension 0.5.2
- dataSet properties now appear as separate columns
......
......@@ -236,7 +236,13 @@ define(
default_working_dir = data.notebook_dir + rel_path
}
else {
default_working_dir = data.notebook_dir + "/" + rel_path
if (navigator.platform == "Win32") {
default_working_dir = data.notebook_dir + "\\" + rel_path
}
else {
default_working_dir = data.notebook_dir + "/" + rel_path
}
}
working_dir_in.value = state.working_dir ? state.working_dir : default_working_dir
......
......@@ -11,7 +11,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
setup(
name='jupyter-openbis-extension',
version= '0.5.2',
version= '0.5.3',
author='Swen Vermeul | ID SIS | ETH Zürich',
author_email='swen@ethz.ch',
description='Extension for Jupyter notebooks to connect to openBIS and download/upload datasets, inluding the notebook itself',
......@@ -23,7 +23,7 @@ setup(
install_requires=[
'jupyter-nbextensions-configurator',
'jupyter',
'jupyter-openbis-server>=0.1.3',
'jupyter-openbis-server>=0.1.4',
'numpy',
'tornado==5.1.1',
],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment