mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update plugin page
This commit is contained in:
parent
88a1dde4fb
commit
50ae4035c5
7 changed files with 20 additions and 19 deletions
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "iron-icon",
|
"name": "iron-icon",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "1.0.2",
|
"version": "1.0.3",
|
||||||
"license": "http://polymer.github.io/LICENSE.txt",
|
"license": "http://polymer.github.io/LICENSE.txt",
|
||||||
"description": "An element that supports displaying an icon",
|
"description": "An element that supports displaying an icon",
|
||||||
"main": "iron-icon.html",
|
"main": "iron-icon.html",
|
||||||
|
@ -31,11 +31,11 @@
|
||||||
"webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0"
|
"webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0"
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/polymerelements/iron-icon",
|
"homepage": "https://github.com/polymerelements/iron-icon",
|
||||||
"_release": "1.0.2",
|
"_release": "1.0.3",
|
||||||
"_resolution": {
|
"_resolution": {
|
||||||
"type": "version",
|
"type": "version",
|
||||||
"tag": "v1.0.2",
|
"tag": "v1.0.3",
|
||||||
"commit": "f9246c47ecb1c682f0fb9ea48255d5f7debd1e03"
|
"commit": "818c2d2af2d3287a444e4cf0a19c2b5717d480e8"
|
||||||
},
|
},
|
||||||
"_source": "git://github.com/polymerelements/iron-icon.git",
|
"_source": "git://github.com/polymerelements/iron-icon.git",
|
||||||
"_target": "^1.0.0",
|
"_target": "^1.0.0",
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "iron-icon",
|
"name": "iron-icon",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "1.0.2",
|
"version": "1.0.3",
|
||||||
"license": "http://polymer.github.io/LICENSE.txt",
|
"license": "http://polymer.github.io/LICENSE.txt",
|
||||||
"description": "An element that supports displaying an icon",
|
"description": "An element that supports displaying an icon",
|
||||||
"main": "iron-icon.html",
|
"main": "iron-icon.html",
|
||||||
|
|
|
@ -32,17 +32,16 @@ Example setting size to 32px x 32px:
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
The iron elements include several sets of icons.
|
The iron elements include several sets of icons.
|
||||||
To use the default set of icons, import `iron-icons.html` and use the `icon` attribute to specify an icon:
|
To use the default set of icons, import `iron-icons.html` and use the `icon` attribute to specify an icon:
|
||||||
|
|
||||||
<!-- import default iconset and iron-icon -->
|
|
||||||
<link rel="import" href="/components/iron-icons/iron-icons.html">
|
<link rel="import" href="/components/iron-icons/iron-icons.html">
|
||||||
|
|
||||||
<iron-icon icon="menu"></iron-icon>
|
<iron-icon icon="menu"></iron-icon>
|
||||||
|
|
||||||
To use a different built-in set of icons, import `iron-icons/<iconset>-icons.html`, and
|
To use a different built-in set of icons, import the specific `iron-icons/<iconset>-icons.html`, and
|
||||||
specify the icon as `<iconset>:<icon>`. For example:
|
specify the icon as `<iconset>:<icon>`. For example, to use a communication icon, you would
|
||||||
|
use:
|
||||||
|
|
||||||
<!-- import communication iconset and iron-icon -->
|
|
||||||
<link rel="import" href="/components/iron-icons/communication-icons.html">
|
<link rel="import" href="/components/iron-icons/communication-icons.html">
|
||||||
|
|
||||||
<iron-icon icon="communication:email"></iron-icon>
|
<iron-icon icon="communication:email"></iron-icon>
|
||||||
|
@ -150,6 +149,7 @@ Custom property | Description | Default
|
||||||
return this.icon || !this.src;
|
return this.icon || !this.src;
|
||||||
},
|
},
|
||||||
|
|
||||||
|
/** @suppress {visibility} */
|
||||||
_updateIcon: function() {
|
_updateIcon: function() {
|
||||||
if (this._usesIconset()) {
|
if (this._usesIconset()) {
|
||||||
if (this._iconsetName) {
|
if (this._iconsetName) {
|
||||||
|
@ -166,6 +166,7 @@ Custom property | Description | Default
|
||||||
this._img = document.createElement('img');
|
this._img = document.createElement('img');
|
||||||
this._img.style.width = '100%';
|
this._img.style.width = '100%';
|
||||||
this._img.style.height = '100%';
|
this._img.style.height = '100%';
|
||||||
|
this._img.draggable = false;
|
||||||
}
|
}
|
||||||
this._img.src = this.src;
|
this._img.src = this.src;
|
||||||
Polymer.dom(this.root).appendChild(this._img);
|
Polymer.dom(this.root).appendChild(this._img);
|
||||||
|
|
|
@ -25,14 +25,14 @@
|
||||||
"web-component-tester": "*",
|
"web-component-tester": "*",
|
||||||
"webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0"
|
"webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0"
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/polymerelements/iron-meta",
|
"homepage": "https://github.com/PolymerElements/iron-meta",
|
||||||
"_release": "1.0.3",
|
"_release": "1.0.3",
|
||||||
"_resolution": {
|
"_resolution": {
|
||||||
"type": "version",
|
"type": "version",
|
||||||
"tag": "v1.0.3",
|
"tag": "v1.0.3",
|
||||||
"commit": "91529259262b0d8f33fed44bc3fd47aedf35cb04"
|
"commit": "91529259262b0d8f33fed44bc3fd47aedf35cb04"
|
||||||
},
|
},
|
||||||
"_source": "git://github.com/polymerelements/iron-meta.git",
|
"_source": "git://github.com/PolymerElements/iron-meta.git",
|
||||||
"_target": "^1.0.0",
|
"_target": "^1.0.0",
|
||||||
"_originalSource": "polymerelements/iron-meta"
|
"_originalSource": "PolymerElements/iron-meta"
|
||||||
}
|
}
|
|
@ -34,7 +34,7 @@
|
||||||
"tag": "v1.0.11",
|
"tag": "v1.0.11",
|
||||||
"commit": "347542e9ebe3e6e5f0830ee10e1c20c12956ff2c"
|
"commit": "347542e9ebe3e6e5f0830ee10e1c20c12956ff2c"
|
||||||
},
|
},
|
||||||
"_source": "git://github.com/PolymerElements/paper-styles.git",
|
"_source": "git://github.com/polymerelements/paper-styles.git",
|
||||||
"_target": "^1.0.4",
|
"_target": "^1.0.0",
|
||||||
"_originalSource": "PolymerElements/paper-styles"
|
"_originalSource": "polymerelements/paper-styles"
|
||||||
}
|
}
|
|
@ -144,7 +144,7 @@
|
||||||
|
|
||||||
if (pkg.richDescUrl) {
|
if (pkg.richDescUrl) {
|
||||||
$('#pViewWebsite', page).show();
|
$('#pViewWebsite', page).show();
|
||||||
$('#pViewWebsite a', page)[0].href = pkg.richDescUrl;
|
$('#pViewWebsite a', page).attr('href', pkg.richDescUrl);
|
||||||
} else {
|
} else {
|
||||||
$('#pViewWebsite', page).hide();
|
$('#pViewWebsite', page).hide();
|
||||||
}
|
}
|
||||||
|
|
|
@ -1518,7 +1518,7 @@
|
||||||
"LabelTranscodingThreadCountHelp": "Select the maximum number of threads to use when transcoding. Reducing the thread count will lower cpu usage but may not convert fast enough for a smooth playback experience.",
|
"LabelTranscodingThreadCountHelp": "Select the maximum number of threads to use when transcoding. Reducing the thread count will lower cpu usage but may not convert fast enough for a smooth playback experience.",
|
||||||
"OptionMax": "Max",
|
"OptionMax": "Max",
|
||||||
"HeaderEmbyGuide": "Emby Guide",
|
"HeaderEmbyGuide": "Emby Guide",
|
||||||
"LabelSyncPath": "Sync path:",
|
"LabelSyncPath": "Synced content path:",
|
||||||
"OptionSyncOnlyOnWifi": "Sync only on Wifi",
|
"OptionSyncOnlyOnWifi": "Sync only on Wifi",
|
||||||
"OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality (when supported)"
|
"OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue