Discuss Scratch

Rosics
Scratcher
500+ posts

The List of Bugs

NotK3ndricAltAgain wrote:

-snip-
This topic also says the bug.

8to16 wrote:

Please add https://scratch-mit-edu.ezproxyberklee.flo.org/discuss/topic/366461/ as a useful link, so that we can start trimming down the number of stickies in the BaG forum even further

8to16 wrote:

Username: 8to16
Source (if applicable): https://scratch-mit-edu.ezproxyberklee.flo.org/discuss/topic/760200
Bug: Projects sometimes disappear from the front page.
Image (If don't have one, I will make my own): https://u.cubeupload.com/gl12/Screenshot20240511at.png (image by o97doge)
Done!


Paddle also said to remove “official” from the name.
Rosics
Scratcher
500+ posts

The List of Bugs

Updated this to be at the top and a new part:

  • New Scratchers get stuck on the community guidelines when transferring to Scratcher, specifically “treat others with respect”, the button is just invisible on the bottom right. source You can also press Ctrl+A (Command+A).
scratchcode1_2_3
Scratcher
1000+ posts

The List of Bugs

so um
has anyone read my posts
https://scratch-mit-edu.ezproxyberklee.flo.org/discuss/post/8312603/

scratchcode1_2_3 wrote:

(#52)

Rosics wrote:

(#1)
  • The robot effect turns up the volume way more then it should've which hurts your ears.

Before

for me it's the opposite?

8to16
Scratcher
1000+ posts

The List of Bugs

i don't want to call it TLOB
just call it “Consolidated List of Bugs” so I can call it CLOB instead (which makes more sense than TLOB or TOLOB)
8to16
Scratcher
1000+ posts

The List of Bugs

8to16 wrote:

(#64)
i don't want to call it TLOB
just call it “Consolidated List of Bugs” so I can call it CLOB instead (which makes more sense than TLOB or TOLOB)
just sending you that notification again in case you missed it.
8to16
Scratcher
1000+ posts

The List of Bugs

8to16 wrote:

(#65)

8to16 wrote:

(#64)
i don't want to call it TLOB
just call it “Consolidated List of Bugs” so I can call it CLOB instead (which makes more sense than TLOB or TOLOB)
just sending you that notification again in case you missed it.
50_scratch_tabs
Scratcher
1000+ posts

The List of Bugs

8to16 wrote:

8to16 wrote:

(#65)

8to16 wrote:

(#64)
i don't want to call it TLOB
just call it “Consolidated List of Bugs” so I can call it CLOB instead (which makes more sense than TLOB or TOLOB)
just sending you that notification again in case you missed it.
It's really not a big deal.
iiucandyfloss
Scratcher
1000+ posts

The List of Bugs

About the popup not showing, I'm pretty sure that's not a bug. You just need to fullscreen
georgek0
Scratcher
70 posts

The List of Bugs

scratchcode1_2_3 wrote:

Rosics wrote:

wms2024_163 wrote:

you need to add that the new scratcher to scratcher slideshow does not work - in the new scratcher to scratcher slideshow, you are taken to a slideshow of the community guidelines where you get stuck on the “Scratchers treat everyone with respect.” section but can't progress.

this bug means no new scratchers at the moment can become scratchers.
Added.
Actually, it does work, the button is just invisible.
You could also reload the page and then you‘re a Scratcher instead looking for the button in DevTools. That‘s what I did with my alt.
georgek0
Scratcher
70 posts

The List of Bugs

And there‘s another bug: the Tutorials page link results in a server error
alboxer2000
Scratcher
500+ posts

The List of Bugs

If you put an unsupported emoji in a profile comment, the error message looks weird:
Arsick_
Scratcher
1 post

The List of Bugs

Scratch deleted music in my RUN 5.0 project.
2016s4m29
Scratcher
1000+ posts

The List of Bugs

The New Scratcher bug has been fixed as of today
Voxalice
Scratcher
1000+ posts

The List of Bugs

2016s4m29 wrote:

(#73)
The New Scratcher bug has been fixed as of today
Sorry, not yet (I just checked). Hopefully, it will be fixed soon.
Rosics
Scratcher
500+ posts

The List of Bugs

Can someone provide screenshots on what new scratchers see when they see the bug?

alboxer2000 wrote:

If you put an unsupported emoji in a profile comment, the error message looks weird:
Hm, Added.

Arsick_ wrote:

Scratch deleted music in my RUN 5.0 project.
That's one of the bugs.
2016s4m29
Scratcher
1000+ posts

The List of Bugs

Voxalice wrote:

(#74)

2016s4m29 wrote:

(#73)
The New Scratcher bug has been fixed as of today
Sorry, not yet (I just checked). Hopefully, it will be fixed soon.
I was told that they had fixed the bug
50_scratch_tabs
Scratcher
1000+ posts

The List of Bugs

2016s4m29 wrote:

Voxalice wrote:

(#74)

2016s4m29 wrote:

(#73)
The New Scratcher bug has been fixed as of today
Sorry, not yet (I just checked). Hopefully, it will be fixed soon.
I was told that they had fixed the bug
Interesting. I might do some overrides or something to test that!
Rosics
Scratcher
500+ posts

The List of Bugs

50_scratch_tabs wrote:

Interesting. I might do some overrides or something to test that!
How would you do that?

Last edited by Rosics (Jan. 4, 2025 16:41:46)

50_scratch_tabs
Scratcher
1000+ posts

The List of Bugs

Rosics wrote:

50_scratch_tabs wrote:

Interesting. I might do some overrides or something to test that!
How would you do that?
It's a Chrome DevTools thing. I have also found a JavaScript Console fix, so I'll edit in a minute to explain.

Developer info about the new scratcher bug:
How to replicate
You will need Google Chrome or another Chromium-based browser.
Go to the link to become a Scratcher
Open the console by pressing Ctrl+Shift+J
Go to the network tab.
Find the request to “/session”
Right click it and click “Override content”
Pick a folder if it asks you to. Mine is named “chrome_overrides”.
Now if you can do this on a test account that's a New Scratcher, just change
"invited_scratcher": false,
to
"invited_scratcher": true,
If you're on a Scratcher account, you probably need to change
    "scratcher": true,
"new_scratcher": false,
to
    "scratcher": false,
"new_scratcher": true,
as well. Now, reload. You should be able to see the invitation and go through at least enough to see the bug in action.

Cause of the issue
You'll need to understand HTML.
For some reason, the buttons have a “transparent” class, and removing that class fixes it. So, I've developed this JS console fix below:

JavaScript console fix
Scratch Team, sorry if I'm not allowed to post this, so feel free to remove it.
Open the console with ctrl+shift+I (firefox) or ctrl+shift+j (chrome) and paste this in: (your browser may make you type “allow pasting”)
while (document.querySelector(".navigation-button.transparent")) {
    document.querySelector(".navigation-button.transparent").classList.remove("transparent");
}
This removes the bad class from the buttons and you will only need to do it once.

Additionally, this issue seems to have been fixed in Scratch's source code, so we only have to wait for these changes to come to the main site.

Last edited by 50_scratch_tabs (Jan. 4, 2025 17:08:07)

50_scratch_tabs
Scratcher
1000+ posts

The List of Bugs

See the post above for the cause of the New Scratcher bug, how to replicate without waiting 2 weeks, and a JavaScript fix. Just posting this so people get a notification.

Also as I said above it's fixed in the Scratch-www repo, now we just need that on the main site.

Last edited by 50_scratch_tabs (Jan. 4, 2025 17:11:43)

Powered by DjangoBB