1 Commits
0.6.0 ... 0.6.1

Author SHA1 Message Date
017f1c5b1c update README links, minor logging fix 2024-08-12 01:52:28 -07:00
2 changed files with 5 additions and 3 deletions

View File

@@ -46,11 +46,11 @@ registered locations. When necessary, `symconf` will also match and execute scri
reload apps after updating their configuration. reload apps after updating their configuration.
You can find more details on how `symconf`'s matching scheme works in You can find more details on how `symconf`'s matching scheme works in
[Matching](docs/reference/matching). [Matching](docs/reference/matching.md).
# Configuring # Configuring
Before using, you must first set up your config directory to house your config files and Before using, you must first set up your config directory to house your config files and
give `symconf` something to act on. See [Configuring](docs/reference/configuring) for give `symconf` something to act on. See [Configuring](docs/reference/configuring.md) for
details. details.
# Installation # Installation

View File

@@ -832,9 +832,11 @@ class ConfigManager:
app_template_files = list(app_template_dir.iterdir()) app_template_files = list(app_template_dir.iterdir())
num_temps = len(app_template_files)
num_themes = len(theme_map)
print( print(
color_text("├─", Fore.BLUE), color_text("├─", Fore.BLUE),
f'{app_name} :: generating ({len(app_template_files)}) template files' f'{app_name} :: generating ({num_temps}) templates from ({num_themes}) themes'
) )
for template_file in app_template_files: for template_file in app_template_files: