-
Notifications
You must be signed in to change notification settings - Fork 79
Merge develop into master #160
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
40 commits
Select commit
Hold shift + click to select a range
03d48a0
add pre-commit and linter
mruiz-ledger 10e7047
format: ruff format ledgerblue/ doc/
mruiz-ledger 7aba908
add git-blame-ignore for formatting commit
mruiz-ledger ccfe8ca
update upload-artifact action cause v3 is deprecated
mruiz-ledger d453c78
Merge pull request #141 from LedgerHQ/mru-lint
mruiz-ledger 15c255a
[ci][clean] Removing useless push to 'test.pypi.org'
Leereen 6c87036
[ci][add] Push on Artifactory Python registry
Leereen c3609d5
Merge pull request #145 from LedgerHQ/jfrog
Leereen adbe45b
fix: update aes init with iv
mruiz-ledger 8a8b4c8
ruff: fixes on syntax
mruiz-ledger b908bc3
add ruff commits to git-blame-ignore
mruiz-ledger 824d6c2
Merge pull request #142 from LedgerHQ/mru-fix-aes-init
mruiz-ledger 6746574
[ci][fix] Reducing specific permission to the targeted job, + adding …
Leereen 950ddf5
style: ruff linting
mruiz-ledger 59e130f
feature(usb): usb env var to select specific port
mruiz-ledger 43f9e65
fix(ble): apdu through ble
mruiz-ledger 109fd5c
Merge pull request #147 from LedgerHQ/mru-minor-fixes
mruiz-ledger 4d2fafc
Merge pull request #146 from LedgerHQ/fix/ci
mruiz-ledger 8ddedd3
Fix support for PCSC smartcard readers
yrichard-ledger 65c2710
Update documentation
yrichard-ledger bb83a0e
Merge pull request #148 from LedgerHQ/nfc-pcsc
yrichard-ledger 119b92f
Fix PCSC reader detection
yrichard-ledger 8607c1d
Merge pull request #149 Fix pcsc reader detection logic
yrichard-ledger f26f358
Fix issue when a LP have a .hex with several areas
dmorais-ledger 6a39324
Merge pull request #150 from LedgerHQ/fix_lp_64k
dmorais-ledger be96966
Add support for Apex BLE
yrichard-ledger 0f2e44e
Merge pull request #152 from LedgerHQ/add_apex_uuid
yrichard-ledger faa20c0
replace deploy job with reusable workflow
mbrousset-ledger a897370
Merge pull request #155 from LedgerHQ/mbr/deploy-rwf
mbrousset-ledger b8b35f3
add actionlint + remove runners instance
mbrousset-ledger 7d426c8
Merge pull request #156 from LedgerHQ/mbr/actionlint
mbrousset-ledger e448c46
feat: rename distributeFirmware11_scan into distributeFirmware
edelanghe-ledger f4aca23
Merge pull request #154 from LedgerHQ/feat/rename_distribute_firmware
edelanghe-ledger f1dfdb2
Bump protobuf version to match ledgerctl
mruiz-ledger f9b7add
Merge pull request #157 from LedgerHQ/bump-protobuf-reqs
mruiz-ledger 13cc1ca
Enable BLS12-377 and ZIP32 derivations in parameters installation
srasoamiaramanana-ledger 1fdec31
Merge pull request #158 from LedgerHQ/enable-derivation-modes
srasoamiaramanana-ledger 32cec42
add debugApp script to capture app PRINTF output over USB CDC
tdejoigny-ledger 2b8d175
scan until Ledger CDC port to appear (connection & disconnection) and…
tdejoigny-ledger 5ada735
Merge pull request #159 from LedgerHQ/tdj/debug_over_usb
tdejoigny-ledger File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,6 @@ | ||
| # Run this command to always ignore formatting commits in `git blame` | ||
| # git config blame.ignoreRevsFile .git-blame-ignore-revs | ||
|
|
||
| # Formatting commit | ||
| 10e7047631b5807a951676eab6ede37200011283 | ||
| 8a8b4c89769dcd2ee4c890c14518759aa4e62394 |
This file contains hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -2,5 +2,6 @@ build/ | |
| dist/ | ||
| ledgerblue.egg-info/ | ||
| __pycache__ | ||
| .python-version | ||
|
|
||
| __version__.py | ||
This file contains hidden or 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,24 @@ | ||
| # See https://pre-commit.com for more information | ||
| # See https://pre-commit.com/hooks.html for more hooks | ||
| repos: | ||
| - repo: https://github.com/pre-commit/pre-commit-hooks | ||
| rev: v3.2.0 | ||
| hooks: | ||
| - id: trailing-whitespace | ||
| - id: end-of-file-fixer | ||
| - id: check-yaml | ||
| - id: check-added-large-files | ||
| - repo: https://github.com/astral-sh/ruff-pre-commit | ||
| # Ruff version. | ||
| rev: v0.3.7 | ||
| hooks: | ||
| # Run the linter. | ||
| - id: ruff | ||
| args: [ --fix ] | ||
| # Run the formatter. | ||
| - id: ruff-format | ||
| - repo: https://github.com/rhysd/actionlint | ||
| rev: v1.6.27 | ||
| hooks: | ||
| - id: actionlint | ||
| files: ^\.github/workflows/.*\.ya?ml$ |
This file contains hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.