mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Merge pull request #2212 from thornbill/use-package-version
Use package version
This commit is contained in:
commit
d02702f7fb
2 changed files with 3 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "jellyfin-web",
|
"name": "jellyfin-web",
|
||||||
"version": "0.0.0",
|
"version": "10.8.0",
|
||||||
"description": "Web interface for Jellyfin",
|
"description": "Web interface for Jellyfin",
|
||||||
"repository": "https://github.com/jellyfin/jellyfin-web",
|
"repository": "https://github.com/jellyfin/jellyfin-web",
|
||||||
"license": "GPL-2.0-or-later",
|
"license": "GPL-2.0-or-later",
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
|
import { version as appVersion } from '../../package.json';
|
||||||
import appSettings from '../scripts/settings/appSettings';
|
import appSettings from '../scripts/settings/appSettings';
|
||||||
import browser from '../scripts/browser';
|
import browser from '../scripts/browser';
|
||||||
import { Events } from 'jellyfin-apiclient';
|
import { Events } from 'jellyfin-apiclient';
|
||||||
|
@ -8,7 +8,6 @@ import globalize from '../scripts/globalize';
|
||||||
import profileBuilder from '../scripts/browserDeviceProfile';
|
import profileBuilder from '../scripts/browserDeviceProfile';
|
||||||
|
|
||||||
const appName = 'Jellyfin Web';
|
const appName = 'Jellyfin Web';
|
||||||
const appVersion = '10.7.0';
|
|
||||||
|
|
||||||
function getBaseProfileOptions(item) {
|
function getBaseProfileOptions(item) {
|
||||||
const disableHlsVideoAudioCodecs = [];
|
const disableHlsVideoAudioCodecs = [];
|
||||||
|
@ -29,7 +28,7 @@ function getBaseProfileOptions(item) {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
function getDeviceProfile(item, options = {}) {
|
function getDeviceProfile(item) {
|
||||||
return new Promise(function (resolve) {
|
return new Promise(function (resolve) {
|
||||||
let profile;
|
let profile;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue