Skip to content

Commit

Permalink
Bump version to 5.8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
redphx committed Oct 12, 2024
1 parent 27abab8 commit 2eea9ce
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions dist/better-xcloud.lite.user.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ==UserScript==
// @name Better xCloud (Lite)
// @namespace https://github.com/redphx
// @version 5.8.3-beta
// @version 5.8.3
// @description Improve Xbox Cloud Gaming (xCloud) experience
// @author redphx
// @license MIT
Expand Down Expand Up @@ -118,7 +118,7 @@ function deepClone(obj) {
if (!obj) return {};
return JSON.parse(JSON.stringify(obj));
}
var SCRIPT_VERSION = "5.8.3-beta", SCRIPT_VARIANT = "lite", AppInterface = window.AppInterface;
var SCRIPT_VERSION = "5.8.3", SCRIPT_VARIANT = "lite", AppInterface = window.AppInterface;
UserAgent.init();
var userAgent = window.navigator.userAgent.toLowerCase(), isTv = userAgent.includes("smart-tv") || userAgent.includes("smarttv") || /\baft.*\b/.test(userAgent), isVr = window.navigator.userAgent.includes("VR") && window.navigator.userAgent.includes("OculusBrowser"), browserHasTouchSupport = "ontouchstart" in window || navigator.maxTouchPoints > 0, userAgentHasTouchSupport = !isTv && !isVr && browserHasTouchSupport, supportMkb = AppInterface || !userAgent.match(/(android|iphone|ipad)/), STATES = {
supportedRegion: !0,
Expand Down Expand Up @@ -1588,7 +1588,7 @@ class GlobalSettingsStorage extends BaseSettingsStore {
params: {
exactTicks: 10,
customTextValue: (value) => {
return value = parseInt(value), value === 60 ? t("unlimited") : value + "FPS";
return value = parseInt(value), value === 60 ? t("unlimited") : value + "fps";
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion dist/better-xcloud.meta.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// ==UserScript==
// @name Better xCloud
// @namespace https://github.com/redphx
// @version 5.8.2
// @version 5.8.3
// ==/UserScript==
6 changes: 3 additions & 3 deletions dist/better-xcloud.user.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ==UserScript==
// @name Better xCloud
// @namespace https://github.com/redphx
// @version 5.8.3-beta
// @version 5.8.3
// @description Improve Xbox Cloud Gaming (xCloud) experience
// @author redphx
// @license MIT
Expand Down Expand Up @@ -120,7 +120,7 @@ function deepClone(obj) {
if (!obj) return {};
return JSON.parse(JSON.stringify(obj));
}
var SCRIPT_VERSION = "5.8.3-beta", SCRIPT_VARIANT = "full", AppInterface = window.AppInterface;
var SCRIPT_VERSION = "5.8.3", SCRIPT_VARIANT = "full", AppInterface = window.AppInterface;
UserAgent.init();
var userAgent = window.navigator.userAgent.toLowerCase(), isTv = userAgent.includes("smart-tv") || userAgent.includes("smarttv") || /\baft.*\b/.test(userAgent), isVr = window.navigator.userAgent.includes("VR") && window.navigator.userAgent.includes("OculusBrowser"), browserHasTouchSupport = "ontouchstart" in window || navigator.maxTouchPoints > 0, userAgentHasTouchSupport = !isTv && !isVr && browserHasTouchSupport, supportMkb = AppInterface || !userAgent.match(/(android|iphone|ipad)/), STATES = {
supportedRegion: !0,
Expand Down Expand Up @@ -1615,7 +1615,7 @@ class GlobalSettingsStorage extends BaseSettingsStore {
params: {
exactTicks: 10,
customTextValue: (value) => {
return value = parseInt(value), value === 60 ? t("unlimited") : value + "FPS";
return value = parseInt(value), value === 60 ? t("unlimited") : value + "fps";
}
}
},
Expand Down

0 comments on commit 2eea9ce

Please sign in to comment.