Skip to content

Commit 1d39789

Browse files
committed
Fix broken download button on landing page
MetaCPAN API v0 has been deprecated and shut down, so we could never fill in the download information for the button. The response is slightly different in v1 than v0, so adjusted accordingly. The version for Dancer2 doesn't fit as cleanly as the version for Dancer, so I removed it (and version handling) entirely.
1 parent 742156f commit 1d39789

File tree

2 files changed

+5
-11
lines changed

2 files changed

+5
-11
lines changed

lib/PerlDancer.pm

+3-9
Original file line numberDiff line numberDiff line change
@@ -63,19 +63,13 @@ hook before_template_render => sub {
6363
}
6464

6565
my $json = LWP::Simple::get(
66-
'http://api.metacpan.org/v0/release/Dancer2'
66+
'https://fastapi.metacpan.org/v1/release/Dancer2'
6767
) or return $latest_version;
6868

6969
my $response = from_json($json) or return $latest_version;
70-
my ($short_ver) = $response->{version} =~ /^(\d+\.\d{3})/;
71-
my $result = {
72-
version => $response->{version},
73-
short_version => $short_ver,
74-
download_url => $response->{download_url},
75-
};
76-
$latest_version = $result;
70+
$latest_version = $response->{download_url};
7771
$last_check = time;
78-
return $result;
72+
return $latest_version;
7973
}
8074
}
8175

views/index.tt

+2-2
Original file line numberDiff line numberDiff line change
@@ -214,8 +214,8 @@ ajax '/getloadavg' => sub {
214214

215215

216216
<ul class="clearme listreset dbc">
217-
<li><a href="<% latest.download_url %>" id="contain-download">
218-
<% latest.short_version %>&nbsp;</a></li>
217+
<li><a href="<% latest %>" id="contain-download">
218+
&nbsp;</a></li>
219219
<li>You can also follow Dancer on <a
220220
href="https://github.com/PerlDancer/Dancer2">GitHub</a> and on <a href="https://twitter.com/PerlDancer">Twitter</a></li>
221221
</ul>

0 commit comments

Comments
 (0)