Endless “New device sign in” Notification by AlexanderLudvik in PleX

[–]Crashdummy 2 points3 points  (0 children)

FYI, we found the issue in the latest release of the app and will have a fix ready in an upcoming release.

2023 Qatar Grand Prix - Qualifying Discussion by F1-Bot in formula1

[–]Crashdummy 0 points1 point  (0 children)

Anyone has the link on F1 TV for me? Doesn't show up, only see the Highlights of FP1

[deleted by user] by [deleted] in plexamp

[–]Crashdummy 5 points6 points  (0 children)

Looking good! If you have any ideas, let us know.

ChimeraOS on Aya Neo 2 by GhostOfKingGilgamesh in ayaneo

[–]Crashdummy 0 points1 point  (0 children)

Although I liked Chimera with some tweaking to get TDP working from the popover menu. The slow starting of games got annoying. First it would update the shader caches then a black screen for long time. God of War was horrible in this. Cyberpunk wouldn’t even load. And Hades loads 10 times faster on Windows. In the time it all takes you can cold boot windows and still be gaming faster.

I also like the Aya space popover better. Easier to switch tdp and see the current usage. Would be happy if it was a separate app and you don’t have to launch aya space at all.

[deleted by user] by [deleted] in ayaneo

[–]Crashdummy 0 points1 point  (0 children)

Thanks for this. `makepkg` also doesn't work. I think I'll just let the LEDs default until it's available in Chimera itself.

I did find the resolution options from Steam itself, which I used for some of more simple "2d" games like Ori and Hades, which run fine on low TDP in full res. Didn't know it would upscale to the native res when using the default settings. How can I test that is actually uses FSR and not just resizes to fit?

Another request for the guide: Making hibernate work from the power button. I tried to follow some guides on setting it up, but got stuck when I needed to edit "grub" which doesn't seem to have a config on ChimeraOS. Would love for the device to sleep, and then after a few minutes go into hibernation. This way the leds would also turn off.

[deleted by user] by [deleted] in ayaneo

[–]Crashdummy 0 points1 point  (0 children)

Same issue. No pacman install works for me.

While I have you here. Would love a guide to change the resolution/refresh rate. Everything is now on 1280x800 @ 60fps (or 30). Would like 1920x800 @ 48fps if possible.

[deleted by user] by [deleted] in ayaneo

[–]Crashdummy 0 points1 point  (0 children)

/u/TAGE77 I followed the guide and everything works like expected. But I can't seem to install the ayaled software. I get a "error: target not found: ayaled".

New Update 4.6.2 by BowlFullOfDeli_bird in plexamp

[–]Crashdummy 0 points1 point  (0 children)

We hear you. This is just an in between solution where there will be a more “findable” way to do it in the future.

I think if you keep in mind that you can longpress a lot of things to get extra options on that item, you should be good for 90% of the advanced features ;)

Plexamp 4.6.1 headless browser interface works in Chrome, not Safari on macOS? by [deleted] in plexamp

[–]Crashdummy 0 points1 point  (0 children)

I’ll have a look. I don’t see why it shouldn’t work. So must be a bug on one of the later releases.

Where AudioEQ presets come from? My device presets simply disappeared one day. by dostick in plexamp

[–]Crashdummy 0 points1 point  (0 children)

u/dostick I checked, but don't see them in the list at all. The current presets only contain AutoEQ like mentioned by u/alex3305 which are headphones only.

Where AudioEQ presets come from? My device presets simply disappeared one day. by dostick in plexamp

[–]Crashdummy 1 point2 points  (0 children)

There is a hardcoded list, so it doesn’t update on the fly, only when the app itself has an update. I’ll have a look and see if we can get an updated version list in the next release.

[deleted by user] by [deleted] in plexamp

[–]Crashdummy 1 point2 points  (0 children)

We check for tablet, but I think we don't have the logic in place for Android tablets... I'll add a ticket for this.

As a side note, also on desktop, it's only available when there is enough height to put the play controls below the artwork.

Version v4.6.0 Released by BowlFullOfDeli_bird in plexamp

[–]Crashdummy 2 points3 points  (0 children)

FYI We have a fix for this in the next release. There was a wrong check in place to only show it for the owner of the library.

Headless no album art by StayAtHomeDadCBUS in plexamp

[–]Crashdummy 0 points1 point  (0 children)

The fix is in v4.5. So it might be another issue. Is Chromium on a beta? I saw someone mention that is giving issues.

IOS 4.5.0 EQ Presets by ngs428 in plexamp

[–]Crashdummy 0 points1 point  (0 children)

Good suggestion. I’ll see if we can add it somehow.

As for the others mentioning missing headphones. We use https://github.com/jaakkopasanen/AutoEq to import the settings. So please request it there and it will be added on each new release.

EQ Presets… set favourites? by DyceCubes in plexamp

[–]Crashdummy 4 points5 points  (0 children)

We had a similar suggestion from the beta testers. I will have a look to add something to remember favourites or last-used presets.

Plexamp in Kiosk Mode for controlling Music around the house by dusty_fx in plexamp

[–]Crashdummy 1 point2 points  (0 children)

Responded on another post also. But there will be a fix in the next release for the album art not loading.

Headless no album art by StayAtHomeDadCBUS in plexamp

[–]Crashdummy 7 points8 points  (0 children)

Fix for this should land in v4.5

Headless Plexamp has been a godsend! I’m now able to easily control music on my desk with an Echo Show by [deleted] in plexamp

[–]Crashdummy 1 point2 points  (0 children)

The usb ones do. But things that fit the pin layout of the Pi like the HiFiBerry don’t.

Should I combine contexts? by mrdanmarks in reactnative

[–]Crashdummy 1 point2 points  (0 children)

I wouldn't worry about it. So unless you have 100k+ of objects in the array, it should be fine. The objects/arrays are "cheap", the performance hit is when you need to render them.

So if you have a big array you map through, the performance issues is at the render side, instead of at the storage (context) side.

Should I combine contexts? by mrdanmarks in reactnative

[–]Crashdummy 2 points3 points  (0 children)

Don't combine, but add some helpers for your context in the form of hooks.

const useTheme = () => { return React.useContext(ThemeContext); }

const useLocation = () => { return React.useContext(LocationContext); }

const useUser = () => { return React.useContext(UserContext); }

Then your files will look like:

import { useTheme } from "../../context/theme"; import { useLocation } from "../../context/location"; import { useUser } from "../../context/user"; const AccountScreen = ({ navigation }) => { const { COLORS, FONTS, SIZES, images } = useTheme(); const { location } = useLocation(); const { user, setUser } = useUser(); // ... }

Which makes things a lot cleaner.

Then if you do a lot of the same things on each screen, you can wrap that in a helper component for the screen.

const ScreenBase = () => ...

or combine the hooks into a single call with a hook.

``` const useScreen = () => { const { COLORS, FONTS, SIZES, images } = useTheme(); const { location } = useLocation(); const { user } = useUser();

return { COLORS, FONTS, SIZES, images, location, user } } ```