mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-06 21:21:15 -07:00
Fix thumb for clip items in activity pane.
Use our own icon for Mac OS notifications.
This commit is contained in:
parent
9564c5ed81
commit
c59562cf19
3 changed files with 8 additions and 4 deletions
|
@ -72,8 +72,12 @@ DOCUMENTATION :: END
|
||||||
% if a['type'] == 'track':
|
% if a['type'] == 'track':
|
||||||
<div class="dashboard-activity-poster-music-bg" style="background-image: url('pms_image_proxy?img=${a['thumb']}&width=300&height=300');"></div>
|
<div class="dashboard-activity-poster-music-bg" style="background-image: url('pms_image_proxy?img=${a['thumb']}&width=300&height=300');"></div>
|
||||||
% endif
|
% endif
|
||||||
|
% if a['type'] == 'clip':
|
||||||
|
<img src="${a['thumb']}"/>
|
||||||
|
% else:
|
||||||
<img src="pms_image_proxy?img=${a['thumb']}&width=410&height=230&fallback=cover"/>
|
<img src="pms_image_proxy?img=${a['thumb']}&width=410&height=230&fallback=cover"/>
|
||||||
% endif
|
% endif
|
||||||
|
% endif
|
||||||
<div class="dashboard-activity-poster-info-bar">
|
<div class="dashboard-activity-poster-info-bar">
|
||||||
<div class="dashboard-activity-poster-info-text">
|
<div class="dashboard-activity-poster-info-text">
|
||||||
% if a['type'] == 'track':
|
% if a['type'] == 'track':
|
||||||
|
|
BIN
lib/osxnotify/appIcon.icns
Executable file → Normal file
BIN
lib/osxnotify/appIcon.icns
Executable file → Normal file
Binary file not shown.
|
@ -15,7 +15,7 @@ def registerapp(app):
|
||||||
app_path = None
|
app_path = None
|
||||||
|
|
||||||
# check app bundle doesn't already exist
|
# check app bundle doesn't already exist
|
||||||
app_path = subprocess.check_output(['/usr/bin/mdfind', 'kMDItemCFBundleIdentifier == "ade.headphones.osxnotify"']).strip()
|
app_path = subprocess.check_output(['/usr/bin/mdfind', 'kMDItemCFBundleIdentifier == "ade.plexpy.osxnotify"']).strip()
|
||||||
if app_path:
|
if app_path:
|
||||||
return app_path, 'App previously registered'
|
return app_path, 'App previously registered'
|
||||||
|
|
||||||
|
@ -40,7 +40,7 @@ def registerapp(app):
|
||||||
|
|
||||||
version = "1.0.0"
|
version = "1.0.0"
|
||||||
bundleName = "OSXNotify"
|
bundleName = "OSXNotify"
|
||||||
bundleIdentifier = "ade.headphones.osxnotify"
|
bundleIdentifier = "ade.plexpy.osxnotify"
|
||||||
|
|
||||||
f = open(app_path + "/Contents/Info.plist", "w")
|
f = open(app_path + "/Contents/Info.plist", "w")
|
||||||
f.write("""<?xml version="1.0" encoding="UTF-8"?>
|
f.write("""<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
@ -117,10 +117,10 @@ def notify(title, subtitle=None, text=None, sound=True):
|
||||||
del pool
|
del pool
|
||||||
|
|
||||||
def swizzled_bundleIdentifier(self, original):
|
def swizzled_bundleIdentifier(self, original):
|
||||||
return 'ade.headphones.osxnotify'
|
return 'ade.plexpy.osxnotify'
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
notify('Half Man Half Biscuit', 'Back in the DHSS', '99% Of Gargoyles Look Like Bob Todd')
|
notify('PlexPy', 'Test Subtitle', 'Test Body')
|
||||||
""")
|
""")
|
||||||
f.close()
|
f.close()
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue