madoar

Results 72 issues of madoar

In the following lines of the `sandbox` script we remove two subfolders of the `dosdevices` folder: https://github.com/PhoenicisOrg/scripts/blob/773a6dd909fe9869a7412d9765676b32613d18fd/Engines/Wine/Verbs/sandbox/script.js#L13-L14 After executing the `sandbox` verb modified in #1112, I received an error because...

After our latest changes to the `include(...)` operation the syntax of `Bean(...)` and `include(...)` are very similar to each other. Both operations take an id string and return an object...

I'm thinking about to merge the wine implementation and object scripts in a single script in `Engines/Wine/Engine`. This in turn would lead to the engine script and json file being...

As an alternative to #1068 we could think about remove `ShortcutReader` because it basically functions as a wrapper for a concrete engine specific shortcut reader implementation (currently only `WineShortcutReader`). Therefore...

Currently both `ShortcutReader` and `WineShortcutReader` are contained in the same file. It would be a more clean solution to move `WineShortcutReader` to a new file.

enhancement

Currently `Downloader#get` returns the content of the downloaded file. This behavior is not always useful, for example when the downloaded file is a binary file or an archive. Therefore I...

We have a lot of places in the scripts where we define multiline strings. Currently we use for this a lot of string concatenation (i.e. `"a" + "b"`) which can...

Currently we are using the older `function() { ... }` style to define lambda expressions. This style has the big disadvantage for us that redefines `this` to the newly declared...

The page should contain: * a description what an engine is/does * an explanation how an engine can be implemented

The page should contain: * a description what an engine tool is/does * an explanation how an engine tool can be created