Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
6dfecbe
try to migrate to Python3 + PyQt6
kashikoibumi May 12, 2024
057e856
try to migrate to Python3 + PyQt6; part 2
kashikoibumi May 13, 2024
16019d4
enable TLS connection
kashikoibumi May 13, 2024
e646377
fix GUIs to work with PyQt6
kashikoibumi May 14, 2024
741f8dd
fix some parts of inventory syncing
kashikoibumi May 14, 2024
88b1497
fix decryption to work in Python 3
kashikoibumi May 15, 2024
4f0e34b
make message sending work in Python 3
kashikoibumi May 15, 2024
cdbe5f8
fix exception from network status
kashikoibumi May 15, 2024
2109fc0
fix sending v4 pubkey
kashikoibumi May 15, 2024
ba9734e
fix pubkey check
kashikoibumi May 15, 2024
6a090e8
fix some bugs related to the migration to Python3
kashikoibumi May 15, 2024
ec91d9f
fix HTML display such as URL, email address and image
kashikoibumi May 16, 2024
1b3ce71
use bytes for key of hashtable in replacement of hexlified string
kashikoibumi May 16, 2024
24b83aa
run autopep8 on src
kashikoibumi May 16, 2024
60af410
fix complains from flake8
kashikoibumi May 16, 2024
ab9fc0b
run autopep8 on src/bitmessageqt
kashikoibumi May 16, 2024
bcf02ff
fix complains from flake8; part 2
kashikoibumi May 16, 2024
3b37faf
change command from python2.7 to python3
kashikoibumi May 16, 2024
416463f
Revert "change command from python2.7 to python3"
kashikoibumi May 17, 2024
1077548
Revert "fix complains from flake8; part 2"
kashikoibumi May 17, 2024
1e53720
Revert "run autopep8 on src/bitmessageqt"
kashikoibumi May 17, 2024
a02ef70
Revert "fix complains from flake8"
kashikoibumi May 17, 2024
97c9b7e
Revert "run autopep8 on src"
kashikoibumi May 17, 2024
74bb876
fix small failures in migrating to Python3 + PyQt6
kashikoibumi May 18, 2024
8c2701c
Merge branch 'v0.6' into main
kashikoibumi May 18, 2024
bc254a9
eliminate semicolons
kashikoibumi May 18, 2024
3f808fb
fix to pass tests.py
kashikoibumi May 18, 2024
af52f80
fix to run with python3-prctl
kashikoibumi May 18, 2024
3368089
load data as 'bytes' instead of 'str' from SQLite
kashikoibumi May 18, 2024
75d2b36
fix UPnP support
kashikoibumi May 20, 2024
218cc97
make daemon mode runnable
kashikoibumi May 20, 2024
b12c7cd
replace remained arg() with format()
kashikoibumi May 22, 2024
149c90c
Merge branch 'v0.6'
kashikoibumi May 22, 2024
4c8bce4
fix type of literals that should be binary
kashikoibumi May 29, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge branch 'v0.6' into main
  • Loading branch information
kashikoibumi committed May 18, 2024
commit 8c2701c53b11bb0518a64693ad3d92460ee72575
2 changes: 1 addition & 1 deletion src/network/bmobject.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

import protocol
import state
import connectionpool
import network.connectionpool as connectionpool
from highlevelcrypto import calculateInventoryHash

logger = logging.getLogger('default')
Expand Down
2 changes: 1 addition & 1 deletion src/network/udp.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# magic imports!
import protocol
import state
import connectionpool
import network.connectionpool as connectionpool
from queues import receiveDataQueue

from .bmproto import BMProto
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.