Caelan

Results 305 comments of Caelan

If the goal of Fusion is to provide a "native" library, such that it appears to have been written by an expert in said language, I don't think that's a...

I guess this is where it was added the first time https://github.com/fusionlanguage/fut/commit/a1ed6e12c9560ba9276b10bc4b5e9b3f56ab892e

I'm not suggesting we do async/await. I'm suggesting we support asynchronous callbacks (eg. Promise, Future, Task) - which predate async/await style keywords significantly. Java does have similar concepts (CompletableFuture) and...

@anaisbetts I don't comment on every issue. Maybe I respond on 1/3 notifications, and I only respond when I have legitimate answers or where people are encountering issues that are...

It's fine that the shortcut is one level higher (eg. `%localappdata%\yourapp\yourapp.exe` instead of `%localappdata%\yourapp\app-1.0.0\yourapp.exe`). Squirrel is supposed to create a stub executable there at the root directory which runs the...

If you are using Update.exe via command line, it will write a log to the current working directory. Doing this is a great way to diagnose issues quickly. If you...

Implementing `ILogger` is enough. Then register your class via `SquirrelLocator.CurrentMutable.Register` and you're all set.

This feature available with [my popular fork of Squirrel](https://github.com/clowd/Clowd.Squirrel). You can call `CreateShortcutsForExecutable` or `CreateShortcutForThisExe` with the option `ShortcutLocation.StartMenuRoot` to create a shortcut at the root of the start menu...

Applying deltas does take a very long time, and unfortunately the way this library determines whether to apply deltas vs. the full version is purely based on size. If your...

I also had the view that the gif should show as early as possible. In [my popular fork](https://github.com/clowd/Clowd.Squirrel) I initially solved this by having the C++ Setup.exe showing the gif...