Skip to content

Commit

Permalink
Release 2.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
damienlangg committed Jan 16, 2018
1 parent 469dbe8 commit 80e6da7
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 18 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Simple Movie Catalog 2.5.0
# Simple Movie Catalog 2.6.0

Simple Movie Catalog will scan a given directory for movies,
query imdb for info and generate a catalog in html which offers
Expand Down
5 changes: 5 additions & 0 deletions doc/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
Changelog:

2018-01-16 Release 2.6.0
* Fixed movie guess - search results parse
* Fixes for https
* Other minor cleanups

2016-05-02 Release 2.5.0
* Prepare code for system-wide installation
* Subtitle links fixes
Expand Down
18 changes: 4 additions & 14 deletions doc/page.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,20 +42,10 @@ <h3><a name=download>Download:</a></h3>
<h3><a name=news>News:</a></h3>
<small>
<pre>
2016-05-02 Release 2.5.0
* Prepare code for system-wide installation
* Subtitle links fixes
* Use opengraph (english) title in external link query
* Correctly format accents in pathname
* Fixed detection of missing poster

2016-04-12 Release 2.4.0
* Fixed -origtitle
* Added -og-title for opengraph title (english)
* Improved filter number input fields
* Minor sorting improvements
* Added theme: white-columns
* Minor cleanup of dark columns theme (by Roni)
2018-01-16 Release 2.6.0
* Fixed movie guess - search results parse
* Fixes for https
* Other minor cleanups
</pre>
</small>

Expand Down
2 changes: 1 addition & 1 deletion lib/IMDB_Movie.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use HTML::TokeParser;
use Data::Dumper;
use HTML::Tagset ();

$VERSION = '0.38';
$VERSION = '0.39';
$ERROR = "";
@MATCH = ();
$FIND_OPT = ""; # "&site=aka"
Expand Down
4 changes: 2 additions & 2 deletions moviecat.pl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

=copyright
Simple Movie Catalog 2.5.0
Simple Movie Catalog 2.6.0
Copyright (C) 2008-2016 [email protected]
This program is free software: you can redistribute it and/or modify
Expand All @@ -22,7 +22,7 @@

use strict;

my $progver = "2.5.0";
my $progver = "2.6.0";
my $author = '[email protected]';
my $copyright = "Copyright 2008-2016, $author";
my $progbin = "moviecat.pl";
Expand Down

0 comments on commit 80e6da7

Please sign in to comment.