-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21 from jeremiah-k/work-for-0.2.4
Refactor downloader.py for efficiency and log only when necessary
- Loading branch information
Showing
8 changed files
with
114 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,4 @@ topic.txt | |
fetchtastic.log | ||
.aider* | ||
app/__pycache__/ | ||
fetchtastic.egg-info/ | ||
fetchtastic.egg-info/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,4 @@ | |
plugins | ||
user_trunk.yaml | ||
user.yaml | ||
tmp | ||
tmp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[bandit] | ||
skips: B404,B603,B607,B605,B311,B103 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ cli: | |
plugins: | ||
sources: | ||
- id: trunk | ||
ref: v1.6.4 | ||
ref: v1.6.5 | ||
uri: https://github.com/trunk-io/plugins | ||
# Many linters and tools depend on runtimes - configure them here. (https://docs.trunk.io/runtimes) | ||
runtimes: | ||
|
@@ -18,15 +18,21 @@ runtimes: | |
lint: | ||
enabled: | ||
- [email protected] | ||
- bandit@1.7.10 | ||
- bandit@1.8.0 | ||
- [email protected] | ||
- [email protected].291 | ||
- [email protected].327 | ||
- git-diff-check | ||
- [email protected] | ||
- markdownlint@0.42.0 | ||
- markdownlint@0.43.0 | ||
- [email protected] | ||
- prettier@3.3.3 | ||
- ruff@0.7.3 | ||
- prettier@3.4.1 | ||
- ruff@0.8.1 | ||
- [email protected] | ||
- trufflehog@3.83.6 | ||
- trufflehog@3.84.2 | ||
- [email protected] | ||
actions: | ||
enabled: | ||
- trunk-announce | ||
- trunk-check-pre-push | ||
- trunk-fmt-pre-commit | ||
- trunk-upgrade-available |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[metadata] | ||
name = fetchtastic | ||
version = 0.2.3 | ||
version = 0.2.4 | ||
author = Jeremiah K | ||
author_email = [email protected] | ||
description = Meshtastic Firmware and APK Downloader | ||
|