Thomas Leonard
Thomas Leonard
Yes, I think that makes sense (the check would be done on first write, I imagine).
Sounds good to me!
Does this only affect `0install store audit` / `verify`?
What version of 0install and what OS are you using?
The code that sets it is here: https://github.com/0install/0install/blob/d9c8219d603176a77d2650322f7054463b1c58c6/ocaml/gui_gtk/solver_box.ml#L135 ``` dialog#set_default_size ~width:(Gdk.Screen.width () * 2 / 5) ~height:300; ``` So, it should be 2/5 of the width of the screen, but...
Yes, not obvious how to do it. Perhaps we could assume a square screen of size `min width height` and make it some fraction of that. I use a tiling...
You'll also need to replace libcurl (C bindings) with cohttp (pure OCaml). That would be nice as an option anyway (for the generic binaries), as libcurl isn't always present. Should...
This seems a bit odd: - 0install should be checking for updates itself, without the program having to do anything. - Escaping white-space will break any correctly-written program, since that...
The OCaml bit is just a wrapper around the C library. Does the command-line `curl` tool work for you with https sites? https://ec.haxx.se/usingcurl-tls.html says: > curl built on windows that...
> Where does the libcurl build for the Windows binary of 0install come from? It looks like we only have one Windows binary, which came from your Teamcity builder in...