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
7 changes: 7 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Release notes

## Version 0.5.14 (2025-06-25)

### Bugfix

* Fix bug from breaking changes in GeoMakie v0.7.13 on Windows.
* Don't show warning for unfeasible JuMP solution when the provided model is empty.

## Version 0.5.13 (2025-06-02)

### Bugfix
Expand Down
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "EnergyModelsGUI"
uuid = "737a7361-d3b7-40e9-b1ac-59bee4c5ea2d"
authors = ["Jon Vegard Venås <JonVegard.Venas@sintef.no>", "Magnus Askeland <Magnus.Askeland@sintef.no>", "Shweta Tiwari <Shweta.Tiwari@sintef.no>"]
version = "0.5.13"
version = "0.5.14"

[deps]
CairoMakie = "13f3f980-e62b-5c42-98c6-ff1f3baf88f0"
Expand Down Expand Up @@ -40,7 +40,7 @@ EnergyModelsInvestments = "0.8"
FileIO = "1.16"
GLMakie = "0.10.5"
GeoJSON = "0.8"
GeoMakie = "0.7.3"
GeoMakie = "=0.7.12"
HTTP = "1.10"
ImageMagick = "1.3"
JuMP = "1.22"
Expand Down
4 changes: 3 additions & 1 deletion src/utils_GUI/GUI_utils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,9 @@ function initialize_available_data!(gui)
end
get_ax(gui, :summary).scene.plots[1][1][] = investment_overview
else
@warn "Total quantities were not computed as model does not contain a feasible solution"
if !isempty(model)
@warn "Total quantities were not computed as model does not contain a feasible solution"
end
end

# Add case input data
Expand Down
Loading