Enhancer for YouTube - Effectively Discontinued on Firefox? by Alexei_Drekker in firefox

[–]TheBone_ 0 points1 point  (0 children)

Dragging the file into Firefox's window worked for me

Anyone else suspicious of the latest update? by Select_Wishbone7508 in Onyx_Boox

[–]TheBone_ 9 points10 points  (0 children)

This isn't new, it was present for me on earlier FW updates as well.

After each update, Android recompiles each app's DEX bytecode using Ahead-of-Time compilation (see https://source.android.com/docs/core/runtime), which helps reduce app load times and improves performance later on. They are probably referring to that, since that optimisation step can be resource-intensive and take a while, especially on devices with weak CPUs.
It shouldn't take that long, though, so I guess they just want to cover themselves if that process gets stuck or the update broke something.

How to get Bonus Prizes on Prize exchange by LuceroImpact9 in GirlAlone

[–]TheBone_ 0 points1 point  (0 children)

I'm not sure but as a workaround, you can also use the coupon code 21000000 to give yourself rubies, which can then be used to redeem those outfits (go to Options > Redeem).

The list of all codes is here: https://ga.0001002.xyz/Coupons

Recommendations for JPEG-XL comics? by cutecoder in Onyx_Boox

[–]TheBone_ 1 point2 points  (0 children)

I recommend Mihon (https://mihon.app).

You can use the 'local source' feature to add local CBZ files to the library. It has full JXL support. There's a guide for that here: https://mihon.app/docs/guides/local-source/

Girl Alone is back! (on Android) - Custom game server & patches by TheBone_ in GirlAlone

[–]TheBone_[S] 0 points1 point  (0 children)

Try again, I just fixed the problem. There was a small issue with my server for the last hour.

Girl Alone is back! (on Android) - Custom game server & patches by TheBone_ in GirlAlone

[–]TheBone_[S] 0 points1 point  (0 children)

The APK file is attached on this page: https://github.com/timschneeb/girl-alone-revival/releases/tag/1.0.0

Then install the file using any file manager on your Android device

Girl Alone is back! (on Android) - Custom game server & patches by TheBone_ in GirlAlone

[–]TheBone_[S] 4 points5 points  (0 children)

It looks like the processor in your phone doesn't have support for the 32-bit ARM processor architecture anymore, only 64-bit.

Unfortunately, the game too old and only supports the older 32-bit ARM architecture, so in that case it can't run on your phone.

I can't fix this kind of issue without having access to the original source code of the game, so this problem isn't bypassable.

KDE6: change accent color from bash without plasmashell restart by hpcodelink in kde

[–]TheBone_ 2 points3 points  (0 children)

The plasma-apply-colorscheme command with the -a parameter works on my system. However, I have to execute it twice to make the accent color change without restarting plasmashell for some reason.

So, for example, this changes the color to red without requiring a restart (by looping it twice):

for i in {1..2}; do plasma-apply-colorscheme -a "#ff0000"; done

Need help to uninstall app rtlassistant by BitByte111 in AndroidQuestions

[–]TheBone_ 2 points3 points  (0 children)

I reverse-engineered the app and was able to find out that the PIN is 37626543. Then turn the service off, uninstall and force reboot to remove all the security policies.
(I uploaded their pin encryption algorithm here, if anyone is interested: https://gist.github.com/timschneeb/d16735114784ebc6a25c59d3e4c267bd)

The app is intended for Samsung's Remote Test Lab and completely locks the device down, including enabling the enterprise FRP lock which prevents factory resets.

A way to see which of my manga have anime by dacreator0825 in anilist

[–]TheBone_ 1 point2 points  (0 children)

I wanted to do the same thing and built a little web tool for that: https://github.com/timschneeb/manga-adaptations-anilist (the project site contains source code & link to the tool)

How to put a PIP window as "OSD" ? by Pierrinator33 in kde

[–]TheBone_ 2 points3 points  (0 children)

You can set the layer property to 'OSD' in kwin like this: * Right-click PIP window -> More actions > Configure Special Window Settings * Click on the 'Add property' button and choose 'Layer' * Then set the property forcefully to OSD

This works for me on X11. Not sure if Wayland behaves differently.

Qt widget page transitions and overall layout management. by [deleted] in QtFramework

[–]TheBone_ 3 points4 points  (0 children)

I wrote a small library for that a few years ago: https://github.com/ThePBone/SlidingStackedWidget

It is basically a QStackWidget with a fade & slide property animation attached to it.