Compare commits
2 commits
7efcca3fb8
...
c006dea8c8
| Author | SHA256 | Date | |
|---|---|---|---|
| c006dea8c8 | |||
| 8506ec673b |
18 changed files with 69 additions and 5 deletions
|
|
@ -1,3 +1,9 @@
|
|||
## 0.1.0a5 (2026-01-21)
|
||||
|
||||
### Fix
|
||||
|
||||
- update tests
|
||||
|
||||
## 0.1.0a4 (2025-12-30)
|
||||
|
||||
### Fix
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
|
|||
|
||||
[project]
|
||||
name = "rougail.user_data_commandline"
|
||||
version = "0.1.0a4"
|
||||
version = "0.1.0a5"
|
||||
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
||||
readme = "README.md"
|
||||
description = "Rougail user_data Bitwarden"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
"""
|
||||
Silique (https://www.silique.fr)
|
||||
Copyright (C) 2025
|
||||
Copyright (C) 2025-2026
|
||||
|
||||
This program is free software: you can redistribute it and/or modify it
|
||||
under the terms of the GNU Lesser General Public License as published by the
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
__version__ = "0.1.0a4"
|
||||
__version__ = "0.1.0a5"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
"""
|
||||
Silique (https://www.silique.fr)
|
||||
Copyright (C) 2025
|
||||
Copyright (C) 2025-2026
|
||||
|
||||
This program is free software: you can redistribute it and/or modify it
|
||||
under the terms of the GNU Lesser General Public License as published by the
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
"""Internationalisation utilities
|
||||
Silique (https://www.silique.fr)
|
||||
Copyright (C) 2025
|
||||
Copyright (C) 2025-2026
|
||||
|
||||
This program is free software: you can redistribute it and/or modify it
|
||||
under the terms of the GNU Lesser General Public License as published by the
|
||||
|
|
|
|||
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"variable has property disabled, it will be ignored when loading from Commandline"
|
||||
],
|
||||
[
|
||||
"family \"condition\" (a condition) has property disabled, so cannot access to \"variable\" (a variable), it will be ignored when loading from Commandline"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": [
|
||||
[
|
||||
"family \"condition\" (a condition) has property disabled, so cannot access to \"variable\" (a variable), it will be ignored when loading from Commandline"
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
[
|
||||
"--rougail.condition",
|
||||
"--rougail.variable",
|
||||
"string1"
|
||||
]
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
[
|
||||
"--rougail.variable",
|
||||
"string1"
|
||||
]
|
||||
|
|
@ -0,0 +1 @@
|
|||
{}
|
||||
|
|
@ -0,0 +1 @@
|
|||
{}
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": []
|
||||
}
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"errors": [],
|
||||
"warnings": []
|
||||
}
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
[
|
||||
"--rougail.family1.var",
|
||||
"string1",
|
||||
"--rougail.family2.var",
|
||||
"string1"
|
||||
]
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
[
|
||||
"--rougail.family1.var",
|
||||
"string1",
|
||||
"--rougail.family2.var",
|
||||
"string1"
|
||||
]
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"rougail.family1.var": "string1",
|
||||
"rougail.family2.var": "string1"
|
||||
}
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"rougail.family1.var": "string1",
|
||||
"rougail.family2.var": "string1"
|
||||
}
|
||||
Loading…
Reference in a new issue