Skip to content

Commit 73d32b4

Browse files
committed
feat: new CLI banner, hero screenshot in README
1 parent cf50132 commit 73d32b4

5 files changed

Lines changed: 18 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## [0.1.3] - 2026-03-13
4+
5+
### Changed
6+
7+
- New CLI banner (slant font, cleaner look)
8+
- Added hero screenshot to README
9+
10+
---
11+
312
## [0.1.2] - 2026-03-13
413

514
### Fixed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010

1111
[Quick Start](#quick-start) · [Commands](#commands) · [Output Formats](#output-formats)
1212

13+
<img src="assets/screenshot.png" alt="mautic-cli screenshot" width="700">
14+
1315
</div>
1416

1517
---

assets/screenshot.png

223 KB
Loading

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "mautic-cli"
7-
version = "0.1.2"
7+
version = "0.1.3"
88
description = "Control Mautic from the command line or any AI coding agent."
99
readme = "README.md"
1010
license = "MIT"

src/mautic_cli/cli.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ def is_tty() -> bool:
2020
return hasattr(sys.stdout, "isatty") and sys.stdout.isatty()
2121

2222

23-
_BANNER = """
24-
_ _ _ _
25-
_ __ ___ __ _ _ _| |_(_) ___ ___| (_)
26-
| '_ ` _ \\ / _` | | | | __| |/ __|____ / __| | |
27-
| | | | | | (_| | |_| | |_| | (__|____| (__| | |
28-
|_| |_| |_|\\__,_|\\__,_|\\__|_|\\___| \\___|_|_|
23+
_BANNER = r"""
24+
__ _ ___
25+
____ ___ ____ ___ __/ /_(_)____ _____/ (_)
26+
/ __ `__ \/ __ `/ / / / __/ / ___/ / ___/ / /
27+
/ / / / / / /_/ / /_/ / /_/ / /__ / /__/ / /
28+
/_/ /_/ /_/\__,_/\__,_/\__/_/\___/ \___/_/_/
2929
"""
3030

3131

0 commit comments

Comments
 (0)