Skip to content

Commit

Permalink
Merge branch 'develop' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
CPrescher committed Oct 31, 2023
2 parents 14a11a6 + f5846e1 commit 8dd252e
Show file tree
Hide file tree
Showing 6 changed files with 883 additions and 832 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Coverage Status](https://coveralls.io/repos/github/Luindil/Glassure/badge.svg?branch=develop)](https://coveralls.io/github/Luindil/Glassure?branch=develop)
[![codecov](https://codecov.io/gh/CPrescher/Glassure/graph/badge.svg?token=H7XYCD78TT)](https://codecov.io/gh/CPrescher/Glassure)
[![DOI](https://zenodo.org/badge/24698239.svg)](https://zenodo.org/badge/latestdoi/24698239)

# Glassure
Expand Down
6 changes: 6 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 1.4.2 (2023/10/31)

### Bug fixes:
- not specifically dependent on pyside anymore, glassure should now also work with pyqt6, pyqt5 or pyside2, default
is still pyside6

## 1.4.1 (2023/10/27)

### Bug fixes:
Expand Down
2 changes: 1 addition & 1 deletion glassure/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# -*- coding: utf8 -*-
__version__ = '1.4.1'
__version__ = '1.4.2'

3 changes: 1 addition & 2 deletions glassure/gui/controller/glassure_controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import os

from PySide6.QtCore import Slot
from qtpy import QtCore, QtWidgets
import pyqtgraph as pg

Expand Down Expand Up @@ -165,7 +164,7 @@ def delete_element_btn_clicked(self):
def update_sample(self, sample: Sample):
self.model.sample_config = sample

@Slot()
@QtCore.Slot()
def update_model(self):
sample_config = self.main_widget.get_sample_config()
transform_config = self.main_widget.get_transform_config()
Expand Down
Loading

0 comments on commit 8dd252e

Please sign in to comment.