Bread_Editor/README.md

34 lines
1.6 KiB
Markdown
Raw Normal View History

2024-12-01 14:14:23 +01:00
# Bread Editor
I couldn't find any binary editor with that you can edit single bits,\
but I needed to write some binary data in a digital logic simulator.\
So I just made one.
### Features
| Feature | Description | State |
|-----------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------|
| Editing of basic image formats /<br>"Syntax Highlighting" | If you have a very simple black/white image format<br/>where single bits control the color,<br/>the editor can highlight the enabled bits. | <input type="checkbox" disabled checked /> Implemented |
2024-12-07 20:15:28 +01:00
## Setup
2024-12-08 15:48:32 +01:00
This program was made for Linux.\
It may work on Windows or Mac too, but it was not tested on these systems.\
To install the editor, you just have to clone the repository,\
convert the ui files to python files and install the editor using pip.\
2024-12-07 20:15:28 +01:00
You can do that using these commands:
```bash
git clone https://teapot.informationsanarchistik.de/Wobbl/Bread_Editor.git
2024-12-07 20:15:28 +01:00
cd Bread_Editor
python3 gui/raw_ui/ui_to_py.py
pip install .
2024-12-07 20:15:28 +01:00
```
If you have already set up git for ssh, you can also clone the repository like this:
```bash
git clone git git@teapot.informationsanarchistik.de:Wobbl/Bread_Editor.git
```
You can now start the editor by typing in the terminal: `bread_editor`