forked from spazproject/spaz-webos
-
Notifications
You must be signed in to change notification settings - Fork 1
/
default_preferences.js
67 lines (46 loc) · 1.66 KB
/
default_preferences.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
var default_preferences = {
'last_username':null,
'last_type':null,
'last_userid':null,
'users':[], // an array of user objects with properties { 'id', 'username', 'password', 'type', 'meta' }
'always-go-to-my-timeline':false,
'use-markdown': true,
'sound-enabled': true,
'vibration-enabled': true,
'wilhelm-enabled': true,
'network-refreshinterval': 900000,
'network-searchrefreshinterval': 900000,
'network-autoadjustrefreshinterval': true,
'notify-newmessages':true,
'notify-mentions':true,
'notify-dms':true,
'notify-searchresults':true,
'bgnotify-enabled':false,
'bgnotify-on-dm':true,
'bgnotify-on-mention':true,
'bgnotify-on-home':false,
'bgnotify-wakeoncheck':true,
'timeline-scrollonupdate': true,
'timeline-maxentries': 100,
'timeline-maxentries-dm': 50,
'timeline-maxentries-reply': 50,
'timeline-friends-getcount': 20,
'timeline-replies-getcount': 5,
'timeline-dm-getcount': 5,
'url-shortener': 'bitly',
'image-uploader': 'yfrog',
'services-twitpic-sharepassword': false,
'services-pingfm-userappkey': '',
'services-pingfm-enabled': false,
'services-pingfm-sendreplies': false,
'services-pingfm-updatetype': 'default',
'services-pikchur-apikey': 'aJMHC7eHRbhnA7FLdXmAtA',
'services-pikchur-source': 'NjMw',
'services-bitly-apikey': 'R_f3b86681a63a6bbefc7d8949fd915f1d',
'twitter-api-base-url': 'https://twitter.com/',
'twitter-www-base-url': 'http://twitter.com/',
'twitter-source': 'spaz',
'timeline-text-size': 'tall', // also grande, venti
'post-rt-cursor-position': 'beginning', // 'beginning' or 'end'
'post-send-on-enter': true
};