Compare commits
2 commits
b5c845f90c
...
60ee2a6feb
| Author | SHA1 | Date | |
|---|---|---|---|
| 60ee2a6feb | |||
| 6feebea664 |
3 changed files with 7 additions and 4 deletions
|
|
@ -1,3 +1,9 @@
|
||||||
|
## 0.2.0a2 (2024-12-11)
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
|
||||||
|
- user_data and output are not plugins
|
||||||
|
|
||||||
## 0.2.0a1 (2024-11-28)
|
## 0.2.0a1 (2024-11-28)
|
||||||
|
|
||||||
### Fix
|
### Fix
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "rougail.cli"
|
name = "rougail.cli"
|
||||||
version = "0.2.0a1"
|
version = "0.2.0a2"
|
||||||
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
description = "CLI for Rougail"
|
description = "CLI for Rougail"
|
||||||
|
|
|
||||||
|
|
@ -64,9 +64,6 @@ def _main():
|
||||||
output_name = rougailconfig["step.output"]
|
output_name = rougailconfig["step.output"]
|
||||||
# structural
|
# structural
|
||||||
rougail = Rougail(rougailconfig)
|
rougail = Rougail(rougailconfig)
|
||||||
for user_data_name in user_data_names:
|
|
||||||
rougail.converted.plugins.append("user_data_" + user_data_name)
|
|
||||||
rougail.converted.plugins.append("output_" + output_name)
|
|
||||||
config = rougail.get_config()
|
config = rougail.get_config()
|
||||||
# data user
|
# data user
|
||||||
if not user_data_names:
|
if not user_data_names:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue