Skip to content

Commit 8ca27e1

Browse files
author
Avaxerrr
committed
v1.0.0 Final Build
1 parent 27fafd8 commit 8ca27e1

16 files changed

+19
-19
lines changed

core/directory_scanner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# directory_scanner.py
22

3-
# v0.7
3+
# v1.0.0
44

55
import os
66
from pathlib import Path

core/exclusion_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#exclusion_manager.py
22

3-
# v0.7
3+
# v1.0.0
44

55
import re
66
from typing import Set

core/tree_formatter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# tree_formatter.py
22

3-
# v0.7
3+
# v1.0.0
44

55
from typing import Dict, List, Optional
66

main.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# main.py
22

3-
# v0.7
3+
# v1.0.0
44

55

66
import os
@@ -99,22 +99,18 @@ def _save_exclusion_config(self):
9999
"""Save current exclusions and checkbox state to config.json"""
100100
patterns = self.window.exclusion_panel.get_exclusion_patterns()
101101
use_common = self.window.exclusion_panel.use_common_exclusions()
102-
print(f"[LOG] Saving exclusion config: {len(patterns)} patterns, use_common={use_common}")
103102
save_exclusion_config(patterns, use_common)
104-
print("[LOG] Exclusion config saved successfully.")
105103

106104
def update_exclusions(self):
107105
"""Update exclusion patterns from the UI and regenerate tree"""
108106
# Update exclusion manager from UI
109107
self.exclusion_manager.clear_patterns()
110108
patterns = self.window.exclusion_panel.get_exclusion_patterns()
111-
print(f"[LOG] Updating exclusions: {len(patterns)} patterns")
112109
for pattern in patterns:
113110
self.exclusion_manager.add_pattern(pattern)
114111

115112
# Set common exclusions setting
116113
use_common = self.window.exclusion_panel.use_common_exclusions()
117-
print(f"[LOG] Use common exclusions: {use_common}")
118114
self.exclusion_manager.set_use_common_exclusions(use_common)
119115

120116
# Save exclusions immediately on change

ui/components/about_dialog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# about_dialog.py
22

3-
# v0.7
3+
# v1.0.0
44

55
from PySide6.QtWidgets import QDialog, QVBoxLayout, QLabel, QPushButton, QTextBrowser, QSpacerItem, QSizePolicy
66
from PySide6.QtCore import Qt

ui/components/address_bar.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# address_bar.py
22

3-
# v0.7
3+
# v1.0.0
44

55
from PySide6.QtWidgets import QWidget, QHBoxLayout, QLineEdit, QPushButton, QFileDialog
66
from PySide6.QtGui import QIcon

ui/components/exclusion_panel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# exclusion_panel.py
22

3-
# v0.7
3+
# v1.0.0
44

55
from PySide6.QtWidgets import (QWidget, QVBoxLayout, QHBoxLayout,
66
QPushButton, QListWidget, QLineEdit,

ui/components/export_panel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#export_panel.py
22

3-
# v0.7
3+
# v1.0.0
44

55
from PySide6.QtWidgets import (QWidget, QHBoxLayout, QPushButton,
66
QFileDialog, QMessageBox)

ui/components/menu_bar.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# menu_bar.py
22

3-
# v0.7
3+
# v1.0.0
44

55
from PySide6.QtWidgets import QMenuBar, QMenu
66
from PySide6.QtCore import Signal

ui/components/search_panel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#search_panel.py
22

3-
# v0.7
3+
# v1.0.0
44

55
from PySide6.QtWidgets import (QWidget, QHBoxLayout, QLineEdit,
66
QPushButton, QCheckBox, QLabel)

0 commit comments

Comments
 (0)