mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-12-25 18:26:15 +00:00
Fix editorconfig lints
This commit is contained in:
parent
ae5caa6831
commit
be8333a80c
5 changed files with 13 additions and 11 deletions
10
.github/issue_template.md
vendored
10
.github/issue_template.md
vendored
|
@ -18,11 +18,11 @@
|
||||||
<!-- If applicable, add screenshots to help explain your problem. -->
|
<!-- If applicable, add screenshots to help explain your problem. -->
|
||||||
|
|
||||||
**System (please complete the following information):**
|
**System (please complete the following information):**
|
||||||
- OS: [e.g. Android, Debian, Windows]
|
- OS: [e.g. Android, Debian, Windows]
|
||||||
- Jellyfin Version: [e.g. 10.0.1]
|
- Jellyfin Version: [e.g. 10.0.1]
|
||||||
- Kodi Version: [e.g. 18.3]
|
- Kodi Version: [e.g. 18.3]
|
||||||
- Addon Version: [e.g. 0.2.1]
|
- Addon Version: [e.g. 0.2.1]
|
||||||
- Playback Mode: [e.g. Add-On or Native]
|
- Playback Mode: [e.g. Add-On or Native]
|
||||||
|
|
||||||
**Additional context**
|
**Additional context**
|
||||||
<!-- Add any other context about the problem here. -->
|
<!-- Add any other context about the problem here. -->
|
||||||
|
|
2
.github/releasing.md
vendored
2
.github/releasing.md
vendored
|
@ -1,7 +1,7 @@
|
||||||
# Releasing a new Version via GitHub Actions
|
# Releasing a new Version via GitHub Actions
|
||||||
|
|
||||||
0. (optional) label the PRs you want to include in this release (if you want to group them in the GH release based on topics). \
|
0. (optional) label the PRs you want to include in this release (if you want to group them in the GH release based on topics). \
|
||||||
Supported labels can be found in the Release Drafter [config-file](https://github.com/jellyfin/jellyfin-meta-plugins/blob/master/.github/release-drafter.yml) (currently inherited from `jellyfin/jellyfin-meta-plugins`)
|
Supported labels can be found in the Release Drafter [config-file](https://github.com/jellyfin/jellyfin-meta-plugins/blob/master/.github/release-drafter.yml) (currently inherited from `jellyfin/jellyfin-meta-plugins`)
|
||||||
1. ensure you have merged the PRs you want to include in the release and that the so far drafted GitHub release has captured them
|
1. ensure you have merged the PRs you want to include in the release and that the so far drafted GitHub release has captured them
|
||||||
2. Create a `release-prep` PR by manually triggering the 'Create Prepare-Release PR' Workflow from the Actions tab on GitHub
|
2. Create a `release-prep` PR by manually triggering the 'Create Prepare-Release PR' Workflow from the Actions tab on GitHub
|
||||||
3. check the newly created `Prepare for release vx.y.z` PR if updated the `release.yaml` properly (update it manually if need be)
|
3. check the newly created `Prepare for release vx.y.z` PR if updated the `release.yaml` properly (update it manually if need be)
|
||||||
|
|
|
@ -44,7 +44,7 @@ class Objects(object):
|
||||||
"?": split filters and key name from the query part, i.e. MediaSources/0?$Name
|
"?": split filters and key name from the query part, i.e. MediaSources/0?$Name
|
||||||
"$": lead the key name with $. Only one key value can be requested per element.
|
"$": lead the key name with $. Only one key value can be requested per element.
|
||||||
":": indicates it's a list of elements [], i.e. MediaSources/0/MediaStreams:?$Name
|
":": indicates it's a list of elements [], i.e. MediaSources/0/MediaStreams:?$Name
|
||||||
MediaStreams is a list.
|
MediaStreams is a list.
|
||||||
"/": indicates where to go directly
|
"/": indicates where to go directly
|
||||||
"""
|
"""
|
||||||
self.mapped_item = {}
|
self.mapped_item = {}
|
||||||
|
|
|
@ -15,11 +15,13 @@
|
||||||
</control>
|
</control>
|
||||||
<control type="group">
|
<control type="group">
|
||||||
<animation type="WindowOpen" reversible="false">
|
<animation type="WindowOpen" reversible="false">
|
||||||
<effect type="zoom" start="80" end="100" center="960,540" delay="160" tween="circle" easin="out" time="240" />
|
<effect type="zoom" start="80" end="100" center="960,540" delay="160" tween="circle"
|
||||||
|
easin="out" time="240" />
|
||||||
<effect type="fade" delay="160" end="100" time="240" />
|
<effect type="fade" delay="160" end="100" time="240" />
|
||||||
</animation>
|
</animation>
|
||||||
<animation type="WindowClose" reversible="false">
|
<animation type="WindowClose" reversible="false">
|
||||||
<effect type="zoom" start="100" end="80" center="960,540" easing="in" tween="circle" easin="out" time="240" />
|
<effect type="zoom" start="100" end="80" center="960,540" easing="in" tween="circle"
|
||||||
|
easin="out" time="240" />
|
||||||
<effect type="fade" start="100" end="0" time="240" />
|
<effect type="fade" start="100" end="0" time="240" />
|
||||||
</animation>
|
</animation>
|
||||||
<centerleft>50%</centerleft>
|
<centerleft>50%</centerleft>
|
||||||
|
|
Loading…
Reference in a new issue