• Joined on 2024-03-31
brl pushed to master at brl/citadel 2024-09-09 12:23:37 +00:00
0d13ca38df Fix failure of dns resolution in realms
brl merged pull request brl/citadel#14 2024-09-09 12:23:36 +00:00
Fix failure of dns resolution in realms
brl pushed to master at brl/citadel 2024-09-06 16:00:58 +00:00
bc87a2c629 Added packages needed for flatpak/gnome-software support
brl pushed to master at brl/citadel-tools 2024-09-06 15:49:47 +00:00
24f786cf75 Fix broken realmfs autoresize
2dc8bf2922 Support for flatpak and GNOME Software in Realms
Compare 2 commits »
brl merged pull request brl/citadel-tools#5 2024-09-06 11:53:37 +00:00
Upgrade clap, rpassword and pwhash to prepare for new code using them
brl pushed to master at brl/citadel-tools 2024-09-06 11:53:37 +00:00
2a16bd4c41 Upgrade clap, rpassword and pwhash to prepare for new code using them
brl pushed to master at brl/citadel 2024-09-06 11:52:10 +00:00
e51faa3266 Fix missing svg file in bitbake build process
brl merged pull request brl/citadel#13 2024-09-06 11:52:09 +00:00
Fix missing svg file in bitbake build process
brl commented on pull request brl/citadel#10 2024-08-30 15:50:00 +00:00
Fix double click required for wifi connection and upgrade nma

Pulling in GNOME Keyring to "Fix double click" bug is a change that I'll need more information about.

Whether or not to include GNOME Keyring in Citadel is not such a trivial decision because…

brl commented on pull request brl/citadel-tools#4 2024-08-30 15:31:08 +00:00
Improve error handling by using std lib rust code

PS: Gitea is pretty sweet. I had no idea it would collect all the code review comments I wrote and show them like that.

brl commented on pull request brl/citadel-tools#4 2024-08-30 15:29:03 +00:00
Improve error handling by using std lib rust code

What? Why does this need a Result return type?

brl commented on pull request brl/citadel-tools#4 2024-08-30 15:29:03 +00:00
Improve error handling by using std lib rust code

This is an improvement over the current error handling API?

brl commented on pull request brl/citadel-tools#4 2024-08-30 15:29:03 +00:00
Improve error handling by using std lib rust code

There's a common idiom for using result::Result<T,E> where you create a new type also called Result that specifies the error type you want to use.

brl commented on pull request brl/citadel-tools#4 2024-08-30 15:29:03 +00:00
Improve error handling by using std lib rust code

Is rewriting this to not return a specific exit code the best plan? I don't know if this ever worked as intended to cause the corresponding systemd units to fail and then bring the system into a state where the problem can be understood and diagnosed, but now the utility has an undefined exit code that we may end up relying on.

brl commented on pull request brl/citadel-tools#4 2024-08-30 15:29:03 +00:00
Improve error handling by using std lib rust code

No, don't do that. It misleads reader to think there is a return value from both of these functions.

brl commented on pull request brl/citadel-tools#4 2024-08-30 15:29:03 +00:00
Improve error handling by using std lib rust code

Ooops, you forgot to replace a libcitadel::error::Error the 'improved' version and everything still works when you return it. Are you still sure rewriting everything was what you needed to do?

brl commented on pull request brl/citadel-tools#4 2024-08-30 15:29:03 +00:00
Improve error handling by using std lib rust code

Why did you rewrite this? Why is this buried in a massive commit described vaguely as "improve error handling"?

brl commented on pull request brl/citadel-tools#4 2024-08-30 15:29:03 +00:00
Improve error handling by using std lib rust code

Uh..... you want to panic instead of just exiting cleanly and printing an error message?

brl commented on pull request brl/citadel-tools#4 2024-08-30 15:29:03 +00:00
Improve error handling by using std lib rust code

When you mix reformatting changes in with code changes then I have to read the reformatting changes very carefully to make sure you haven't changed anything.

brl commented on pull request brl/citadel-tools#4 2024-08-30 15:29:03 +00:00
Improve error handling by using std lib rust code

Sorry, but no.