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

15
generate_default_prefs.sh Executable file
View File

@@ -0,0 +1,15 @@
#!/usr/bin/php
<?
$p['allowed'] = array("jpg","jpeg","png","mov","mp4","m4v","dng","heic");
$p['limit'] = 2000;
$p['maxlength'] = 30;
$p['review'] = 1;
$p['pt'] = "%DTO_%MODEL_%PLACE_%SW_%FILE.%EXT";
$p['vt'] = "%DTO_%DUR_%PLACE_%SW_%FILE.%EXT";
$p['key'] = "";
$p['dry_run'] = 1;
file_put_contents("master/prefs.php",serialize($p));
?>