1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
_Leia-me em [português](README_pt_BR.md). Léame en [español](README_es.md)._
# wiRedPanda    [](https://codecov.io/gh/GIBIS-UNIFESP/wiRedPanda) <a href="https://hosted.weblate.org/engage/wiredpanda/"><img src="https://hosted.weblate.org/widget/wiredpanda/svg-badge.svg" alt="Translation status" /></a>
wiRedPanda is a free software designed to help students learn about logic circuits and simulate them in an easy and friendly way.
The main features of the software are:
- Works on Windows, macOS and Linux;
- Real time logic simulation;
- User-friendly interface;
- It's intuitive and easy to use;
- Export your work as an image or a PDF.

## Downloads
Compiled binaries for Windows, Linux and macOS are available on the [releases page](https://github.com/GIBIS-UNIFESP/wiRedPanda/releases).
## Building
```bash
git clone https://github.com/GIBIS-UNIFESP/wiredpanda
cd wiredpanda
cmake -B build
cmake --build build --config Release
```
This process could take a while. Once concluded, the binary will be located at `build/wiredpanda` on Linux and macOS, or `build/wiredpanda.exe` on Windows.
For detailed build instructions, check the [BUILD.md](BUILD.md) or visit the [wiki](https://github.com/GIBIS-UNIFESP/wiRedPanda/wiki/How-to-setup-environment).
## Translation
You can help translate wiRedPanda into other languages. We use the [Weblate](https://hosted.weblate.org/projects/wiredpanda/wiredpanda) platform to manage translations.
Alternatively, you can also contribute by forking this repository and adding translations manually.
The translations are located in the [app/resources/translations](https://github.com/GIBIS-UNIFESP/wiRedPanda/tree/master/app/resources/translations) directory.
<a href="https://hosted.weblate.org/engage/wiredpanda/">
<img src="https://hosted.weblate.org/widget/wiredpanda/wiredpanda/multi-auto.svg" alt="Translation status" />
</a>
## Stars
<a href="https://www.star-history.com/#GIBIS-UNIFESP/wiRedPanda&Date">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/svg?repos=GIBIS-UNIFESP/wiRedPanda&type=Date&theme=dark" />
<source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/svg?repos=GIBIS-UNIFESP/wiRedPanda&type=Date" />
<img alt="Star History Chart" src="https://api.star-history.com/svg?repos=GIBIS-UNIFESP/wiRedPanda&type=Date" />
</picture>
</a>
[](https://repology.org/project/wiredpanda/versions)
## Licensing
wiRedPanda is licensed under the [GNU General Public License, Version 3.0](http://www.gnu.org/licenses/).
See [`LICENSE`](LICENSE) for the full license text.
```text
Copyright (C) 2025 - Davi Morales, Fábio Cappabianco, Lucas Lellis, Rodrigo Torres and Vinícius Miguel.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see http://www.gnu.org/licenses/.
```
|