Skip to content

Commit e04ee83

Browse files
committed
some more small fixes
1 parent 6729df6 commit e04ee83

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
*.pyo
2-
machine_guid
2+
machine_guid
3+
/resources/media/Thumbs.db

default.py

+4
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,13 @@
1919

2020
# get the actions...
2121
params=utils.get_params(sys.argv[2])
22+
2223
mode = params.get('mode',"")
2324
id = params.get('id',"")
2425

2526
if mode == "play":
2627
PlaybackUtils().PLAY(id)
28+
29+
else:
30+
xbmc.executebuiltin('Addon.OpenSettings(plugin.video.mb3sync)')
2731

resources/settings.xml

+5-6
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
</category>
99

1010
<category label="Automatic sync"> <!-- Auto sync optionss -->
11-
<setting id="enablePlayCountSync" type="bool" label="Enable watched/resume status sync" default="true" visible="false" enable="true" />
11+
<setting id="enablePlayCountSync" type="bool" label="Enable watched/resume status sync" default="true" visible="true" enable="true" />
1212
<setting id="syncSettingStartup" type="labelenum" label="Run at startup:" values="Full Sync|Incremental Sync|None" default="Full Sync" />
13-
<setting id="syncSettingBackground" type="enum" label="Enable continuous background sync:" values="Full Sync|Incremental Sync|None" default="Incremental Sync" visible="true" enable="true" />
13+
<setting id="syncSettingBackground" type="labelenum" label="Enable continuous background sync:" values="Full Sync|Incremental Sync|None" default="Incremental Sync" visible="true" enable="true" />
1414
<setting type="lsep"/>
1515
<setting label="[B]Full Sync:[/B] Performs full compare including deletes" type="lsep"/>
1616
<setting label="[B]Incremental Sync:[/B] Processes only new items" type="lsep"/>
@@ -26,13 +26,12 @@
2626
<setting id="username" type="text" label="30024" />
2727
<setting id="password" type="text" option="hidden" label="30025" />
2828
</category>
29-
30-
29+
3130

3231
<category label="30022"> <!-- Advanced -->
3332
<setting id="logLevel" type="enum" label="30004" values="None|Info|Debug" default="0" />
34-
<setting id="enableProgressPlayCountSync" type="bool" label="Show load progress for Watched/resume status sync" default="true" visible="false" enable="true" />
35-
<setting id="enableProgressFullSync" type="bool" label="Show load progress for full/incremental sync" default="true" visible="true" enable="true" />
33+
<setting id="enableProgressPlayCountSync" type="bool" label="Show load progress for Watched/resume status sync" default="false" visible="false" enable="true" />
34+
<setting id="enableProgressFullSync" type="bool" label="Show load progress for full/incremental sync" default="false" visible="true" enable="true" />
3635
</category>
3736

3837

0 commit comments

Comments
 (0)