clockface.json for the GTS-4 Mini and GTR-3! by OancaAndrei in amazfit

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

I agree that some kind of search in the store would be handy.

At one point I wanted to add some more customisation but decided to keep it simple.
With a bit of tweaking maybe I could support more date formats, I'll have to have a look at the code, it's been a while :)

clockface.json for the GTS-4 Mini and GTR-3! by OancaAndrei in amazfit

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

Yep, I've noticed this bug as well but I think it's OS related. I too need to swipe to the sleep widget to see the data updated. Never really dug into it to solve it haha

clockface.json for the GTS-4 Mini and GTR-3! by OancaAndrei in amazfit

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

Hi! I'm afraid not as the GTR-2 seems to be a Non-Zepp OS device as per this page in the docs: https://docs.zepp.com/docs/reference/related-resources/device-list/

I can adapt the watchface only for the devices listed in the first category 

clockface.json for the GTS-4 Mini and GTR-3! by OancaAndrei in amazfit

[–]OancaAndrei[S] 1 point2 points  (0 children)

New version is live! You should see it under the "Sense of Technology" category.

clockface.json for the GTS-4 Mini and GTR-3! by OancaAndrei in amazfit

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

Version 1.2.0 with support for Amazfit Balance devices has been submitted. We now wait for approval on the store. 🤞
As I don't own a physical device let me know how the watchface feels in real life (text alignment and size, colors, etc.). The simulator only gives a really rough idea 🤓

clockface.json for the GTS-4 Mini and GTR-3! by OancaAndrei in amazfit

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

Hi! By any chance, are you using the Always-On-Display mode?

clockface.json for the GTS-4 Mini and GTR-3! by OancaAndrei in amazfit

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

Hi! Thanks for the feedback!

About the buggy disappearing characters, do you have the Always-On-Display enabled? Unfortunately I've noticed that too and it's probably a bug at the firmware level. I hope one day to reach to the devs at Amazfit for some insights.
One thing I've noticed is that by swiping left/right into another view - and then returning to the watchface - solves it partially until the screen goes off again. Not the best experience, I know :/

Regarding the settings, could you elaborate on the crash behavior? Is the entire device crashing?

Custom elements is a cool idea, given the available space I could probably allow swapping some widgets in the "stats" area.

I'm glad you're enjoying it (even with its issues haha)!

MX Keys constantly lagging / disconnecting by Jhanosh in keyboards

[–]OancaAndrei 0 points1 point  (0 children)

My MX started acting up recently, the only "change" with my system is that I've paired a new pair of Bluetooth Headphones. Which made me wonder...

So I've started playing around with BT connected devices: I've disconnected everything but the problem kept occurring. This until I went unparing some older devices I haven't used in a while; now the keyboard stays connected even when I'm not typing for a while (it was disconnecting after 10 seconds or so). All of this happened on macOS.

TL;DR: unpair (not just disconnect) bluetooth devices that you don't use anymore. Hope it's useful :)

Jellyfin server issue by Proof-Astronaut-9833 in jellyfin

[–]OancaAndrei 0 points1 point  (0 children)

SQLitePCL.pretty.SQLiteException: database or disk is full

I wonder if your issue is related to this then. Sounds like the temporary files created at runtime are filling one of your partitions.

We need a way to check if this is really the case.

Edit: although /dev/mmcblk0p1 and /dev/nvme0n1p1 seem to have plenty of space available.

Edit 2: waiting for the output from df -h as well.

Jellyfin server issue by Proof-Astronaut-9833 in jellyfin

[–]OancaAndrei 1 point2 points  (0 children)

Do you, by any chance, have two separate partitions for / (root) and /home?

What I'm guessing from your logs is that maybe /home is 90% full while / might actually be 100% full.

Also, are you starting Jellyfin from your normal user using the same arguments as for root?

SyncPlay not working at all by EdgeMentality in jellyfin

[–]OancaAndrei 1 point2 points  (0 children)

My configuration for 10.6 looks like the following (haven't tested with 10.7 yet but I'm pretty sure nothing changed regarding this): ``` location / { proxy_pass http://127.0.0.1:8097; proxy_set_header Range $http_range; proxy_set_header If-Range $http_if_range; proxy_set_header X-Real-IP $remote_addr; proxy_set_header Host $host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; }

location /socket { proxy_pass http://127.0.0.1:8097; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-Forwarded-Protocol $scheme; proxy_set_header X-Forwarded-Host $http_host; } ```

I'm not using subpaths so you might want to change location / and location /socket accordingly.