summaryrefslogtreecommitdiff
path: root/src/version.php
blob: fb3273c56e6cf62dfc0b2355d333cf07fcb1c28b (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php
// please leave it as it is ;)
define("TINYEMOTES_NAME", "TinyEmotes");
define("TINYEMOTES_VERSION", "0.2");
define("TINYEMOTES_LINK", "https://github.com/ilotterytea/tinyemotes");

if ($s = file_get_contents("../.git/refs/heads/master")) {
    define("TINYEMOTES_COMMIT", $s);
} else {
    define("TINYEMOTES_COMMIT", null);
}