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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Le format est basé sur [Keep a Changelog](https://keepachangelog.com/) et ce pr
### Fixed

- `Boundingbox` : Mise en place de valeur maximale et minimale pour les bbox en wms-r.
- `Style` : Ajout des préfix ogc pour le title et l'abstract sur le wmts

## [3.0.0] - 2026-03-12

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ Installations système requises (listées dans le paquet debian, installées ave

Depuis [GitHub](https://github.com/rok4/core-cpp/releases/) :
```
curl -o librok4-dev.deb https://github.com/rok4/core-cpp/releases/download/x.y.z/librok4-base-x.y.z-ubuntu-20.04-amd64.deb
curl -o librok4-dev.deb https://github.com/rok4/core-cpp/releases/download/x.y.z/librok4-base-x.y.z-ubuntu-24.04-amd64.deb
# or, with ceph driver
curl -o librok4-dev.deb https://github.com/rok4/core-cpp/releases/download/x.y.z/librok4-ceph-x.y.z-ubuntu-20.04-amd64.deb
curl -o librok4-dev.deb https://github.com/rok4/core-cpp/releases/download/x.y.z/librok4-ceph-x.y.z-ubuntu-24.04-amd64.deb

apt install ./librok4-dev.deb
```
Expand Down
4 changes: 2 additions & 2 deletions src/style/Style.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -312,10 +312,10 @@ void Style::add_node_wmts(ptree& parent, bool default_style) {
}

for (std::string t : titles) {
node.add("Title", t);
node.add("ows:Title", t);
}
for (std::string a : abstracts) {
node.add("Abstract", a);
node.add("ows:Abstract", a);
}

if ( keywords.size() != 0 ) {
Expand Down
Loading