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
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,5 @@ MiniKick_Backup_*.json
*dist/
*resources/
.agents/
*tests/
tests/
tools/
9 changes: 9 additions & 0 deletions build.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
@echo off
chcp 65001 > nul
cd /d "%~dp0"
uv run python tools/build_manager.py %*
if %ERRORLEVEL% NEQ 0 (
echo.
echo [ERROR] Hubo un error en la ejecución.
pause
)
15 changes: 10 additions & 5 deletions pyinstaller.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Comando recomendado para compilar el ejecutable usando la especificación del proyecto (MiniKick.spec):
uv run pyinstaller --clean --noconfirm MiniKick.spec

# Si deseas compilar usando python directamente:
# uv run python -m PyInstaller --clean --noconfirm MiniKick.spec
# =======================================================
# COMPILACIÓN Y GESTIÓN DE BUILD DE MINIKICK
# =======================================================
# 1. Usando el script automatizado (Recomendado):
.\build.bat
# o directamente con python:
uv run python tools/build_manager.py

# 2. Compilación directa con PyInstaller:
uv run pyinstaller --clean --noconfirm MiniKick.spec
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "MiniKick"
version = "1.4.9"
version = "1.5.3"
description = "El centro de control definitivo, modular y ligero para streamers en Kick.com"
readme = "README.md"
requires-python = ">=3.10"
Expand Down
Loading
Loading