O
Overlayed•2mo ago
somebody

overlay not showing up (mac os)

i cant see anything from the app and when i open i cant acces my apps cane somebody help me? when i click on show settings it only shows a whitebar
109 Replies
somebody
somebodyOP•2mo ago
and when i say show overlay it does nothing to @mod pls help me
Hacksore
Hacksore•2mo ago
I have no idea but if you can show a screen shot šŸ™
somebody
somebodyOP•2mo ago
No description
somebody
somebodyOP•2mo ago
this is from the: open devtools (settings window)/settings
Hacksore
Hacksore•2mo ago
No description
Hacksore
Hacksore•2mo ago
Click that and see if there are errors
somebody
somebodyOP•2mo ago
SyntaxError: Unexpected identifier 'Dn' ooh and i cant click in the mid of my screen i think there is a invisible obyect there
Hacksore
Hacksore•2mo ago
Can you screenshot the error?
somebody
somebodyOP•2mo ago
sure
somebody
somebodyOP•2mo ago
No description
Hacksore
Hacksore•2mo ago
😭😭😭 that error doesn't seem to give me ideas Are you on an older macOS version?
somebody
somebodyOP•2mo ago
mmmmm maby šŸ˜„
somebody
somebodyOP•2mo ago
No description
somebody
somebodyOP•2mo ago
@Hacksore
Hacksore
Hacksore•2mo ago
It should work with that version but you'll probably have to try deleting the apps configuration and try opening it again
somebody
somebodyOP•2mo ago
ok help me i will screen share
Hacksore
Hacksore•2mo ago
delete this folder ~/Library/Application\ Support/com.overlayed.dev close overlayed first tho
somebody
somebodyOP•2mo ago
its not there
Hacksore
Hacksore•2mo ago
can you change to list view?
somebody
somebodyOP•2mo ago
like this?
Hacksore
Hacksore•2mo ago
yeah now stort by name sort* ok now try
somebody
somebodyOP•2mo ago
open?
Hacksore
Hacksore•2mo ago
yeah
somebody
somebodyOP•2mo ago
does nothing
Hacksore
Hacksore•2mo ago
show main devtools yeah
somebody
somebodyOP•2mo ago
this one?
Hacksore
Hacksore•2mo ago
press cmd+r in the devtools
somebody
somebodyOP•2mo ago
nope not working
Hacksore
Hacksore•2mo ago
hmm i have no idea what's going on here
somebody
somebodyOP•2mo ago
me to
Hacksore
Hacksore•2mo ago
can you expand the error the little arrow
somebody
somebodyOP•2mo ago
cant use half of my screen
Hacksore
Hacksore•2mo ago
No description
Hacksore
Hacksore•2mo ago
the arrorw here if you click it?
somebody
somebodyOP•2mo ago
did it
Hacksore
Hacksore•2mo ago
you a minecrafter?
somebody
somebodyOP•2mo ago
ye
Hacksore
Hacksore•2mo ago
have you used modrinth?
somebody
somebodyOP•2mo ago
i want to use it in my games to see who i am whift pp in the call
Hacksore
Hacksore•2mo ago
does that work? ok modrinth uses the same tech overlayed uses so it's not that
somebody
somebodyOP•2mo ago
what now?
Hacksore
Hacksore•2mo ago
have you tried the canary version?
overlayed
overlayed•2mo ago
:overlayed: Install the canary desktop app by visiting https://overlayed.dev/canary
Overlayed - Canary
Download the latest canary build
somebody
somebodyOP•2mo ago
not working either
Hacksore
Hacksore•2mo ago
must be something from older version of macOS causing this is my guess the error is not helpful at all either 😦
somebody
somebodyOP•2mo ago
so youre telling me i cant use it? 😦
Hacksore
Hacksore•2mo ago
i need to figure out what's causing it to make a fix
Hacksore
Hacksore•2mo ago
right now this is all we get from the error which is hard to tell
No description
Hacksore
Hacksore•2mo ago
often times it will give a far more descriptive reason can you do this for me in the devtools main console paste this in
"testing" ?? "not set"
"testing" ?? "not set"
Hacksore
Hacksore•2mo ago
it should give this
No description
Hacksore
Hacksore•2mo ago
but if it gives a syntax error means the webkit version is too old šŸ˜‚ and i can fix that
somebody
somebodyOP•2mo ago
i need to go do smt brb done
Hacksore
Hacksore•2mo ago
@somebody let me know if that's what is causing the error and i can push a fix for canary if that's the case
somebody
somebodyOP•2mo ago
oke output: 'testing'
Hacksore
Hacksore•2mo ago
ok so it's not that then let me figure out how to get your webkit version
somebody
somebodyOP•2mo ago
oke
Hacksore
Hacksore•2mo ago
navigator.userAgent
navigator.userAgent
No description
Hacksore
Hacksore•2mo ago
can you do that
somebody
somebodyOP•2mo ago
Last login: Mon Mar 10 16:01:59 on console [3] 1274 somebody ~ % defaults read /Applications/Safari.app/Contents/Info CFBundleVersion 16615.3.12.11.5 somebody~ % defaults read /System/Library/Frameworks/WebKit.framework/Resources/Info CFBundleVersion 16611.3.10.1.19 somebody ~ % defaults read /Applications/Safari.app/Contents/Info CFBundleVersion got it whift chatgpt XD
Hacksore
Hacksore•2mo ago
lol
somebody
somebodyOP•2mo ago
what now?
Hacksore
Hacksore•2mo ago
ok one more syntax to try
a = 1;
a ??= 2
a = 1;
a ??= 2
paste that into the console need to go but will look after work
somebody
somebodyOP•2mo ago
its says 1 i got a popup saying syncservice is dangeroush move it to the trashcane i moved it to the trashcane what now? @Hacksore
Hacksore
Hacksore•2mo ago
@somebody paste this code into the dev tools main window
(function() {
const results = {
'Arrow Functions': false,
'Classes': false,
'Template Literals': false,
'Destructuring Assignment': false,
'Default Parameters': false,
'Promises': false,
'Let and Const': false,
'Spread Operator': false,
'Modules': false,
'Async/Await': false,
};

// Test Arrow Functions
try {
new Function('() => {}')();
results['Arrow Functions'] = true;
} catch (e) {}

// Test Classes
try {
class TestClass {}
results['Classes'] = true;
} catch (e) {}

// Test Template Literals
try {
const testString = `Hello, World!`;
results['Template Literals'] = true;
} catch (e) {}

// Test Destructuring Assignment
try {
const { a } = { a: 1 };
results['Destructuring Assignment'] = true;
} catch (e) {}

// Test Default Parameters
try {
function testFunc(a = 1) {}
results['Default Parameters'] = true;
} catch (e) {}

// Test Promises
try {
new Promise((resolve) => resolve());
results['Promises'] = true;
} catch (e) {}

// Test Let and Const
try {
let testLet = 1;
const testConst = 2;
results['Let and Const'] = true;
} catch (e) {}

// Test Spread Operator
try {
const arr = [1, 2, 3];
const newArr = [...arr];
results['Spread Operator'] = true;
} catch (e) {}

// Test Modules (using dynamic import)
try {
import('./dummy-module.js').then(() => {
results['Modules'] = true;
}).catch(() => {});
} catch (e) {}

// Test Async/Await
try {
async function testAsync() {
await Promise.resolve();
}
testAsync();
results['Async/Await'] = true;
} catch (e) {}

// Log results
setTimeout(() => {
console.log('ES6 Feature Support Report:');
for (const [feature, supported] of Object.entries(results)) {
console.log(`${feature}: ${supported ? 'Supported' : 'Not Supported'}`);
}
}, 100); // Delay to ensure async tests complete
})();
(function() {
const results = {
'Arrow Functions': false,
'Classes': false,
'Template Literals': false,
'Destructuring Assignment': false,
'Default Parameters': false,
'Promises': false,
'Let and Const': false,
'Spread Operator': false,
'Modules': false,
'Async/Await': false,
};

// Test Arrow Functions
try {
new Function('() => {}')();
results['Arrow Functions'] = true;
} catch (e) {}

// Test Classes
try {
class TestClass {}
results['Classes'] = true;
} catch (e) {}

// Test Template Literals
try {
const testString = `Hello, World!`;
results['Template Literals'] = true;
} catch (e) {}

// Test Destructuring Assignment
try {
const { a } = { a: 1 };
results['Destructuring Assignment'] = true;
} catch (e) {}

// Test Default Parameters
try {
function testFunc(a = 1) {}
results['Default Parameters'] = true;
} catch (e) {}

// Test Promises
try {
new Promise((resolve) => resolve());
results['Promises'] = true;
} catch (e) {}

// Test Let and Const
try {
let testLet = 1;
const testConst = 2;
results['Let and Const'] = true;
} catch (e) {}

// Test Spread Operator
try {
const arr = [1, 2, 3];
const newArr = [...arr];
results['Spread Operator'] = true;
} catch (e) {}

// Test Modules (using dynamic import)
try {
import('./dummy-module.js').then(() => {
results['Modules'] = true;
}).catch(() => {});
} catch (e) {}

// Test Async/Await
try {
async function testAsync() {
await Promise.resolve();
}
testAsync();
results['Async/Await'] = true;
} catch (e) {}

// Log results
setTimeout(() => {
console.log('ES6 Feature Support Report:');
for (const [feature, supported] of Object.entries(results)) {
console.log(`${feature}: ${supported ? 'Supported' : 'Not Supported'}`);
}
}, 100); // Delay to ensure async tests complete
})();
somebody
somebodyOP•2mo ago
oke
Hacksore
Hacksore•2mo ago
just updated it get the latest one
somebody
somebodyOP•2mo ago
in the console?
Hacksore
Hacksore•2mo ago
yeah
somebody
somebodyOP•2mo ago
it says smt [Log] ES6 Feature Support Report: [Log] Arrow Functions: Supported [Log] Classes: Supported [Log] Template Literals: Supported [Log] Destructuring Assignment: Supported [Log] Default Parameters: Supported [Log] Promises: Supported [Log] Let and Const: Supported [Log] Spread Operator: Supported [Log] Modules: Not Supported [Log] Async/Await: Supported
Hacksore
Hacksore•2mo ago
[Log] Modules: Not Supported is sus šŸ’€
somebody
somebodyOP•2mo ago
? my laptop is to old?
Hacksore
Hacksore•2mo ago
i think so 😦 if you could update safari then it probably would work but the only way to do that is update macOS i think that was a false positive tho yeah i get the same so that's not related [Log] ES6 Feature Support Report: (index-HMD_OZFP.js, line 87) [Log] Arrow Functions: Supported (index-HMD_OZFP.js, line 87) [Log] Classes: Supported (index-HMD_OZFP.js, line 87) [Log] Template Literals: Supported (index-HMD_OZFP.js, line 87) [Log] Destructuring Assignment: Supported (index-HMD_OZFP.js, line 87) [Log] Default Parameters: Supported (index-HMD_OZFP.js, line 87) [Log] Promises: Supported (index-HMD_OZFP.js, line 87) [Log] Let and Const: Supported (index-HMD_OZFP.js, line 87) [Log] Spread Operator: Supported (index-HMD_OZFP.js, line 87) [Log] Modules: Not Supported (index-HMD_OZFP.js, line 87) [Log] Async/Await: Supported (index-HMD_OZFP.js, line 87) [Log] Optional Chaining: Supported (index-HMD_OZFP.js, line 87) [Log] Nullish Coalescing: Supported (index-HMD_OZFP.js, line 87) so if i could figure out what's not working in your 16.x safari i could try and fix it but i need to know what it is let me see if i can use my old macbook HODL
somebody
somebodyOP•2mo ago
HODL? what is that?
Hacksore
Hacksore•2mo ago
just tried on my old mac and seems working on my safari version
No description
Hacksore
Hacksore•2mo ago
can you show me wich safari you have but my mac is on 12.8.3 (monterey)
somebody
somebodyOP•2mo ago
uuuuh whait i got 16.6.1 version maby if u downgrade youre mac to bigsurge and then try we may get some info why it will not work
Hacksore
Hacksore•2mo ago
ill try
somebody
somebodyOP•2mo ago
i will whait i think and?
Hacksore
Hacksore•2mo ago
bro it's gonna take 51 years
No description
Hacksore
Hacksore•2mo ago
go play some craft ill do this after work
somebody
somebodyOP•2mo ago
more like youtube XD
Hacksore
Hacksore•2mo ago
xD lmao
somebody
somebodyOP•2mo ago
i will be silence want smt fun? run this in terminal: curl parrot.live
somebody
somebodyOP•2mo ago
No description
somebody
somebodyOP•2mo ago
XD @Hacksore what now?
Hacksore
Hacksore•2mo ago
i can see that it's somewhat reproducible, though a diff error in a vm
No description
No description
somebody
somebodyOP•2mo ago
oke?
Hacksore
Hacksore•2mo ago
oke?
somebody
somebodyOP•2mo ago
i dont get it XD
overlayed
overlayed•2mo ago
:overlayed: Install the canary desktop app by visiting https://overlayed.dev/canary
Overlayed - Canary
Download the latest canary build
Hacksore
Hacksore•2mo ago
probally like 20 mins
somebody
somebodyOP•2mo ago
oke
Hacksore
Hacksore•2mo ago
new error at least but still some syntax errors, i can try some moar things later
No description
Hacksore
Hacksore•2mo ago
the probably is tauri and older versions so i can fix my app code but need to look at how they expect to support older versions of safar
Hacksore
Hacksore•2mo ago
but something is up in their code ill keep lookin
somebody
somebodyOP•4w ago
oke say when u got the awnser to how i cane fick it and anynews @Hacksore ?
Hacksore
Hacksore•4w ago
I cane not fick it bruv
somebody
somebodyOP•4w ago
oke 😦 i may have found smt
somebody
somebodyOP•4w ago
i dont know if its useful or not but i found some more errors i did a audit scan and demo audit gaves some errors
somebody
somebodyOP•4w ago
No description
somebody
somebodyOP•4w ago
@Hacksore
Hacksore
Hacksore•4w ago
didnt seem helpful looks like accesibility checks
somebody
somebodyOP•4w ago
ye there is not much to see on it
somebody
somebodyOP•4w ago
No description
Hacksore
Hacksore•4w ago
I think we just need to figure out the error in the console fully - if you can do that would help me find a solution
somebody
somebodyOP•4w ago
first i cant code ( i want to learn it but dont know how) second i dont know what it says ( i do a little bit know about python but thats it)

Did you find this page helpful?