Skip to content

Commit 8e52e89

Browse files
Bump aframe-master dist/ builds. (d16f727...938d945)
1 parent 938d945 commit 8e52e89

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

dist/aframe-master.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24590,7 +24590,7 @@ __webpack_require__(/*! ./core/a-mixin */ "./src/core/a-mixin.js");
2459024590
// Extras.
2459124591
__webpack_require__(/*! ./extras/components/ */ "./src/extras/components/index.js");
2459224592
__webpack_require__(/*! ./extras/primitives/ */ "./src/extras/primitives/index.js");
24593-
console.log('A-Frame Version: 1.6.0 (Date 2024-11-13, Commit #85583169)');
24593+
console.log('A-Frame Version: 1.6.0 (Date 2024-11-15, Commit #938d9457)');
2459424594
console.log('THREE Version (https://github.com/supermedium/three.js):', THREE.REVISION);
2459524595

2459624596
// Wait for ready state, unless user asynchronously initializes A-Frame.
@@ -27237,9 +27237,10 @@ function isAppleVisionPro() {
2723727237
// Safari for Apple Vision Pro presents itself as a desktop browser.
2723827238
var isMacintosh = navigator.userAgent.includes('Macintosh');
2723927239
// Discriminates between a "real" desktop browser and Safari for Vision Pro.
27240-
// Note: need to check for posible false positives on iPhones / iPads.
2724127240
var hasFiveTouchPoints = navigator.maxTouchPoints === 5;
27242-
return isMacintosh && hasFiveTouchPoints;
27241+
// isWebXRAvailable discriminates between Vision Pro and iPad / iPhone.
27242+
// This will no longer work once WebXR ships in iOS / iPad OS.
27243+
return isMacintosh && hasFiveTouchPoints && isWebXRAvailable;
2724327244
}
2724427245
module.exports.isAppleVisionPro = isAppleVisionPro;
2724527246
function isIOS() {

dist/aframe-master.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/aframe-master.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/aframe-master.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ require('./core/a-mixin');
5656
require('./extras/components/');
5757
require('./extras/primitives/');
5858

59-
console.log('A-Frame Version: 1.6.0 (Date 2024-11-13, Commit #85583169)');
59+
console.log('A-Frame Version: 1.6.0 (Date 2024-11-15, Commit #938d9457)');
6060
console.log('THREE Version (https://github.com/supermedium/three.js):',
6161
THREE.REVISION);
6262

0 commit comments

Comments
 (0)