Compare commits
No commits in common. "5ce01380bffdc8777b5fbe9909dbe52b4ad24b7b" and "8aacb91433b13ddcf83142e7817c35132e7377ba" have entirely different histories.
5ce01380bf
...
8aacb91433
4 changed files with 10 additions and 16 deletions
|
|
@ -1,9 +1,3 @@
|
|||
## 0.2.0a32 (2025-11-08)
|
||||
|
||||
### Fix
|
||||
|
||||
- execute interactive mode too
|
||||
|
||||
## 0.2.0a31 (2025-11-07)
|
||||
|
||||
### Fix
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
|
|||
|
||||
[project]
|
||||
name = "rougail.cli"
|
||||
version = "0.2.0a32"
|
||||
version = "0.2.0a31"
|
||||
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
||||
readme = "README.md"
|
||||
description = "CLI for Rougail"
|
||||
|
|
|
|||
|
|
@ -228,14 +228,14 @@ def load_user_datas(rougailconfig):
|
|||
err_warn[level].extend(datas)
|
||||
for layer_name, interactive_user_data in interactive_user_datas.items():
|
||||
for layer, rougail_user_datas in interactive_user_data.items():
|
||||
if has_layers and len(layers) > 1:
|
||||
if has_layers:
|
||||
if len(layers) > 1:
|
||||
subconfig = subconfig.config("_".join(layer))
|
||||
subconfig.owner.set(subconfig.path())
|
||||
for user_data in rougail_user_datas(
|
||||
subconfig,
|
||||
rougailconfig=rougailconfig,
|
||||
).run():
|
||||
if has_layers:
|
||||
layer_datas[layer_name].setdefault(user_data_name, []).append(user_data["source"])
|
||||
|
||||
return layer_datas, metaconfig, subconfig, err_warn
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
__version__ = "0.2.0a32"
|
||||
__version__ = "0.2.0a31"
|
||||
|
|
|
|||
Loading…
Reference in a new issue