Skip to content

Commit

Permalink
v3.5 checkpoint.
Browse files Browse the repository at this point in the history
  • Loading branch information
suurjaak committed Jul 16, 2015
1 parent f99072e commit ecc0375
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 13 deletions.
12 changes: 6 additions & 6 deletions 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;
Expand All @@ -20,19 +20,19 @@ 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;
- minor UI tweak: added focus-on-click to Advanced Options dialog labels;


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;
Expand All @@ -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);
Expand Down
9 changes: 8 additions & 1 deletion README.md
@@ -1,4 +1,4 @@
Skyperious 3.4
Skyperious 3.5
==============

Skyperious is a Skype database viewer and merger, written in Python.
Expand Down Expand Up @@ -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.
Expand Down
12 changes: 9 additions & 3 deletions 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.
Expand Down Expand Up @@ -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.
Expand All @@ -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.
Expand Down
6 changes: 3 additions & 3 deletions skyperious/conf.py
Expand Up @@ -10,7 +10,7 @@
@author Erki Suurjaak
@created 26.11.2011
@modified 08.07.2015
@modified 16.07.2015
------------------------------------------------------------------------------
"""
from ConfigParser import RawConfigParser
Expand All @@ -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
Expand Down

0 comments on commit ecc0375

Please sign in to comment.