Skip to content

Commit effa278

Browse files
teste 7$
1 parent e8398e3 commit effa278

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build-linux-legacy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
-n docviewer \
106106
-v 1.1.0 \
107107
--architecture amd64 \
108-
--description "DocViewer Desktop App" \
108+
--description "DocViewer Desktop Editor de Documentos" \
109109
--license "GNU General Public License v3.0" \
110110
--maintainer "Ernesto Alves <ernesto487dev@gmail.com>" \
111111
--url "https://github.com/${{ github.repository }}" \
@@ -117,7 +117,7 @@
117117
- name: Windows – Zip artifacts
118118
if: matrix.os == 'windows-latest'
119119
run: |
120-
Compress-Archive -Path dist\DocViewer\* -DestinationPath dist\docviewer-windows.zip
120+
Compress-Archive -Path dist\DocViewer.exe -DestinationPath dist\docviewer-windows.zip
121121
shell: pwsh
122122

123123
# 7) Criar Release (somente Linux)

DocViewerDesktop/ui/ui_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from PySide6.QtSvg import QSvgRenderer
66

77
def loadSvgIconColored(file_path, width=80, height=80, color=None):
8-
"""Transforma um arquivo SVG em QPixmap, aplicando uma cor se fornecida."""
8+
"""Transforma um arquivo SVG em QPixmap, aplicando uma cor se fornecida.."""
99
svg_renderer = QSvgRenderer(file_path)
1010
if not svg_renderer.isValid():
1111
raise ValueError(f"Arquivo SVG inválido: {file_path}")

0 commit comments

Comments
 (0)