This commit is contained in:
2019-09-30 00:16:55 -07:00
parent 76707c3966
commit 8c6ca92d0a
9 changed files with 1004 additions and 3 deletions

View File

@@ -19,7 +19,7 @@ if (!file_exists($prefs_file)) {
}
$p = unserialize(file_get_contents($prefs_file));
$p['etbin'] = __DIR__."/exiftool";
$p['etbin'] = __DIR__."/bin/exiftool";
$p['pfiletypes'] = array("jpg","jpeg","dng","heic","png","gif");
$p['vfiletypes'] = array("mov","mp4","m4v");
$p['screenshot_dims'] = array(320,640,750,828,1125,1242);
@@ -41,7 +41,7 @@ switch (@$argv[0]) {
}
die;
case "Check for Updates...":
$curr_version = @file_get_contents("https://www.profiteroles.org/git/profiteroles/Rollup/raw/master/version.txt");
$curr_version = @file_get_contents("https://www.profiteroles.org/git/p/Rollup/raw/master/current_version.txt");
if (!$curr_version) {
echo "\nALERT:Can't connect|Error checking for latest version\n";
die;