-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Updated translations - Chart now shows more digits if needed - Updated Dependencies to remove bugs - nostr-chat couldn't receive NIP17 messages due to timestamp variations - show usb hardware signer simualtors for testnets - include vscode launch files
- Loading branch information
1 parent
fd3a6cb
commit 54a2d7e
Showing
38 changed files
with
13,229 additions
and
8,434 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
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 |
---|---|---|
@@ -0,0 +1,129 @@ | ||
{ | ||
"version": "0.1.0", | ||
"configurations": [ | ||
|
||
|
||
{ | ||
"name": "Python: Module", | ||
"type": "python", | ||
"request": "launch", | ||
"module": "bitcoin_safe", | ||
"console": "integratedTerminal", | ||
"args": [ | ||
// "--profile", | ||
], | ||
"justMyCode": false | ||
}, | ||
{ | ||
"name": "Pytest", | ||
"type": "python", | ||
"request": "launch", | ||
"module": "pytest", | ||
"args": [ | ||
"-vvv", | ||
"--ignore=coding_tests", | ||
], | ||
"console": "integratedTerminal", | ||
"justMyCode": true | ||
}, | ||
{ | ||
"name": "Pytest gui", | ||
"type": "python", | ||
"request": "launch", | ||
"module": "pytest", | ||
"args": [ | ||
"-vvv", | ||
"tests/gui", | ||
"--ignore=coding_tests", | ||
"-s", // Disable all capturing of outputs | ||
], | ||
"console": "integratedTerminal", | ||
"justMyCode": true | ||
}, | ||
{ | ||
"name": "Pytest non-gui", | ||
"type": "python", | ||
"request": "launch", | ||
"module": "pytest", | ||
"args": [ | ||
"-vvv", | ||
"--ignore=tests/gui", | ||
"--ignore=coding_tests", | ||
"-s", // Disable all capturing of outputs | ||
], | ||
"console": "integratedTerminal", | ||
"justMyCode": true | ||
}, { | ||
"name": "taglist", | ||
"type": "python", | ||
"request": "launch", | ||
"module": "bitcoin_safe.gui.qt.taglist", | ||
"console": "integratedTerminal", | ||
"cwd": "${workspaceFolder}" | ||
}, { | ||
"name": "network settings", | ||
"type": "python", | ||
"request": "launch", | ||
"module": "bitcoin_safe.gui.qt.network_settings", | ||
"console": "integratedTerminal", | ||
"cwd": "${workspaceFolder}" | ||
}, { | ||
"name": "step_progress_bar", | ||
"type": "python", | ||
"request": "launch", | ||
"module": "bitcoin_safe.gui.qt.step_progress_bar", | ||
"console": "integratedTerminal", | ||
"cwd": "${workspaceFolder}" | ||
},{ | ||
"name": "Translation update", | ||
"type": "python", | ||
"request": "launch", | ||
"program": "tools/build.py", | ||
"args": [ | ||
"--update_translations" | ||
], | ||
"console": "integratedTerminal" | ||
},{ | ||
"name": "Translation csv to ts", | ||
"type": "python", | ||
"request": "launch", | ||
"program": "tools/build.py", | ||
"args": [ | ||
"--csv_to_ts" | ||
], | ||
"console": "integratedTerminal" | ||
},{ | ||
"name": "Build", | ||
"type": "python", | ||
"request": "launch", | ||
"program": "tools/build.py", | ||
"args": [ | ||
"--targets", | ||
// // "deb", | ||
// "appimage", | ||
// "--sign", | ||
], | ||
"console": "integratedTerminal", | ||
"preLaunchTask": "Poetry Install" // label of the task | ||
},{ | ||
"name": "Sign", | ||
"type": "python", | ||
"request": "launch", | ||
"program": "tools/build.py", | ||
"args": [ | ||
// "--targets", | ||
// // "deb", | ||
// "appimage", | ||
"--sign", | ||
], | ||
"console": "integratedTerminal" | ||
},{ | ||
"name": "Python: Current File", | ||
"type": "python", | ||
"request": "launch", | ||
"program": "${file}", | ||
"console": "integratedTerminal" | ||
} | ||
|
||
] | ||
} |
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,14 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "Poetry Install", | ||
"type": "shell", | ||
"command": "poetry install", | ||
"options": { | ||
"cwd": "${workspaceFolder}" // Ensures command runs in the project root | ||
}, | ||
"problemMatcher": [] | ||
} | ||
] | ||
} |
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,2 +1,2 @@ | ||
# this is the source of the version information | ||
__version__ = "0.7.2a0" | ||
__version__ = "0.7.3a0" |
Binary file not shown.
Oops, something went wrong.