greenshot/update/index.markdown

23 lines
917 B
Markdown

---
layout: page
status: publish
published: true
title: Update Greenshot
categories: []
tags: []
comments: []
---
<p>
<?php<br />
$latest_version = '0.8.0-0627';<br />
$check_version = $_GET['version'];</p>
<p>if(isset($check_version)) {<br />
$cmp = version_compare($check_version, $latest_version);<br />
if($cmp >= 0) echo "You are already using the latest version of Greenshot (".$latest_version."). If needed, you can download the installer again by clicking the link below.";<br />
else echo "Your Greenshot installation is out of date, please download and install the latest version (".$latest_version.") by clicking the link below.";<br />
} else {<br />
echo "The latest Greenshot version is ".$latest_version." You can download it below.";<br />
}<br />
?></p>
<p><a class="button" href="/current/" title="Download the latest stable version of Greenshot" rel="nofollow" target="_blank">Download</a></p>