Elara Elara6331
Elara6331 commented on issue Elara6331/itd#29 2022-10-25 20:53:45 +00:00
Unable to upload Resources

Perfect, then I will make a new release.

Elara6331 closed issue Elara6331/itd#29 2022-10-25 20:53:45 +00:00
Unable to upload Resources
Elara6331 commented on issue Elara6331/itd#29 2022-10-25 20:04:41 +00:00
Unable to upload Resources

@mathemagician @ljishen Can you please try the new packages? If it's fixed your issues, I can close this and tag a new release with the fixes.

Elara6331 commented on issue Elara6331/itd#29 2022-10-25 19:41:32 +00:00
Unable to upload Resources

Those who have had issues with uploading resources, please try the attached ITD packages. I now assume MTU to be 256 if it isn't available, which should resolve the issues.

Elara6331 pushed to master at Elara6331/itd 2022-10-25 19:38:05 +00:00
f33b3d2b56 Update infinitime library
Elara6331 pushed to master at Elara6331/infinitime 2022-10-25 19:36:37 +00:00
0ad671d3f5 Assume MTU if not available from BlueZ
Elara6331 commented on issue Elara6331/itd#31 2022-10-24 08:48:24 +00:00
While pairing a code does show on my watch, however, no prompt appear on my linux

On the Arch machine, open a terminal window. Stop the itd service using systemctl --user stop itd, and then run ITD_LOGGING_LEVEL=debug itd. It should output a bunch of text. Wait until the…

Elara6331 commented on issue Elara6331/itd#30 2022-10-24 08:45:21 +00:00
Error while using a Ubuntu machine with itd

Can you please give me the output of cat /usr/lib/systemd/user/itd.service so I can see what systemd is complaining about?

Elara6331 commented on issue Elara6331/itd#31 2022-10-24 08:13:55 +00:00
While pairing a code does show on my watch, however, no prompt appear on my linux

Ubuntu does work with ITD, but since you are running Arch, you can install kdialog simply by running sudo pacman -S kdialog. You don't need to uninstall KDE. It should've come with KDE, I'm…

Elara6331 commented on issue Elara6331/itd#31 2022-10-24 06:56:30 +00:00
While pairing a code does show on my watch, however, no prompt appear on my linux

You seem to be running KDE. Can you try to install kdialog and see if that fixes it?

Elara6331 commented on issue Elara6331/itd#30 2022-10-24 02:49:47 +00:00
Error while using a Ubuntu machine with itd

Interesting. ITD's service file certainly contains ExecStart. Can you try 0.0.8?

Elara6331 commented on issue Elara6331/itd#29 2022-10-23 17:24:52 +00:00
Unable to upload Resources

Ah, you're using BlueZ 5.55. That would make sense because it doesn't have the MTU feature. What doesn't make sense is why it didn't return an error and instead just returned an incorrect value.…

Elara6331 pushed to master at lure/lure 2022-10-23 08:16:49 +00:00
c650c1dae0 Fix postremove script decoding
Elara6331 closed pull request Elara6331/itd#27 2022-10-23 08:15:41 +00:00
Notification: Rework priority and position of sender, summary, and body
Elara6331 commented on pull request Elara6331/infinitime#5 2022-10-22 17:49:14 +00:00
Added Navigation service

I actually think that you don't need to make sure it's changed. GATT characteristic writes are fast enough that it doesn't really cause a problem if you update them with the same value. InfiniTime…

Elara6331 commented on pull request Elara6331/infinitime#5 2022-10-21 22:41:38 +00:00
Added Navigation service

Maybe something like

type NavFlag string

const (
	NavFlagArrive     NavFlag = "arrive"
    NavFlagArriveLeft NavFlag = "arrive-left"
    // ...
)

Then, the `NavigationEvent…

Elara6331 commented on pull request Elara6331/infinitime#5 2022-10-21 22:36:24 +00:00
Added Navigation service

I don't see why this is needed. It never gets used except to set its values, so there's no reason for it to be here.

Elara6331 commented on pull request Elara6331/infinitime#5 2022-10-21 22:36:24 +00:00
Added Navigation service

I'd prefer if this accepted a NavigationEvent rather than individual arguments. That also means all the fields in NavigationEvent should be capitalized to export them.

Elara6331 commented on pull request Elara6331/infinitime#5 2022-10-21 22:36:24 +00:00
Added Navigation service

I think it would be better if these were individual constants rather than a slice. That way, they could have their own type and the compiler can guarantee that they're valid instead of needing a separate function. Since that will add quite a bit of code, I think the navigation service can be moved into a separate file.

Elara6331 suggested changes for Elara6331/infinitime#5 2022-10-21 22:36:24 +00:00
Added Navigation service

Thank you for the PR.