Skip to content

Commit 0e77743

Browse files
committed
Add light and dark theme icons
1 parent 6606c49 commit 0e77743

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+1044
-73
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,3 +74,5 @@ env*/
7474
*.bin
7575
.backup
7676
.env*
77+
78+
deploy

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ repos:
2929

3030
# Lint Python code with Ruff
3131
- repo: https://github.com/astral-sh/ruff-pre-commit
32-
rev: v0.11.5
32+
rev: v0.11.6
3333
hooks:
3434
- id: ruff
3535

Makefile

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,15 @@ clean:
3131
find . -name "*.mo" -delete
3232
find . -name "*.pyc" -delete
3333
rm -rf .mypy_cache/ .pytest_cache/ .ruff_cache/ dist/ tox/
34-
rm -f .coverage .coverage.xml
35-
pyside6-project clean src
34+
rm -rf .coverage .coverage.xml htmlcov junit.xml
35+
rm -rf .pytest_cache/ .ruff_cache/ .mypy_cache/
36+
rm -rf build
37+
pyside6-project clean .
3638

3739
# Build package distribution
3840
build:
3941
rm -rf *.egg-info/
40-
pyside6-project build src
42+
pyside6-project build .
4143

4244
# Run coverage analysis
4345
coverage:
@@ -80,4 +82,9 @@ rcc:
8082

8183
# build executable of pynocchio
8284
deploy:
83-
pyside6-project deploy src
85+
pyside6-project deploy .
86+
87+
appimage:
88+
pyinstaller --onedir -n AppRun src/__init__.py
89+
cp deploy/appimage/* dist/*/
90+
appimagetool dist/*/

pyproject.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,12 @@ dependencies = [
3535
dev = [
3636
"pytest>=7.3.1",
3737
"pytest-qt",
38-
"qt-material-icons",
3938
"mypy>=1.0,<1.5",
4039
"mypy-extensions",
4140
"black>=23.0,<24.0",
4241
"isort>=5.12,<5.13",
4342
"pre-commit>=4.0.1",
4443
"ruff",
45-
"ipdb",
4644
"tomlkit",
4745
"PyInstaller",
4846
]
@@ -141,4 +139,4 @@ branch = true
141139
omit = ["tests/*", "src/app_rc.py", "src/__init__.py", "src/app.py", "src/__version__.py"]
142140

143141
[tool.pyside6-project]
144-
files = ["app.py"]
142+
files = ["run.py"]

resources/icons/dark/bug_report.svg

Lines changed: 1 addition & 0 deletions

resources/icons/dark/close.svg

Lines changed: 1 addition & 0 deletions

resources/icons/dark/file_open.svg

Lines changed: 1 addition & 0 deletions

resources/icons/dark/first_page.svg

Lines changed: 1 addition & 0 deletions

resources/icons/dark/fit_page.svg

Lines changed: 1 addition & 0 deletions
Lines changed: 1 addition & 0 deletions

0 commit comments

Comments
 (0)