Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
script.spotify.screensaver
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
kodi
script.spotify.screensaver
Commits
ecf3e419
Commit
ecf3e419
authored
3 years ago
by
Benoît Harrault
Browse files
Options
Downloads
Patches
Plain Diff
Add "sink" event type
parent
a7eadf35
No related branches found
No related tags found
1 merge request
!12
Resolve "Add "sink" event type"
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
addon.xml
+1
-1
1 addition, 1 deletion
addon.xml
gui.py
+5
-1
5 additions, 1 deletion
gui.py
with
6 additions
and
2 deletions
addon.xml
+
1
−
1
View file @
ecf3e419
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon
id=
"script.spotify.screensaver"
name=
"Spotify Screensaver"
version=
"0.0.
8
"
version=
"0.0.
9
"
provider-name=
"Benoît Harrault"
>
<requires>
<import
addon=
"xbmc.python"
version=
"2.25.0"
/>
...
...
This diff is collapsed.
Click to expand it.
gui.py
+
5
−
1
View file @
ecf3e419
...
...
@@ -122,7 +122,11 @@ class GUI(xbmcgui.WindowXMLDialog):
self
.
next
=
True
elif
event_type
==
'
preloading
'
:
self
.
_preload_images
(
event_value
)
elif
event_type
==
'
paused
'
or
event_type
==
'
stopped
'
:
elif
(
event_type
==
'
paused
'
or
event_type
==
'
stopped
'
or
event_type
==
'
sink
'
):
self
.
_remove_images
()
self
.
next
=
True
else
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment