diff --git a/CHANGELOG.md b/CHANGELOG.md index c49cdac..b462691 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,8 @@ CHANGELOG ========= -3.5e, 2015-07-08 ------------------- +3.5, 2015-07-16 +--------------- - added emoticons to chat statistics; - added shared image download for HTML export; - added chat and author filters to command-line export; @@ -20,11 +20,11 @@ CHANGELOG - upgraded Pillow from 2.8.0 to 2.8.1; - upgraded SQLite from 3.6.21 to 3.8.10.2; - upgraded XlsxWriter from 0.6.7 to 0.7.3; -- upgraded Nullsoft Scriptable Install System from 3.0a2 to 3.0b2; +- upgraded Nullsoft Scriptable Install System from 3.0a2 to 3.0b1; 3.4.1, 2015-04-29 ------------------- +----------------- - fixed missing content in text/Excel/CSV export (issue #37); - rolled back using Skype account timezone setting for message timestamps (issue #33); - added 40x40 and 256x256 application icons; @@ -32,7 +32,7 @@ CHANGELOG 3.4, 2015-04-15 ------------------- +--------------- - added links to earliest messages in chat statistics histogram sectors; - fixed showing wrong author in transfer statistics for certain messages; - fixed a parsing issue with certain Skype messages; @@ -57,7 +57,7 @@ CHANGELOG - upgraded Pillow from 2.7.0 to 2.8.0. 3.3, 2015-03-15 ------------------- +--------------- - added per-contact word clouds to chat statistics; - added 24h and date activity histograms to chat statistics; - added support for bold, italic and strike-through formatting in Skype 7 (issue #31); diff --git a/README.md b/README.md index e26bdb0..1c9f915 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -Skyperious 3.4 +Skyperious 3.5 ============== Skyperious is a Skype database viewer and merger, written in Python. @@ -45,6 +45,13 @@ You can use keywords to search among specific authors or chats only (`date:2012`, `date:2010..2013-06`). Search supports wildcards, exact phrases, grouping, excluding, and either-or queries. +HTML export can download shared photos and embed them in the resulting HTML. +This can be disabled in File -> Advanced Options -> SharedImageAutoDownload. +As shared photos are kept on the web, Skyperious needs to ask for Skype account +password on HTML export. The password is only used for retrieving the images, +and is not retained. +Image download is also supported in the command-line interface. + In database comparison, you can scan one database for messages not found in the other, and merge all detected messages to the other database. Or you can browse and copy specific chats and contacts. diff --git a/dist/README for Windows.txt b/dist/README for Windows.txt index 80ce409..dd70768 100644 --- a/dist/README for Windows.txt +++ b/dist/README for Windows.txt @@ -1,4 +1,4 @@ -Skyperious 3.4 +Skyperious 3.5 ============== Skyperious is a Skype database viewer and merger, written in Python. @@ -42,6 +42,13 @@ You can use keywords to search among specific authors or chats only Search supports wildcards, exact phrases, grouping, excluding, and either-or queries. +HTML export can download shared photos and embed them in the resulting HTML. +This can be disabled in File -> Advanced Options -> SharedImageAutoDownload. +As shared photos are kept on the web, Skyperious needs to ask for Skype account +password on HTML export. The password is only used for retrieving the images, +and is not retained. +Image download is also supported in the command-line interface. + In database comparison, you can scan one database for messages not found in the other, and merge all detected messages to the other database. Or you can browse and copy specific chats and contacts. @@ -63,8 +70,7 @@ this can cause temporary program errors. Writing to such a file is ill-advised. The program itself is stand-alone, can work from any directory, and does not need additional installation, Windows installers have been provided for convenience. The installed program can be copied to a USB stick and used -elsewhere, same goes for the source code. The command line interface only needs -Python to run. +elsewhere. Skyperious has been tested under Windows 7, Windows Vista, Windows XP, and reported to work under Windows 8. diff --git a/skyperious/conf.py b/skyperious/conf.py index 93597d0..6f0fcf1 100644 --- a/skyperious/conf.py +++ b/skyperious/conf.py @@ -10,7 +10,7 @@ @author Erki Suurjaak @created 26.11.2011 -@modified 08.07.2015 +@modified 16.07.2015 ------------------------------------------------------------------------------ """ from ConfigParser import RawConfigParser @@ -23,8 +23,8 @@ """Program title, version number and version date.""" Title = "Skyperious" -Version = "3.5e" -VersionDate = "08.07.2015" +Version = "3.5" +VersionDate = "16.07.2015" if getattr(sys, "frozen", False): # Running as a pyinstaller executable