Skip to content

Commit 8a55cc2

Browse files
committed
Added png from SVG banner image, updated version.
1 parent 4d80983 commit 8a55cc2

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Modernized python bluebox DTMF tone generator / dialer.
44

5-
![BlueBox Phreaking](https://github.com/zeyus/Python3BlueBox/assets/75656/32f0c9c7-6c44-4e6e-ba3e-d10595398dcd)
5+
![BlueBox Phreaking](./blue-box.png)
66

77

88
## How it works
@@ -44,7 +44,7 @@ pip install -e ".[dev]"
4444

4545
### Requirements
4646

47-
- Python 3.9+ (tested on 3.9 - 3.14)
47+
- Python 3.9+ (tested on 3.9 - 3.14, CI on 3.11 - 3.14)
4848
- PortAudio (for audio playback)
4949

5050
## Usage
@@ -147,5 +147,3 @@ Same thing for audio backends.
147147
Currently there are two MF implementations (DTMF and MF), and two audio backends (PyAudio and Dummy).
148148

149149
If you want to contribute, make a fork, and a branch. Please make any PR against develop.
150-
151-

blue-box.png

182 KB
Loading

bluebox/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import typing as t
22
from .freqs import BaseMF, DTMF, MF
33

4-
__version__ = '0.2.0'
4+
__version__ = '0.2.1'
55

66
_MF: t.Dict[str, t.Type[BaseMF]] = {}
77

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "mfbluebox"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
authors = [
55
{ name="zeyus", email="support@zeyus.com" },
66
]

0 commit comments

Comments
 (0)