Skip to content

Commit

Permalink
lens release on mouse leaving widget; bump to 0.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-rind committed Sep 20, 2023
1 parent 5543756 commit 67a0651
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "soniscope-jupyter",
"version": "0.1.6",
"version": "0.1.7",
"description": "jupyter notebook widget with a scatter plot and an interactive lens to enable interactive sonification",
"keywords": [
"jupyter",
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ dependencies = [
"numpy>=1.21.0",
"pandas>=1.3.0",
]
version = "0.1.6"
version = "0.1.7"

[project.optional-dependencies]
docs = [
Expand Down Expand Up @@ -99,7 +99,7 @@ field = [
]

[tool.tbump.version]
current = "0.1.6"
current = "0.1.7"
regex = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)((?P<channel>a|b|rc|.dev)(?P<release>\\d+))?"

[tool.tbump.git]
Expand Down
2 changes: 1 addition & 1 deletion soniscope_jupyter/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
# Copyright (c) Alexander Rind & the SoniVis team.
# Distributed under the terms of the MIT License (see LICENSE.txt).

version_info = (0, 1, 6)
version_info = (0, 1, 7)
__version__ = ".".join(map(str, version_info))
3 changes: 3 additions & 0 deletions src/lensCursor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,9 @@ export class LensCursor {
})
.on('mouseleave', () => {
this.selLens.style('opacity', 0);
view.send({
event: 'lens_released',
});
})
.on(
'wheel',
Expand Down

0 comments on commit 67a0651

Please sign in to comment.