Skip to content

Commit

Permalink
Merge pull request #1 from ITISFoundation/fix_trash
Browse files Browse the repository at this point in the history
Update JupyterLab config to disable trash
  • Loading branch information
elisabettai authored May 6, 2024
2 parents 40eb4be + 4a6c979 commit 0f8f213
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.0.1
current_version = 1.0.2
commit = False
message = service version: {current_version} → {new_version}
tag = False
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-image.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Build and check image

on: [push, pull_request]
on: push

jobs:
verify-image-build:
Expand Down
2 changes: 1 addition & 1 deletion .osparc/metadata.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Jupyterlab Julia
key: simcore/services/dynamic/jupyterlab-julia
type: dynamic
integration-version: 2.0.0
version: 1.0.1
version: 1.0.2
description: JupyterLab coding environment for creating interactive Jupyter Notebooks with Julia (or Python)
contact: [email protected]
thumbnail: https://ih1.redbubble.net/image.1456778886.5914/bg,f8f8f8-flat,750x,075,f-pad,750x1000,f8f8f8.jpg
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Changelog

## [1.0.2] - 6 May 2025
### Fixed
- Do not create `.Trash-1000` folder (caused service to fail after re-opening a study) ([#1296](https://github.com/ITISFoundation/osparc-issues/issues/1296))
## [1.0.1] - 23 Apr. 2024
- First version
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export VCS_STATUS := $(if $(shell git status -s 2> /dev/null || echo unversioned
export BUILD_DATE := $(shell date -u +"%Y-%m-%dT%H:%M:%SZ")

export DOCKER_IMAGE_NAME ?= jupyterlab-julia
export DOCKER_IMAGE_TAG ?= 1.0.1
export DOCKER_IMAGE_TAG ?= 1.0.2

OSPARC_DIR:=$(CURDIR)/.osparc

Expand Down
3 changes: 2 additions & 1 deletion boot_scripts/boot_notebook.bash
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ cat > .jupyter_config.json <<EOF
"token": "${NOTEBOOK_TOKEN}"
},
"FileContentsManager": {
"preferred_dir": "${NOTEBOOK_BASE_DIR}/workspace/"
"preferred_dir": "${NOTEBOOK_BASE_DIR}/workspace/",
"delete_to_trash": false
}
}
EOF
Expand Down
2 changes: 1 addition & 1 deletion docker-compose-local.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
jupyterlab-julia:
image: simcore/services/dynamic/jupyterlab-julia:1.0.1
image: simcore/services/dynamic/jupyterlab-julia:1.0.2
ports:
- "8888:8888"
environment:
Expand Down

0 comments on commit 0f8f213

Please sign in to comment.