Skip to content

Commit

Permalink
Released version 1.13
Browse files Browse the repository at this point in the history
 - Fix parsing imgur links #17
 - Fix parsing metacpan.org links
 - Fix parsing pastebini.com links
 - Fix parsing xkcd.com links
 - Add support for Instagram photos inside iframe #15
 - Add support for rendering GitHub source code #16
 - Add support for extracting "application/ld+json" information
 - Add support for paste.centos.org (replaced fedoraproject paste)
 - Changed to use twitframe.com to embed twitter posts
  • Loading branch information
Jan Henning Thorsen committed Sep 17, 2020
1 parent 2a2d7cf commit 4e0307a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Changes
@@ -1,6 +1,6 @@
Revision history for perl distribution LinkEmbedder

1.13 Not Released
1.13 2020-09-17T13:08:51+0900
- Fix parsing imgur links #17
- Fix parsing metacpan.org links
- Fix parsing pastebini.com links
Expand Down
2 changes: 1 addition & 1 deletion Makefile.PL
Expand Up @@ -10,7 +10,7 @@ my %WriteMakefileArgs = (
EXE_FILES => [qw()],
OBJECT => '',
BUILD_REQUIRES => {},
TEST_REQUIRES => {'Test::Deep' => '1.00', 'Test::More' => '1.00'},
TEST_REQUIRES => {'Test::More' => '1.00'},
PREREQ_PM => {'Mojolicious' => '8.00'},
META_MERGE => {
'dynamic_config' => 0,
Expand Down
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -28,6 +28,7 @@ Go to [https://thorsen.pm/linkembedder](https://thorsen.pm/linkembedder) to see

These web pages are currently supported:

- [https://dropbox.com/](https://dropbox.com/)
- [https://imgur.com/](https://imgur.com/)
- [https://instagram.com/](https://instagram.com/)

Expand Down
2 changes: 1 addition & 1 deletion lib/LinkEmbedder.pm
Expand Up @@ -11,7 +11,7 @@ use constant TLS => eval { require IO::Socket::SSL; IO::Socket::SSL->VERSION('2.

use constant DEBUG => $ENV{LINK_EMBEDDER_DEBUG} || 0;

our $VERSION = '1.12';
our $VERSION = '1.13';

my $PROTOCOL_RE = qr!^(\w+):\w+!i; # Examples: mail:, spotify:, ...

Expand Down

0 comments on commit 4e0307a

Please sign in to comment.