Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 = 0.1.7
current_version = 0.1.8
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "quickview"
version = "0.1.7"
version = "0.1.8"
description = "An application to explore/analyze data for atmosphere component for E3SM"
authors = [
{name = "Kitware Inc."},
Expand Down
2 changes: 1 addition & 1 deletion quickview/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""QuickView: Visual Analysis for E3SM Atmosphere Data."""

__version__ = "0.1.7"
__version__ = "0.1.8"
__author__ = "Kitware Inc."
__license__ = "Apache-2.0"
2 changes: 1 addition & 1 deletion quickview/ui/slice_selection.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ def __init__(self, source: EAMVisSource, view_manager: ViewManager):
)
# v2.VDivider(classes="my-4")

with v2.VRow(classes="text-center align-center text-subtitle-1 pt-2 pa-2"):
with v2.VRow(classes="text-center align-center text-subtitle-1 pt-4 px-2"):
with v2.VCol(cols=3, classes="py-0"):
v2.VTextField(
v_model=("cliplat[0]",),
Expand Down
1 change: 1 addition & 0 deletions quickview/ui/view_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ def __init__(
close_on_content_click=False,
persistent=True,
no_click_animation=True,
offset_y=True,
**kwargs,
)
with self:
Expand Down
5 changes: 3 additions & 2 deletions quickview/view_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -620,8 +620,9 @@ def update_log_scale(self, index, value):
else:
coltrfunc.MapControlPointsToLinearSpace()
coltrfunc.UseLogScale = 0
# Regenerate colorbar after log scale change
self.generate_colorbar_image(index)
# Note: We don't regenerate the colorbar image here because the color gradient
# itself doesn't change with log scale - only the data mapping changes.
# The colorbar always shows a linear color progression.

# Sync all color configuration changes back to state
self.sync_color_config_to_state(index, context)
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "app"
version = "0.1.7"
version = "0.1.8"
description = "QuickView: Visual Analyis for E3SM Atmosphere Data"
authors = ["Kitware"]
license = ""
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
},
"package": {
"productName": "QuickView",
"version": "0.1.7"
"version": "0.1.8"
},
"tauri": {
"allowlist": {
Expand Down
Loading