Skip to content
Draft
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
4 changes: 2 additions & 2 deletions .zenodo.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"description": "<p>Mergin Maps mobile app is a QGIS powered app for Android and iOS devices.</p>",
"license": "GPLv3",
"title": "Mergin Maps mobile app",
"version": "2025.7.0",
"version": "2025.8.0",
"upload_type": "software",
"publication_date": "2022-02-24",
"creators": [
Expand Down Expand Up @@ -39,7 +39,7 @@
"related_identifiers": [
{
"scheme": "url",
"identifier": "https://github.com/MerginMaps/mobile/tree/2025.7.0",
"identifier": "https://github.com/MerginMaps/mobile/tree/2025.8.0",
"relation": "isSupplementTo"
},
{
Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cff-version: 2025.7.0
cff-version: 2025.8.0
message: "If you use this software, please cite it as below."
authors:
- family-names: "Martin"
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.22)

# Note: To update version use script/update_all_versions.bash
set(MM_VERSION_MAJOR "2025")
set(MM_VERSION_MINOR "7")
set(MM_VERSION_MINOR "8")
set(MM_VERSION_PATCH "0")

if (VCPKG_TARGET_TRIPLET MATCHES ".*ios.*")
Expand Down
4 changes: 2 additions & 2 deletions app/inpututils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2099,11 +2099,11 @@ QString InputUtils::invalidGeometryWarning( QgsVectorLayer *layer )

if ( QgsWkbTypes::isMultiType( layer->wkbType() ) )
{
return tr( "You need to add at least %1 point(s) to every part." ).arg( nPoints );
return tr( "You need to add at least %n point(s) to every part.", "", nPoints );
}
else
{
return tr( "You need to add at least %1 point(s)." ).arg( nPoints );
return tr( "You need to add at least %n point(s).", "", nPoints );
}
}

Expand Down
1 change: 1 addition & 0 deletions app/qml/map/MMSplittingTools.qml
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ Item {
else
{
__notificationModel.addWarning( qsTr( "You need to add at least 2 points." ) )
//__notificationModel.addWarning( __inputUtils.invalidGeometryWarning( mapTool.activeLayer ) )
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion vcpkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
},
"name": "merginmaps-mobile-app",
"description": "Collect. Share. Publish.",
"version": "2025.7.0",
"version": "2025.8.0",
"homepage": "https://github.com/merginmaps/mobile",
"dependencies": [
{
Expand Down
Loading