summaryrefslogtreecommitdiff
path: root/src/version.php
blob: 7dacf0b954f2d1b3f7a14bfb8024675aca8897ea (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.1");
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);
}