Skip to content

Commit 92a800c

Browse files
author
semantic-release
committed
1.3.0
Automatically generated by python-semantic-release
1 parent bea4536 commit 92a800c

5 files changed

Lines changed: 55 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,57 @@
22

33
<!-- version list -->
44

5+
## v1.3.0 (2026-02-09)
6+
7+
### Bug Fixes
8+
9+
- Adding graceful tauri launch for linux
10+
([`0a1a05c`](https://github.com/Kitware/QuickView/commit/0a1a05cc400ab6f3080e6dae785ce2860e801c1c))
11+
12+
- **#10**: Make the group button deselect group
13+
([`360f68f`](https://github.com/Kitware/QuickView/commit/360f68faa662f5be3da5dfc5be08af1367ab07ab))
14+
15+
- **animation**: Update icon
16+
([`a160557`](https://github.com/Kitware/QuickView/commit/a1605579e114596aa10756920fe66145d3066b5d))
17+
18+
- **crop**: Update icon for lat/lon cropping
19+
([`f4ca4c1`](https://github.com/Kitware/QuickView/commit/f4ca4c104235d8bb4b7c71769ad1f3ede80ac0f2))
20+
21+
- **file loading**: Update icon
22+
([`612f533`](https://github.com/Kitware/QuickView/commit/612f533348bc8e00cf6058483f2cd7445e71d9f4))
23+
24+
- **keybinding**: Set lat/lon crop to 'l'
25+
([`8ecaffc`](https://github.com/Kitware/QuickView/commit/8ecaffcbb00934471c97378d5174642898d2b62f))
26+
27+
- **keybinding**: Use 'crm' for projections
28+
([`ef57571`](https://github.com/Kitware/QuickView/commit/ef575715fc4b76985c054054a4f8c670b3f09c8e))
29+
30+
- **layout**: Renamed to 'Viewport layout' with 'p' shortcut
31+
([`d108b78`](https://github.com/Kitware/QuickView/commit/d108b783f1a9ac3b3497dc7dd555a2b2280bc04e))
32+
33+
- **resetCamera**: 'Auto zoom' with 'z' shortcut
34+
([`637eef1`](https://github.com/Kitware/QuickView/commit/637eef1e3e3e0290258053e08758f9f56cd8b5db))
35+
36+
- **tools**: Update order
37+
([`a5d1f20`](https://github.com/Kitware/QuickView/commit/a5d1f20d22ca3dfebcf630704f48df3aa9964db1))
38+
39+
- **var type**: Make types easier to read
40+
([`bea4536`](https://github.com/Kitware/QuickView/commit/bea453685372c334b8a9a05daa0790b72665a8ed))
41+
42+
- **Variable selection**: Replace Field by Variable
43+
([`339caef`](https://github.com/Kitware/QuickView/commit/339caef8dc68b756944efcbe1698654c2664b347))
44+
45+
### Documentation
46+
47+
- **dev**: Update command line
48+
([`016fe42`](https://github.com/Kitware/QuickView/commit/016fe4289226cc3b80ae3a60b7f0a0e3dbaa84ce))
49+
50+
### Features
51+
52+
- Adding jupyter extension to run as app
53+
([`788ba23`](https://github.com/Kitware/QuickView/commit/788ba23aa01b2c8493e5d840ff61594f4a250d4a))
54+
55+
556
## v1.2.1 (2025-12-11)
657

758
### Bug Fixes

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "e3sm-quickview"
3-
version = "1.2.1"
3+
version = "1.3.0"
44
description = "An application to explore/analyze data for atmosphere component for E3SM"
55
authors = [
66
{name = "Kitware Inc."},

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "app"
3-
version = "1.2.1"
3+
version = "1.3.0"
44
description = "QuickView: Visual Analyis for E3SM Atmosphere Data"
55
authors = ["Kitware"]
66
license = ""

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
},
88
"package": {
99
"productName": "QuickView",
10-
"version": "1.2.1"
10+
"version": "1.3.0"
1111
},
1212
"tauri": {
1313
"allowlist": {

src/e3sm_quickview/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""QuickView: Visual Analysis for E3SM Atmosphere Data."""
22

3-
__version__ = "1.2.1"
3+
__version__ = "1.3.0"
44
__author__ = "Kitware Inc."
55
__license__ = "Apache-2.0"

0 commit comments

Comments
 (0)