Skip to content
This repository has been archived by the owner on Mar 8, 2022. It is now read-only.

Commit

Permalink
fix for browseplay
Browse files Browse the repository at this point in the history
  • Loading branch information
jurialmunkey committed Oct 18, 2019
1 parent 1e805d3 commit e5720d2
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 11 deletions.
20 changes: 10 additions & 10 deletions 1080i/Includes_Info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -204,27 +204,27 @@
<include content="Object_Info_Button">
<param name="id" value="8" />
<param name="groupid" value="8008" />
<param name="label" value="$VAR[Label_Info_PlayButton]" />
<param name="icon" value="$VAR[Image_Info_PlayButton]" />
<param name="visible" value="Control.IsEnabled(8) + String.IsEmpty(Container.PluginName)" />
<param name="label" value="$LOCALIZE[208]" />
<param name="icon" value="special://skin/extras/icons/play3.png" />
<param name="visible" value="Control.IsEnabled(8) + !ListItem.IsFolder" />
</include>
<include content="Object_Info_Button">
<param name="id" value="8888" />
<param name="groupid" value="8808" />
<param name="label" value="$VAR[Label_Info_PlayButton]" />
<param name="icon" value="$VAR[Image_Info_PlayButton]" />
<param name="visible" value="Control.IsEnabled(8) + !String.IsEmpty(Container.PluginName)" />
<onclick>Dialog.Close(all,force)</onclick>
<onclick>Container.Update($INFO[ListItem.FolderPath])</onclick>
<!-- <onclick>AlarmClock(launchit, Action(select), 00:01, silent, false)</onclick> -->
<param name="label" value="$LOCALIZE[1024]" />
<param name="icon" value="special://skin/extras/icons/folder.png" />
<param name="visible" value="Control.IsEnabled(8) + ListItem.IsFolder" />
<onclick>Dialog.Close(12003)</onclick>
<onclick condition="Window.IsVisible(MyVideoNav.xml)">Container.Update($INFO[ListItem.FolderPath])</onclick>

This comment has been minimized.

Copy link
@drinfernoo

drinfernoo Oct 18, 2019

Contributor

Would this condition even occur inside the Information dialog?

<onclick condition="!Window.IsVisible(MyVideoNav.xml)">ActivateWindow(videos,$INFO[ListItem.FolderPath],return)</onclick>
</include>
<include content="Object_Info_Button">
<param name="id" value="8115" />
<param name="groupid" value="8015" />
<param name="label" value="Search" />
<param name="icon" value="special://skin/extras/icons/search.png" />
<param name="visible" value="!String.IsEmpty(ListItem.Property(tmdb_id))" />
<onclick>Dialog.Close(all,force)</onclick>
<onclick>Dialog.Close(12003)</onclick>
<onclick>Skin.Reset(SearchTerm)</onclick>
<onclick>Skin.SetString(SearchTerm, $INFO[ListItem.Title])</onclick>
<onclick>ActivateWindow(1138)</onclick>
Expand Down
2 changes: 1 addition & 1 deletion addon.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<addon id="skin.arctic.zephyr.2" name="Arctic Zephyr 2" provider-name="jurialmunkey" version="0.9.52-alpha5">
<addon id="skin.arctic.zephyr.2" name="Arctic Zephyr 2" provider-name="jurialmunkey" version="0.9.52-alpha6">
<requires>
<import addon="xbmc.gui" version="5.14.0" />
<import addon="script.skinshortcuts" version="0.4.0" />
Expand Down
1 change: 1 addition & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
- Clock to music vis
- Fix for always on osd info to not show when seeking
- Allow AEL views.
- Fix for browse/play in info dialog

0.9.51
- Add fanart gallery fullscreen viewer
Expand Down

1 comment on commit e5720d2

@SOOTTV
Copy link

@SOOTTV SOOTTV commented on e5720d2 Oct 19, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey, just tried out v0.9.52-alpha6. Everything works great especially the browse/play! I'm wondering if you could also add the "Browse" button to episode info dialogs. So that if you're looking at "Next Up" or "Recently Aired" and need to go back an episode it would be easy from the info dialog. Anyway, love the update. Thx for all the hard work!

Please sign in to comment.