-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Configuration parameter changed from proxy_path to base_path - to avoid ambiguities * Fix ambiguous situations around the period when DST changes. * Emit [Error] message when socket cannot be created. Resolves #63. * Refactored Storage class to better handle temp folder management. * Fixed a number of typos. * Preliminary Readme for 19.1 * Preparation for 19.1b1 * Preparation for 19.1b1 * Preparation for 19.1b1 * Preparation for 19.1b2 * Show error if verification fails in node properties dialog * Add reference to py3 only. * v19.2b3 * get_cc: 'SessionManager' object has no attribute 'delete': Fixed * fixed an issue due to lazy refactoring. * Linux: Suppress stderr output when querying for the ntp server information. * Network Bandwidth: 3 month chart substituted by 6 month chart - according oninooo. * Network Weights: 6 month chart included. * Fixed Keyboard (Left / Right) navigation in Dashboard * Preparation for v19.2b4 * Fix: Add NoneType guard when querying for messages. * Another fix for keyboard navigation on the Dashboard * Removed obsolete section 'control'. * Fixed typo in Readme * Updated tor.1.txt * 'New day' message added to the log of nodes. * Fixed: Cursor key (left, right) navigation at the Dashboard ... finally! * Fixed some minor issued around the HiddenService Cookie property. * Fixed 'new day' logging message * Hunting for an issue concerning the persistance of bandwidth data. * OO sometimes returns strings with encoded unicode characters. Fixed. * tor.1.txt updated. * Yet another attempt to fix the 'New Day' notification. * Fixed: Issue in the handshaking with the Update service. * Fixed: warning if bandwidth data cannot be persisted displays fpid yet not fp. * 19.2
- Loading branch information
1 parent
d8c59cb
commit 5b1baf0
Showing
284 changed files
with
58,505 additions
and
30,602 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
FROM python:2.7 | ||
FROM python:3.6 | ||
|
||
EXPOSE 8080 | ||
|
||
RUN pip install pip --upgrade && pip install theonionbox | ||
|
||
COPY theonionbox.cfg /usr/local/lib/python2.7/site-packages/theonionbox | ||
COPY theonionbox.cfg /usr/local/lib/python3.6/site-packages/theonionbox | ||
|
||
ENTRYPOINT ["/usr/local/bin/theonionbox", "-c", "/usr/local/lib/python2.7/site-packages/theonionbox/theonionbox.cfg"] | ||
ENTRYPOINT ["/usr/local/bin/theonionbox", "-c", "/usr/local/lib/python3.6/site-packages/theonionbox/theonionbox.cfg"] |
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
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 @@ | ||
from controlcenter import ControlCenter |
File renamed without changes.
Oops, something went wrong.