Change some default configuration details

master
Travis Evans 2023-09-04 23:11:32 -05:00
parent a741e86a41
commit f4b3dd78d8
1 changed files with 2 additions and 3 deletions

View File

@ -3,7 +3,7 @@ locale = require('locale');
storage = require('Storage');
// Storage filename to store user's timestamp log
const LOG_FILENAME = 'stamplog.json';
const LOG_FILENAME = 'timestamplog.json';
// Min number of pixels of movement to recognize a touchscreen drag/swipe
const DRAG_THRESHOLD = 30;
@ -13,7 +13,7 @@ const SCROLL_BAR_WIDTH = 12;
var settings = {
logItemFont: '12x20',
maxLogLength: 6
maxLogLength: 30
};
@ -444,4 +444,3 @@ stampLog.on('saveError', saveErrorAlert);
var currentUI = new MainScreen(stampLog);
currentUI.start();