Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
nesnoj committed Feb 21, 2020
2 parents 94f35f6 + 0d671d4 commit 0ea459b
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 4 deletions.
2 changes: 1 addition & 1 deletion __init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.0.0'
__version__ = '1.0.1'
1 change: 1 addition & 0 deletions doc/whats_new.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Eine Liste neuer Funktionen, Verbesserungen und Bugfixes für jedes Release.
:backlinks: top

.. include:: whatsnew/unreleased.rst
.. include:: whatsnew/v1.0.1.rst
.. include:: whatsnew/v1.0.0.rst
.. include:: whatsnew/v0.9.0.rst
.. include:: whatsnew/v0.2.0.rst
Expand Down
10 changes: 10 additions & 0 deletions doc/whatsnew/v1.0.1.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
v1.0.1 (21. Februar 2020)
.........................

Änderungen
~~~~~~~~~~

- Bugfix: Erträge aus Windenergie wurden falsch berechnet, wenn die
installierbare Kapazität durch Änderung der variablen Flächen nach unten
korrigiert wurden #106
- Tooltip Text Simulation-Button geändert
4 changes: 2 additions & 2 deletions locale/de-DE/labels.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -702,8 +702,8 @@ Komplexität jedoch nicht vollständig abgebildet
werden können.
'''
[[simulation_button]]
text = '''Optimierung des Energiesystems starten. Dies kann
einige Minuten in Anspruch nehmen.
text = '''Optimierung des Energiesystems starten. Dies nimmt
maximal 1 Minute in Anspruch.
'''
[[scn_button_esys_save]]
text = '''Hier können Sie Ihr Szenario speichern.
Expand Down
2 changes: 1 addition & 1 deletion locale/en/labels.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -693,7 +693,7 @@ their complexity.
'''
[[simulation_button]]
text = '''Start optimizing the power system.
This may take a few minutes.
This may take up to 1 minute.
'''
[[scn_button_esys_save]]
text = '''You can save your scenario here.
Expand Down
7 changes: 7 additions & 0 deletions static/stemp_abw/js/map_functions.js
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,13 @@ function addRePotAreaLayer() {
max: Math.round(wec_count * 4.2)
});

// post wind slider value, this is needed as the slider value is adjusted
// by area controls in free repowering scn but not updated in backend scenario,
// cf. https://github.com/rl-institut/WAM_APP_stemp_abw/issues/106
if ($('#dd_repowering').prop('value') == -1) {
ctrlScenarioPost('sl_wind', $('#sl_wind').data("ionRangeSlider").result.from);
}

}

// Remove all RE pot layers
Expand Down

0 comments on commit 0ea459b

Please sign in to comment.