Compare commits
2 commits
4c72346aa6
...
e9ef79e80b
| Author | SHA1 | Date | |
|---|---|---|---|
| e9ef79e80b | |||
| a12cf396fd |
5 changed files with 43 additions and 28 deletions
|
|
@ -1,3 +1,9 @@
|
||||||
|
## 0.1.0a11 (2025-02-19)
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
|
||||||
|
- if mock is active, do not search rbw or bw
|
||||||
|
|
||||||
## 0.1.0a10 (2025-02-17)
|
## 0.1.0a10 (2025-02-17)
|
||||||
|
|
||||||
### Fix
|
### Fix
|
||||||
|
|
|
||||||
|
|
@ -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.0a10"
|
version = "0.1.0a11"
|
||||||
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"
|
||||||
|
|
|
||||||
|
|
@ -55,6 +55,7 @@ class RougailUserDataBitwarden:
|
||||||
self.leader_informations = {}
|
self.leader_informations = {}
|
||||||
bitwarden_command_line = None
|
bitwarden_command_line = None
|
||||||
one_is_find = False
|
one_is_find = False
|
||||||
|
if 'ROUGAIL_BITWARDEN_MOCK_ENABLE' not in environ:
|
||||||
if which('rbw'):
|
if which('rbw'):
|
||||||
one_is_find = True
|
one_is_find = True
|
||||||
try:
|
try:
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,4 @@
|
||||||
|
{
|
||||||
|
"errors": [],
|
||||||
|
"warnings": []
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,4 @@
|
||||||
|
{
|
||||||
|
"rougail.username": "bitwarden_username",
|
||||||
|
"rougail.secret": "bitwarden_password"
|
||||||
|
}
|
||||||
Loading…
Reference in a new issue