From 6bceb9c784478f6e6493b4a952ac60a22e249fc5 Mon Sep 17 00:00:00 2001 From: "Bora M. Alper" Date: Tue, 30 May 2017 12:28:34 +0300 Subject: [PATCH] v0.4.0 is released! Changes are below. magneticod: * Performance improvements * Unregistering WRITE event when possible * Using files instead of memory for temporary SQLite objects * Stability improvements * Limit metadata size to prevent crashes due to malicious or malformed answers. * Flushing metadata buffer while exiting gracefully magneticow: * Stability improvements * Homepage crash due to count functionality when the database is empty, is fixed. * Statistics page added, although very slow! --- magneticod/magneticod/__init__.py | 2 +- magneticod/setup.py | 2 +- magneticow/setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/magneticod/magneticod/__init__.py b/magneticod/magneticod/__init__.py index b775b85..cc8c8be 100644 --- a/magneticod/magneticod/__init__.py +++ b/magneticod/magneticod/__init__.py @@ -12,4 +12,4 @@ # # You should have received a copy of the GNU Affero General Public License along with this program. If not, see # . -__version__ = (0, 3, 0) +__version__ = (0, 4, 0) diff --git a/magneticod/setup.py b/magneticod/setup.py index b8ba4d9..b71ad1a 100644 --- a/magneticod/setup.py +++ b/magneticod/setup.py @@ -8,7 +8,7 @@ def read_file(path): setup( name="magneticod", - version="0.3.0", + version="0.4.0", description="Autonomous BitTorrent DHT crawler and metadata fetcher.", long_description=read_file("README.rst"), url="http://magnetico.org", diff --git a/magneticow/setup.py b/magneticow/setup.py index 0fd87c4..2d5c0ed 100644 --- a/magneticow/setup.py +++ b/magneticow/setup.py @@ -8,7 +8,7 @@ def read_file(path): setup( name="magneticow", - version="0.3.0", + version="0.4.0", description="Lightweight web interface for magnetico.", long_description=read_file("README.rst"), url="http://magnetico.org",