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