Compare commits
2 commits
87e5db6f08
...
60c0db5d1d
| Author | SHA1 | Date | |
|---|---|---|---|
| 60c0db5d1d | |||
| 35f9d9195f |
3 changed files with 9 additions and 1 deletions
|
|
@ -1,3 +1,9 @@
|
||||||
|
## 0.1.0a2 (2025-02-17)
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
|
||||||
|
- support hidden attribut
|
||||||
|
|
||||||
## 0.1.0a1 (2025-02-17)
|
## 0.1.0a1 (2025-02-17)
|
||||||
|
|
||||||
### Fix
|
### Fix
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "rougail.structural_bitwarden"
|
name = "rougail.structural_bitwarden"
|
||||||
version = "0.1.0a1"
|
version = "0.1.0a2"
|
||||||
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
description = "Rougail structural Bitwarden"
|
description = "Rougail structural Bitwarden"
|
||||||
|
|
|
||||||
|
|
@ -65,3 +65,5 @@ class Annotator(Walk):
|
||||||
self.objectspace.informations.add(path, "bitwarden", True)
|
self.objectspace.informations.add(path, "bitwarden", True)
|
||||||
self.objectspace.informations.add(path, "default_value_makes_sense", False)
|
self.objectspace.informations.add(path, "default_value_makes_sense", False)
|
||||||
self.objectspace.properties.add(path, "novalidator", True)
|
self.objectspace.properties.add(path, "novalidator", True)
|
||||||
|
if 'force_default_on_freeze' in self.objectspace.properties.get(path):
|
||||||
|
self.objectspace.properties.remove(path, 'force_default_on_freeze')
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue