Skip to content

Commit

Permalink
Merge pull request #1471 from OpenEnergyPlatform/hotfix-v0.16.1-updat…
Browse files Browse the repository at this point in the history
…e-navbar-on-oeo-viewer

Hotfix v0.16.1 update navbar on oeo viewer
  • Loading branch information
jh-RLI authored Nov 13, 2023
2 parents 5be2f69 + 9eddb7a commit e423652
Show file tree
Hide file tree
Showing 12 changed files with 21 additions and 166 deletions.
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.16.0
current_version = 0.16.1

[bumpversion:file:VERSION]

Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ authors:
title: "Open Energy Family - Open Energy Platform (OEP)"
type: software
license: AGPL-3.0-or-later
version: 0.16.0
version: 0.16.1
doi:
date-released: 2023-10-11
url: "https://github.com/OpenEnergyPlatform/oeplatform/"
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.16.0
0.16.1
155 changes: 0 additions & 155 deletions base/templates/base/base-wide.html

This file was deleted.

2 changes: 1 addition & 1 deletion factsheet/frontend/src/components/factsheet.js
Original file line number Diff line number Diff line change
Expand Up @@ -591,7 +591,7 @@ function Factsheet(props) {
};

const getScenarioYears = async () => {
const { data } = await axios.get(conf.toep + `scenario-bundlesrio-bundles/get_entities_by_type/`, { params: { entity_type: 'OBO.OEO_00020097' } });
const { data } = await axios.get(conf.toep + `scenario-bundles/get_entities_by_type/`, { params: { entity_type: 'OBO.OEO_00020097' } });
return data;
};

Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion factsheet/templates/factsheet/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@
{% endblock main-content-body %}

{% block after-body-bottom-js %}
<script src="{% static 'factsheet/js/main.2d13147a.js' %}"></script>
<script src="{% static 'factsheet/js/main.3c6726ea.js' %}"></script>
{% endblock after-body-bottom-js %}
2 changes: 1 addition & 1 deletion oeo_viewer/templates/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "base/base-wide.html" %}
{% extends "base/base-wide-react.html" %}
{% load static %}

{% block after-head %}
Expand Down
2 changes: 1 addition & 1 deletion oeplatform/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.16.0"
__version__ = "0.16.1"
10 changes: 10 additions & 0 deletions versions/changelogs/0_16_1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
### Changes

### Features

### Bugs

- Remove deprecated base-wide template and update the oeo-viewer index template [(#1471)](https://github.com/OpenEnergyPlatform/oeplatform/pull/1471)
- Fix typo in scenario bundle functionality that causes bug with scenario years [(#1471)](https://github.com/OpenEnergyPlatform/oeplatform/pull/1471)

### Removed

0 comments on commit e423652

Please sign in to comment.