blob: 29af9c3466ab234ec282d6bc927e070f3ca4aad0 (
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.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);
}
|