This repository was archived by the owner on Apr 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +33
-43
lines changed Expand file tree Collapse file tree 6 files changed +33
-43
lines changed Original file line number Diff line number Diff line change 2
2
__pycache__ /
3
3
venv /
4
4
config
5
+ .seedqrenv /
6
+ .venv /
7
+ .env /
Original file line number Diff line number Diff line change @@ -10,32 +10,34 @@ It actually can send/receive:
10
10
- Multiframes QRCodes using the ` Specter ` format (_ of_ )
11
11
- Multiframes QRCodes using the ` UR ` format are partially supported (PSBT and Bytes)
12
12
13
- Dependencies:
14
- opencv might be installed
15
-
16
- Install:
17
- Go into this repo and run:
13
+ To install, enter the repo folder and run:
18
14
```
15
+ # create environment to install dependencies
16
+ python3 -m venv .seedqrenv
17
+
18
+ # activate the environment on the current terminal
19
+ source .seedqrenv/bin/activate
20
+
21
+ # install python dependencies on this environment
19
22
pip install -r requirements.txt
20
23
```
21
24
22
- Linux :
25
+ If you get this error, please install libxcb-cursor :
23
26
```
24
- # For error:
25
27
# qt.qpa.plugin: From 6.5.0, xcb-cursor0 or libxcb-cursor0 is needed to load the Qt xcb platform plugin.
26
- sudo apt install libxcb-cursor-dev
28
+ sudo apt install libxcb-cursor0
27
29
```
28
30
29
- Run under Linux/MacOS :
31
+ Run:
30
32
```
33
+ # Linux/MacOS
31
34
python3 seedqreader.py
32
35
```
33
36
34
- Run under Windows :
37
+ Run:
35
38
```
39
+ # Windows
36
40
python seedqreader.py
37
41
```
38
42
39
- If you want i build more cool tools you can support me with bitcoin:
40
- ` bc1q5pgfrt09f4vuxyryg95erge38nw94usvpe5gg0 `
41
-
43
+ Project originally created by https://github.com/pythcoiner
Original file line number Diff line number Diff line change 456
456
<property name =" singleStep" >
457
457
<number >10</number >
458
458
</property >
459
+ <property name =" pageStep" >
460
+ <number >10</number >
461
+ </property >
459
462
<property name =" value" >
460
463
<number >100</number >
461
464
</property >
583
586
<number >100</number >
584
587
</property >
585
588
<property name =" maximum" >
586
- <number >2000 </number >
589
+ <number >4000 </number >
587
590
</property >
588
591
<property name =" singleStep" >
589
- <number >20</number >
592
+ <number >100</number >
593
+ </property >
594
+ <property name =" pageStep" >
595
+ <number >100</number >
590
596
</property >
591
597
<property name =" value" >
592
598
<number >400</number >
Original file line number Diff line number Diff line change 1
- embit == 0.7.0
2
- numpy == 1.26.4
3
- opencv-python == 4.7.0.72
4
- Pillow == 11.0.0
5
- pypng == 0.20220715.0
6
- PyYAML == 6.0.1
1
+ PyYAML == 6.0.2
2
+ PySide6 == 6.9.0
3
+ Pillow == 11.2.1
7
4
pyzbar == 0.1.9
8
- qrcode == 7.4.2
9
- typing_extensions == 4.11.0
10
- PySide6 == 6.6.3.1
11
- shiboken6 == 6.6.3.1
12
- urtypes @ git+https://github.com/selfcustody/urtypes.git@7fb280eab3b3563dfc57d2733b0bf5cbc0a96a6a
5
+ qrcode == 8.1
6
+ opencv-python == 4.11.0.86
7
+ urtypes @ git+https://github.com/selfcustody/urtypes.git
8
+ embit == 0.8.0
Original file line number Diff line number Diff line change @@ -719,23 +719,6 @@ def on_btn_save(self):
719
719
self .config [self .radio_selected ] = self .ui .data_out .toPlainText ()
720
720
self .dump_config ()
721
721
722
- def wheelEvent (self , event ):
723
-
724
- # If on Send / display QR tab
725
- if self .ui .tabWidget .currentIndex () == 1 :
726
- numPixels = event .pixelDelta ()
727
- numDegrees = event .angleDelta () / 8
728
- step = 0
729
- if not numPixels .isNull ():
730
- step = numPixels .y ()
731
- elif not numDegrees .isNull ():
732
- numSteps = numDegrees / 15
733
- step = numSteps .y ()
734
-
735
- self .ui .delay_slider .setValue (self .ui .delay_slider .value () + self .ui .delay_slider .singleStep () * step )
736
-
737
- event .accept ()
738
-
739
722
740
723
if __name__ == '__main__' :
741
724
# the QUiLoader object needs to be initialized BEFORE the QApplication - https://stackoverflow.com/a/78041695
You can’t perform that action at this time.
0 commit comments