Skip to content

Commit

Permalink
chore: 2.6.2 release
Browse files Browse the repository at this point in the history
bug fix concerning attributes not taken into account in configuration file
  • Loading branch information
sgrimault committed Mar 2, 2024
1 parent 455e18c commit 3d37cd2
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## [2.6.2](https://github.com/PnX-SI/gn_mobile_occtax/releases/tag/2.6.2) (2024-03-02, release)

### 🐛 Corrections

* Ignorer les attributs inconnus dans le fichier de configuration (https://github.com/PnX-SI/gn_mobile_occtax/issues/248).

### ⚠️ Notes de version

* Code de version : 3220

## [2.6.1](https://github.com/PnX-SI/gn_mobile_occtax/releases/tag/2.6.1) (2023-05-24, release)

### 🐛 Corrections
Expand Down
4 changes: 2 additions & 2 deletions occtax/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ android {
applicationId "fr.geonature.occtax2"
minSdkVersion 26
targetSdkVersion 33
versionCode 3210
versionName "2.6.1"
versionCode 3220
versionName "2.6.2"
buildConfigField "String", "BUILD_DATE", "\"" + new Date().getTime() + "\""
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
archivesBaseName = project.name + "-" + versionName
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ class OnAppSettingsJsonReaderListenerImpl :
"save_default_values" -> saveDefaultValues = reader.nextBooleanOrElse { false }
"information" -> information.addAll(readPropertySettingsAsList(reader))
"counting" -> counting.addAll(readPropertySettingsAsList(reader))
else -> reader.skipValue()
}
}

Expand Down
1 change: 1 addition & 0 deletions occtax/src/test/resources/fixtures/settings_occtax.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
]
},
"nomenclature": {
"additional_fields": true,
"save_default_values": true,
"information": [
"METH_OBS",
Expand Down

0 comments on commit 3d37cd2

Please sign in to comment.