Skip to content
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

READY: GigaChannel Final #4236

Merged
merged 41 commits into from
Feb 21, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
bd9beb3
Rework GUI to support GigaChannel
ichorid Nov 14, 2018
e914a93
add lz4, fix timestamp resolution problem
ichorid Jan 2, 2019
ddc4815
Add ChannelNode ORM class
ichorid Jan 8, 2019
4e03210
Add TrackerState ORM class
ichorid Jan 9, 2019
a27fa42
Loading metadata store before gigachannel overlay
devos50 Dec 23, 2018
f8f1b0a
Gigachannel GUI refactor and polish
devos50 Jan 3, 2019
a5cd5f4
Refactored Tribler REST API endpoints
devos50 Jan 8, 2019
3beae42
Removed Dispersy and related code
devos50 Jan 8, 2019
d14c6d5
WIP - migration
ichorid Jan 10, 2019
b9b8517
Modified REST API endpoints
ichorid Jan 12, 2019
1774600
Removed chant checkbox from settings
devos50 Jan 15, 2019
eb64e33
Changed community identifiers
devos50 Jan 15, 2019
23e0fc1
add unique constraints on db
ichorid Jan 22, 2019
d5b5949
timer-base channel commits in the GUI
ichorid Jan 25, 2019
efc52e6
Enable twistd REST API by default
devos50 Jan 25, 2019
1dbed58
Deferred loading of gigachannel manager
devos50 Jan 25, 2019
92d4cd0
GUI fixes
devos50 Jan 25, 2019
ae97310
optimize db_sessions a bit
ichorid Jan 28, 2019
e496265
db upgrade 72->Pony works
ichorid Jan 29, 2019
43b96d3
change db and blob format a bit
ichorid Jan 30, 2019
0ebf095
Fixed searching/filtering with non-ascii character
devos50 Jan 25, 2019
5d79652
Made a general URL encode mechanism
devos50 Jan 27, 2019
3d822e7
Proper FTS search sanitizing and UTF-8
ichorid Feb 1, 2019
29a3bfd
GigaChannelManager channels cruft removal
ichorid Feb 5, 2019
b58948a
redo category and family filters
ichorid Feb 6, 2019
29129b2
GUI fixes
ichorid Feb 7, 2019
19779ab
fixes to GigachannelManager
ichorid Feb 7, 2019
37b6a6b
minimize db_session usage
ichorid Feb 7, 2019
fab1b28
Removed deprecated DualStackDiscoveryCommunity
qstokkink Feb 8, 2019
be704e8
merge devel
ichorid Feb 21, 2019
cf0dbfb
GigaChannel community refactor and news update fix
ichorid Feb 10, 2019
b753ad7
merge devel
ichorid Feb 21, 2019
7683af9
Fix torrentchecker
ichorid Feb 13, 2019
88d036b
Move DicreteClock to use db
ichorid Feb 14, 2019
a7be546
Torrent health events
ichorid Feb 15, 2019
5b8ca1c
Search endpoint refactor
ichorid Feb 19, 2019
e960dfa
Skipping failed test on Mac
devos50 Feb 20, 2019
e2dfceb
merge devel
ichorid Feb 21, 2019
0147182
post-merge fixes
ichorid Feb 20, 2019
8c74fb9
lint fixes, coverage, documentation changes
ichorid Feb 20, 2019
d82d7e7
refactor pony upgrader
ichorid Feb 21, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 0 additions & 1 deletion .coveragerc
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# .coveragerc to control coverage.py
[run]
branch = True
omit = Tribler/dispersy/*
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
# Apple
.DS_Store


*.autosave
*.stats
.*project
local.properties
*.bak
Expand Down Expand Up @@ -41,6 +44,7 @@ htmlcov/

# Ignore nosetest output logs
Tribler/Test/logs/
Tribler/Test/Core/logs/
# Ignore trial temp dirs
_trial_temp*/
_trial_temp*.lock
Expand Down
3 changes: 0 additions & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
[submodule "Tribler/dispersy"]
path = Tribler/dispersy
url = https://github.com/Tribler/dispersy.git
[submodule "py-ipv8"]
path = Tribler/pyipv8
url = https://github.com/Tribler/py-ipv8.git
4 changes: 2 additions & 2 deletions .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

# Add files or directories to the blacklist. They should be base names, not
# paths.
ignore=.git,dispersy,libnacl,data
ignore=.git,libnacl,data

# Pickle collected data for later comparisons.
persistent=yes
Expand Down Expand Up @@ -150,7 +150,7 @@ generated-members=
# sudo apt install aspell-en

# List of comma separated words that should not be checked.
spelling-ignore-words=Tribler,dispersy
spelling-ignore-words=Tribler

# A path to a file that contains private dictionary; one word per line.
spelling-private-dict-file=
Expand Down
65 changes: 0 additions & 65 deletions Tribler/Core/APIImplementation/IPv8EndpointAdapter.py

This file was deleted.

16 changes: 0 additions & 16 deletions Tribler/Core/APIImplementation/IPv8Module.py

This file was deleted.

Loading