diff --git a/CLAUDE_PROJECT_README.md b/CLAUDE_PROJECT_README.md
index d6005d1..e082e89 100644
--- a/CLAUDE_PROJECT_README.md
+++ b/CLAUDE_PROJECT_README.md
@@ -4,10 +4,10 @@
## Project Overview
-- **Path**: `C:/Users/hendr/Desktop/IntelSight/Projektablage/Toolbox-Webseiten-Crawler`
-- **Files**: 23 files
-- **Size**: 98.9 KB
-- **Last Modified**: 2025-07-12 20:11
+- **Path**: `A:\GiTea\Toolbox-Webseiten-Crawler`
+- **Files**: 29 files
+- **Size**: 130.7 KB
+- **Last Modified**: 2025-07-12 22:30
## Technology Stack
@@ -37,6 +37,13 @@ src/
│ │ ├── globe.svg
│ │ ├── moon.svg
│ │ └── sun.svg
+ │ ├── logo/
+ │ │ ├── intelsight-full-dark.svg
+ │ │ ├── intelsight-full-light.svg
+ │ │ ├── intelsight-icon-transparent-dark.svg
+ │ │ ├── intelsight-name-dark.svg
+ │ │ ├── intelsight-name-light.svg
+ │ │ └── intelsight-name-transparent-dark.svg
│ └── styles/
│ ├── dark_theme.py
│ └── light_theme.py
@@ -76,3 +83,4 @@ This project is managed with Claude Project Manager. To work with this project:
- README updated on 2025-07-12 20:10:48
- README updated on 2025-07-12 20:11:07
- README updated on 2025-07-12 20:11:21
+- README updated on 2025-07-12 22:30:56
diff --git a/src/core/__pycache__/__init__.cpython-310.pyc b/src/core/__pycache__/__init__.cpython-310.pyc
index 967027e..825bedc 100644
Binary files a/src/core/__pycache__/__init__.cpython-310.pyc and b/src/core/__pycache__/__init__.cpython-310.pyc differ
diff --git a/src/core/__pycache__/web_crawler.cpython-310.pyc b/src/core/__pycache__/web_crawler.cpython-310.pyc
index 7544fa5..21c058b 100644
Binary files a/src/core/__pycache__/web_crawler.cpython-310.pyc and b/src/core/__pycache__/web_crawler.cpython-310.pyc differ
diff --git a/src/resources/logo/intelsight-full-dark.svg b/src/resources/logo/intelsight-full-dark.svg
deleted file mode 100644
index 0e225d0..0000000
--- a/src/resources/logo/intelsight-full-dark.svg
+++ /dev/null
@@ -1,54 +0,0 @@
-
-
\ No newline at end of file
diff --git a/src/resources/logo/intelsight-full-light.svg b/src/resources/logo/intelsight-full-light.svg
deleted file mode 100644
index 353b693..0000000
--- a/src/resources/logo/intelsight-full-light.svg
+++ /dev/null
@@ -1,54 +0,0 @@
-
-
\ No newline at end of file
diff --git a/src/resources/logo/intelsight-icon-transparent-dark.svg b/src/resources/logo/intelsight-icon-transparent-dark.svg
deleted file mode 100644
index fcbed9f..0000000
--- a/src/resources/logo/intelsight-icon-transparent-dark.svg
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
\ No newline at end of file
diff --git a/src/resources/logo/intelsight-name-dark.svg b/src/resources/logo/intelsight-name-dark.svg
index 5efe807..8709055 100644
--- a/src/resources/logo/intelsight-name-dark.svg
+++ b/src/resources/logo/intelsight-name-dark.svg
@@ -1,10 +1,6 @@
\ No newline at end of file
diff --git a/src/resources/logo/intelsight-name-light.svg b/src/resources/logo/intelsight-name-light.svg
index 7e5c2dd..ffc9f1c 100644
--- a/src/resources/logo/intelsight-name-light.svg
+++ b/src/resources/logo/intelsight-name-light.svg
@@ -1,10 +1,6 @@
\ No newline at end of file
diff --git a/src/resources/logo/intelsight-name-transparent-dark.svg b/src/resources/logo/intelsight-name-transparent-dark.svg
deleted file mode 100644
index 5efe807..0000000
--- a/src/resources/logo/intelsight-name-transparent-dark.svg
+++ /dev/null
@@ -1,53 +0,0 @@
-
-
\ No newline at end of file
diff --git a/src/resources/styles/__pycache__/dark_theme.cpython-310.pyc b/src/resources/styles/__pycache__/dark_theme.cpython-310.pyc
index 02d6ea4..97cb09e 100644
Binary files a/src/resources/styles/__pycache__/dark_theme.cpython-310.pyc and b/src/resources/styles/__pycache__/dark_theme.cpython-310.pyc differ
diff --git a/src/resources/styles/__pycache__/light_theme.cpython-310.pyc b/src/resources/styles/__pycache__/light_theme.cpython-310.pyc
index 5d781b9..beb9def 100644
Binary files a/src/resources/styles/__pycache__/light_theme.cpython-310.pyc and b/src/resources/styles/__pycache__/light_theme.cpython-310.pyc differ
diff --git a/src/resources/styles/dark_theme.py b/src/resources/styles/dark_theme.py
index e535335..730a64e 100644
--- a/src/resources/styles/dark_theme.py
+++ b/src/resources/styles/dark_theme.py
@@ -183,7 +183,7 @@ QCheckBox::indicator:hover {
QCheckBox::indicator:checked {
background-color: #00D4FF;
border: 2px solid #00D4FF;
- image: url(src/resources/icons/check.svg);
+ image: url(./src/resources/icons/check.svg);
padding: 2px;
}
diff --git a/src/resources/styles/light_theme.py b/src/resources/styles/light_theme.py
index bd2e7c2..e67740f 100644
--- a/src/resources/styles/light_theme.py
+++ b/src/resources/styles/light_theme.py
@@ -191,7 +191,7 @@ QCheckBox::indicator:hover {
QCheckBox::indicator:checked {
background-color: #00D4FF;
border: 2px solid #00D4FF;
- image: url(src/resources/icons/check.svg);
+ image: url(./src/resources/icons/check.svg);
padding: 2px;
}
diff --git a/src/ui/__pycache__/__init__.cpython-310.pyc b/src/ui/__pycache__/__init__.cpython-310.pyc
index 76328b7..3591877 100644
Binary files a/src/ui/__pycache__/__init__.cpython-310.pyc and b/src/ui/__pycache__/__init__.cpython-310.pyc differ
diff --git a/src/ui/__pycache__/custom_widgets.cpython-310.pyc b/src/ui/__pycache__/custom_widgets.cpython-310.pyc
index 759a229..b4d7cf4 100644
Binary files a/src/ui/__pycache__/custom_widgets.cpython-310.pyc and b/src/ui/__pycache__/custom_widgets.cpython-310.pyc differ
diff --git a/src/ui/__pycache__/main_window.cpython-310.pyc b/src/ui/__pycache__/main_window.cpython-310.pyc
index 14c7143..e999d8c 100644
Binary files a/src/ui/__pycache__/main_window.cpython-310.pyc and b/src/ui/__pycache__/main_window.cpython-310.pyc differ
diff --git a/src/utils/__pycache__/__init__.cpython-310.pyc b/src/utils/__pycache__/__init__.cpython-310.pyc
index 3ae5979..817edbb 100644
Binary files a/src/utils/__pycache__/__init__.cpython-310.pyc and b/src/utils/__pycache__/__init__.cpython-310.pyc differ
diff --git a/src/utils/__pycache__/local_server.cpython-310.pyc b/src/utils/__pycache__/local_server.cpython-310.pyc
index dfe66a2..5384ac7 100644
Binary files a/src/utils/__pycache__/local_server.cpython-310.pyc and b/src/utils/__pycache__/local_server.cpython-310.pyc differ
diff --git a/src/utils/__pycache__/pdf_report.cpython-310.pyc b/src/utils/__pycache__/pdf_report.cpython-310.pyc
index 5151973..2487072 100644
Binary files a/src/utils/__pycache__/pdf_report.cpython-310.pyc and b/src/utils/__pycache__/pdf_report.cpython-310.pyc differ