Skip to content

Commit

Permalink
Bump version to 5.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
redphx committed Jul 1, 2024
1 parent 0213b86 commit f027565
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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.0.1
// @version 5.1.0
// ==/UserScript==
4 changes: 2 additions & 2 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.1.0-beta
// @version 5.1.0
// @description Improve Xbox Cloud Gaming (xCloud) experience
// @author redphx
// @license MIT
Expand Down Expand Up @@ -111,7 +111,7 @@ function deepClone(obj) {
return obj;
return JSON.parse(JSON.stringify(obj));
}
var SCRIPT_VERSION = "5.1.0-beta", AppInterface = window.AppInterface;
var SCRIPT_VERSION = "5.1.0", 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, STATES = {
isPlaying: !1,
Expand Down

2 comments on commit f027565

@KingNothing81
Copy link

@KingNothing81 KingNothing81 commented on f027565 Jul 1, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi … just a little idea: With the additional new “Stream Settings” button on top of the script settings, how about moving the “Android App Settings” button from there to the Guide menu? I think it would make perfect sense to have it above the “Close App” button you’ve added not long ago. But many thanks for keeping the button. Just seeing the changelog before updating, I first thought you replaced it with the new button.

@redphx
Copy link
Owner Author

@redphx redphx commented on f027565 Jul 1, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please don't use code comment for reporting bug or suggesting feature. Crewte issue/discussion instead.

Please sign in to comment.