Skip to content

Commit b2f3570

Browse files
authored
Merge pull request #146 from Geode-solutions/next
Next
2 parents 9f391dd + e77a4ed commit b2f3570

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
# CHANGELOG
22

33

4+
## v5.7.3-rc.1 (2025-05-20)
5+
6+
### Bug Fixes
7+
8+
- **blueprint_models**: Set current_index
9+
([`1e831c7`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/1e831c792d99bd812234e7a03cab25902dc6c9fb))
10+
11+
412
## v5.7.2 (2025-05-19)
513

614

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
55

66
[project]
77
name = "OpenGeodeWeb-Back"
8-
version = "5.7.2"
8+
version = "5.7.3-rc.1"
99
dynamic = ["dependencies"]
1010
authors = [
1111
{ name="Geode-solutions", email="[email protected]" },

src/opengeodeweb_back/routes/models/blueprint_models.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,12 @@ def uuid_to_flat_index():
2727
tree = ET.parse(vtm_file_path)
2828
root = tree.find("vtkMultiBlockDataSet")
2929
uuid_to_flat_index = {}
30-
current_index = 1
30+
current_index = 0
3131

3232
for elem in root.iter():
3333
if "uuid" in elem.attrib and elem.tag == "DataSet":
3434
uuid_to_flat_index[elem.attrib["uuid"]] = current_index
35+
3536
current_index += 1
3637

3738
return flask.make_response(

0 commit comments

Comments
 (0)