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
42 changes: 31 additions & 11 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,42 @@
# CHANGELOG
# Changelog

The format is based on [Keep a Changelog](https://keepachangelog.com/), and this project adheres to [Semantic Versioning](https://semver.org/).
## 0.1.3 - 2025-04-15

<!--
### Fixed

Unreleased
- updating CI so that plugin is automatically pushed to QGIS plugin repository on release

## 0.1.2 - 2025-04-04

## version_tag - YYYY-DD-mm

### Added

### Changed
- version bump ([88a8231](https://github.com/Loop3D/plugin_loopstructural/commit/88a82314da6fbb6a5f5ad334bff4156a7b3872c7))

## 0.1.1 - 2025-04-04



- add icon ([5da68ea](https://github.com/Loop3D/plugin_loopstructural/commit/5da68ea271ac8d3091c0936b2a30e8c3bbcb0100))
- adding pyvista viewer ([9be5a8d](https://github.com/Loop3D/plugin_loopstructural/commit/9be5a8dedc985050f2e408aee638c7d4c006b432))
- allow json serialisation + pass fault parameters correctly ([84a970a](https://github.com/Loop3D/plugin_loopstructural/commit/84a970a672704ff0e88ca7cc4e05c8a6a793ff59))
- cast fault name as string to avoid no points in fault error ([9ba7e69](https://github.com/Loop3D/plugin_loopstructural/commit/9ba7e690f6f155adf05f733f671858f1f07e0703))
- change icon path ([77eb53b](https://github.com/Loop3D/plugin_loopstructural/commit/77eb53be95ffab87e67e2a93afa828f5443c073d))
- change loopstructural to icon rather than menu bar. Make sure plugin is unloaded and plays nicely with other docks ([40552cb](https://github.com/Loop3D/plugin_loopstructural/commit/40552cb21a629488cde3e167eff7648d49620c55))
- dip dir strike-90 not +90 ([839dee3](https://github.com/Loop3D/plugin_loopstructural/commit/839dee385b2984eb53469938620222ca5320f509))
- downgrade warnings to info ([f48a9bd](https://github.com/Loop3D/plugin_loopstructural/commit/f48a9bd08e9cb81fc52444c8d6f9456261a15d6b))
- increase version compatibility to 3.28 ([e8d8a31](https://github.com/Loop3D/plugin_loopstructural/commit/e8d8a3157943a44c7e4441d76894b9a85be53777))
- passing colour from gui to strat column ([2e406e4](https://github.com/Loop3D/plugin_loopstructural/commit/2e406e4d34e6ac919b84cdb20a959036ea0d5d55))
- use qgs project to store model params. Update ([51ee5db](https://github.com/Loop3D/plugin_loopstructural/commit/51ee5db4e3640cadc421c4714ef58df7d38e7300))


### Docs

- updating metadata urls ([7e65b8b](https://github.com/Loop3D/plugin_loopstructural/commit/7e65b8bb684f45d1657af59374c95cc2f135783e))

### Removed
## 0.1.0 (2025-02-21)

-->

## 0.1.0 - 2024-09-18
### Fixed

- First release
- Generated with the [QGIS Plugins templater](https://oslandia.gitlab.io/qgis/template-qgis-plugin/)
- bump version ([050947c](https://github.com/Loop3D/plugin_loopstructural/commit/050947ca6468291ef40c947893215c6f7eb0becc))
6 changes: 5 additions & 1 deletion loopstructural/gui/modelling/modelling_widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -782,9 +782,12 @@ def pick_color():
return pick_color

for i, (unit, value) in enumerate(self._getSortedStratigraphicColumn()):
# Add stretch factor to first column


label = QLineEdit(unit)
label.editingFinished.connect(lambda unit=unit, label=label: self.stratigraphicColumnUnitNameChanged(unit, label.text()))
spin_box = QDoubleSpinBox(maximum=10000, minimum=0)
spin_box = QDoubleSpinBox(maximum=100000, minimum=0)
spin_box.setValue(value['thickness'])
order = QLabel()
order.setText(str(value['order']))
Expand Down Expand Up @@ -828,6 +831,7 @@ def pick_color():
lambda value, unit=unit: self.stratigraphicColumnRemoveClicked(unit)
)
self.stratigraphicColumnContainer.addWidget(remove_button, i, 6)

self.updateGroups()
def stratigraphicColumnChanged(self, text, unit):
self._units[unit]['contact'] = text
Expand Down