Version 1.7.3: Fehlende Menü-Icons ergänzt
- MainWindow: Icons für drei bislang icon-lose Menü-Aktionen gesetzt - "Alle XML-Dateien transformieren" → play-circle - "Aus Datenbank laden" → database (neu) - "Worker-Pool-Metriken" → activity (neu) - Zwei neue Feather-Icons (database, activity) ergänzt: Download-Skript, resources.qrc und resources_rc.py (via pyside6-rcc) aktualisiert Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
+1
-1
@@ -4,7 +4,7 @@
|
||||
<!-- Paket-Definition (ersetzt Product in v4) -->
|
||||
<Package
|
||||
Name="DocuMentor"
|
||||
Version="1.7.2"
|
||||
Version="1.7.3"
|
||||
Manufacturer="Vitali Graf / Software- und Datenbankentwicklung"
|
||||
UpgradeCode="F498B66C-726D-44AA-95F4-CB4FBDCEF26E"
|
||||
Language="1031"
|
||||
|
||||
@@ -263,5 +263,5 @@ HINWEISE
|
||||
|
||||
================================================================================
|
||||
Stand: Mai 2026
|
||||
Erstellt für: DocuMentor v1.7.2
|
||||
Erstellt für: DocuMentor v1.7.3
|
||||
================================================================================
|
||||
|
||||
+1
-1
@@ -10,7 +10,7 @@
|
||||
; Build-Befehl: iscc installer.iss
|
||||
|
||||
#define MyAppName "DocuMentor"
|
||||
#define MyAppVersion "1.7.2"
|
||||
#define MyAppVersion "1.7.3"
|
||||
#define MyAppPublisher "Ihr Name/Organisation"
|
||||
#define MyAppURL "https://github.com/yourusername/xsl-validator"
|
||||
#define MyAppExeName "DocuMentor.exe"
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
[project]
|
||||
name = "DocuMentor"
|
||||
version = "1.7.2"
|
||||
version = "1.7.3"
|
||||
description = "Professionelle XSL-Transformations-Verwaltung und PDF-Generierung"
|
||||
readme = "README.md"
|
||||
license = {text = "MIT"}
|
||||
|
||||
@@ -29,6 +29,8 @@ ICONS = [
|
||||
"file-plus",
|
||||
"columns",
|
||||
"sliders",
|
||||
"database",
|
||||
"activity",
|
||||
]
|
||||
|
||||
BASE_URL = "https://raw.githubusercontent.com/feathericons/feather/master/icons/{name}.svg"
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="22 12 18 12 15 21 9 3 6 12 2 12"/></svg>
|
||||
|
After Width: | Height: | Size: 239 B |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><ellipse cx="12" cy="5" rx="9" ry="3"/><path d="M21 12c0 1.66-4 3-9 3s-9-1.34-9-3"/><path d="M3 5v14c0 1.66 4 3 9 3s9-1.34 9-3V5"/></svg>
|
||||
|
After Width: | Height: | Size: 318 B |
@@ -21,5 +21,7 @@
|
||||
<file>icons/file-plus.svg</file>
|
||||
<file>icons/columns.svg</file>
|
||||
<file>icons/sliders.svg</file>
|
||||
<file>icons/database.svg</file>
|
||||
<file>icons/activity.svg</file>
|
||||
</qresource>
|
||||
</RCC>
|
||||
|
||||
+685
-634
File diff suppressed because it is too large
Load Diff
@@ -157,10 +157,13 @@ class MainWindow(
|
||||
self.ui.actionBeenden.setIcon(icon("log-out"))
|
||||
self.ui.actionEinstellungen.setIcon(icon("settings"))
|
||||
self.ui.actionVorhandene_Projekte.setIcon(icon("folder"))
|
||||
self.ui.actionAlle_XML_Dateien_transformieren.setIcon(icon("play-circle"))
|
||||
self.ui.actionAlle_XML_Dateien_neu_transformieren_force.setIcon(icon("refresh-cw"))
|
||||
self.ui.actionAus_Datenbank_laden.setIcon(icon("database"))
|
||||
self.ui.view_ref_pdf.setIcon(icon("file"))
|
||||
self.ui.view_new_pdf.setIcon(icon("file"))
|
||||
self.ui.accept_changes.setIcon(icon("check-circle"))
|
||||
self.action_worker_metrics.setIcon(icon("activity"))
|
||||
self.action_xsl_dependencies.setIcon(icon("git-branch"))
|
||||
self.action_info.setIcon(icon("info"))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user