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
4 changes: 1 addition & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,15 +70,13 @@ jobs:
ARCHIVE="selynt_panel.tar.gz"

echo "Verificando ausência de arquivos dev/build..."
FORBIDDEN="node_modules|assets-src|package\.json|package-lock|build-assets|assets\.manifest|\.github|\.gitignore|\./install\.sh$|README\.md|CHANGELOG\.md"
FORBIDDEN="node_modules|assets-src|package\.json|package-lock|build-assets|assets\.manifest|\.github|\.gitignore|^\./install\.sh$|README\.md|CHANGELOG\.md"
if tar -tzf "$ARCHIVE" | grep -qE "$FORBIDDEN"; then
echo "ERRO: arquivos indevidos encontrados no pacote:"
echo "ERRO: arquivos indevidos encontrados no pacote:"
tar -tzf "$ARCHIVE" | grep -E "$FORBIDDEN"
exit 1
fi
echo "OK"
echo "OK"

echo "Verificando assets minificados..."
for f in panel.min.css panel.min.js script.min.js; do
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [1.1.1] — 2026-03-29

### Corrigido
- **config.html: seção Node.js oculta por padrão** — card "Versões do Node.js" agora só aparece se o binário Core Selynt suportar detecção de Node.js; binários Rust não exibem a seção.
- **create.html: campo de versão Node.js visível com Rust** — ao selecionar "Binário Rust" como tipo de app, o campo de versão Node.js agora é ocultado corretamente.
- **release.yml: falso positivo no verify** — regex `install\.sh` casava com `uninstall.sh`; ancoragem corrigida para excluir apenas o instalador raiz.

## [1.1.0] — 2026-03-24

### Adicionado
Expand Down
2 changes: 1 addition & 1 deletion lib/common.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
define('SELYNT_VERSION', '1.1.0');
define('SELYNT_VERSION', '1.1.1');
define('SELYNT_BIN', dirname(__DIR__) . '/bin/core-selynt');
define('SELYNT_PLUGIN_DIR', dirname(__DIR__));

Expand Down
2 changes: 1 addition & 1 deletion plugin.conf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name=Selynt Panel
id=selynt_panel
author=NullSablex
version=1.1.0
version=1.1.1
active=yes
installed=yes
update_url=https://nullsablex.com/download/selynt_panel
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.0
1.1.1
Loading