Compare commits
2 commits
1088164eed
...
495b54dd0f
| Author | SHA1 | Date | |
|---|---|---|---|
| 495b54dd0f | |||
| ec3b740aea |
4 changed files with 9 additions and 3 deletions
|
|
@ -1,3 +1,9 @@
|
||||||
|
## 0.1.0a24 (2025-10-16)
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
|
||||||
|
- path is uncalculated
|
||||||
|
|
||||||
## 0.1.0a23 (2025-10-16)
|
## 0.1.0a23 (2025-10-16)
|
||||||
|
|
||||||
### Feat
|
### Feat
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "rougail.user_data_bitwarden"
|
name = "rougail.user_data_bitwarden"
|
||||||
version = "0.1.0a23"
|
version = "0.1.0a24"
|
||||||
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
description = "Rougail user_data Bitwarden"
|
description = "Rougail user_data Bitwarden"
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
__version__ = "0.1.0a23"
|
__version__ = "0.1.0a24"
|
||||||
|
|
|
||||||
|
|
@ -130,7 +130,7 @@ class RougailUserDataBitwarden:
|
||||||
if option.isoptiondescription():
|
if option.isoptiondescription():
|
||||||
self.set_passwords(option, values)
|
self.set_passwords(option, values)
|
||||||
elif option.information.get("bitwarden", False):
|
elif option.information.get("bitwarden", False):
|
||||||
values[option.path()] = (set_password, self.leader_informations, self.bitwarden_command_line)
|
values[option.path(uncalculated=True)] = (set_password, self.leader_informations, self.bitwarden_command_line)
|
||||||
|
|
||||||
|
|
||||||
def set_password(leader_informations, bitwarden_command_line, *, option, warnings, errors):
|
def set_password(leader_informations, bitwarden_command_line, *, option, warnings, errors):
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue