Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Bridgex 🌉🐍

[![Read in Spanish](https://img.shields.io/badge/read%20in-ES-red?logo=github)](https://github.com/Dev2Forge/bridgex/blob/main/translations/README_ES.md)
[![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE)
![Pepy Total Downloads](https://img.shields.io/pepy/dt/bridgex)
[![PyPI version](https://img.shields.io/pypi/v/bridgex?label=bridgex)](https://pypi.org/project/bridgex/)
[![Python Version](https://img.shields.io/badge/python-3.9%20|%203.10%20|%203.11%20|%203.12%20|%203.13-blue.svg)](https://www.python.org/downloads/)
[![Issues](https://img.shields.io/github/issues/Dev2Forge/bridgex)](https://github.com/Dev2Forge/bridgex/issues)
Expand Down Expand Up @@ -70,7 +72,13 @@ Install via pip:
pip install bridgex
```

It is recommended to use a virtual environment. To customise supported formats, edit the [`requirements.txt`](./requirements.txt) file as needed.
Start Bridgex from the terminal:

```sh
bridgex
```

It is recommended to use a virtual environment. To customise supported formats, edit the [`requirements.txt`](https://github.com/Dev2Forge/bridgex/blob/main/requirements.txt) file as needed.

---

Expand Down Expand Up @@ -135,7 +143,7 @@ Check the published versions and release notes in the [Releases](https://github.

## Dependencies and Licences

This project uses third‑party libraries, each with its own licence. See the [third‑party](./third-party/) folder for more information.
This project uses third‑party libraries, each with its own licence. See the [third‑party](https://github.com/Dev2Forge/bridgex/tree/main/third-party/) folder for more information.

---

Expand All @@ -147,6 +155,6 @@ Contributions are welcome. Please open an issue or pull request following the co

## Licence

Distributed under the [MIT Licence](./LICENSE).
Distributed under the [MIT Licence](https://github.com/Dev2Forge/bridgex/blob/main/LICENSE).

©2025 Dev2Forge
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,9 @@ packages = { find = { where = ["src"] } }
bridgex = [
"NOTICE",
"OSL/*",
"interface/assets/*",
"interface/assets/**/*",
"logs/*",
"interface/translations/*"
"interface/translations/locale/**/*.qm",
"interface/translations/others/**/*.trg",
"interface/translations/others/**/*.srm"
]
2 changes: 1 addition & 1 deletion src/bridgex/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from ._bridgex import Bridgex

__author__:str = "Tutos Rive"
__version__:str = "0.1.0"
__version__:str = "0.0.1-dev"
__license__:str = "MIT"
__description__:str = "Bridgex is a PySide6 application for file management and conversion, featuring a lite markdown editor and viewer."
__all__:list[str] = ['FileManager', 'Converter', 'Bridgex', '__author__', '__version__', '__license__', '__description__']
2 changes: 1 addition & 1 deletion src/bridgex/_bridgex.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from chromologger import Logger as Log

# Initial paths to files
log:Log = Log(f'{Path(__file__).parent}/logs/log_bridge.log')
log:Log = Log(f'{Path(__file__).parent}/logs/log_bridgex.log')

class Bridgex:
@staticmethod
Expand Down
8 changes: 4 additions & 4 deletions translations/README_ES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Bridgex 🌉🐍

[![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE)
[![Read inglés](https://img.shields.io/badge/read%20in-EN-red?logo=github)](https://github.com/Dev2Forge/bridgex/blob/main/README.md) [![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE)
[![PyPI version](https://img.shields.io/pypi/v/bridgex-md.svg)](https://pypi.org/project/bridgex-md/)
[![Python Version](https://img.shields.io/badge/python-3.9%20|%203.10%20|%203.11%20|%203.12%20|%203.13-blue.svg)](https://www.python.org/downloads/)
[![Issues](https://img.shields.io/github/issues/Dev2Forge/bridgex)](https://github.com/Dev2Forge/bridgex/issues)
Expand Down Expand Up @@ -72,7 +72,7 @@ Instalación vía pip:
pip install bridgex
```

Se recomienda el uso de un entorno virtual. Para personalizar los formatos soportados, edite el archivo [`requirements.txt`](../requirements.txt) según sus necesidades.
Se recomienda el uso de un entorno virtual. Para personalizar los formatos soportados, edite el archivo [`requirements.txt`](https://github.com/Dev2Forge/bridgex/blob/main/requirements.txt) según sus necesidades.

---

Expand Down Expand Up @@ -137,7 +137,7 @@ Consulta las versiones publicadas y notas de lanzamiento en la sección [Release

## Dependencias y licencias 📚

Este proyecto utiliza librerías de terceros, cada una con su propia licencia. Consulte la carpeta [third-party](../third-party/) para más información.
Este proyecto utiliza librerías de terceros, cada una con su propia licencia. Consulte la carpeta [third-party](https://github.com/Dev2Forge/bridgex/tree/main/third-party/) para más información.

---

Expand All @@ -149,6 +149,6 @@ Las contribuciones son bienvenidas. Por favor, abra un issue o pull request sigu

## Licencia 📄

Distribuido bajo la [Licencia MIT](./LICENSE).
Distribuido bajo la [Licencia MIT](https://github.com/Dev2Forge/bridgex/blob/main/LICENSE).

©2025 Dev2Forge