deno icon indicating copy to clipboard operation
deno copied to clipboard

User control of compile binary meta data

Open ghost opened this issue 4 years ago • 4 comments

Hi.

  1. Do I have the right to sell a CLI application written with the Deno compile command? The information contains copyright information

Screenshot_1

  1. If I want to make a free open source CLI app - can I change the Deno icon? If so, how do I do it?

Thanks...

ghost avatar Feb 04 '21 01:02 ghost

Yes you can sell the output of “deno compile”.... we probably need to do some work to remove logo and other metadata...

ry avatar Feb 04 '21 01:02 ry

Related to #8912, would require rc.exe on windows.

eliassjogreen avatar Feb 04 '21 11:02 eliassjogreen

In golang, there is an option for launching the executable in "GUI" mode, in order to hide the console:

go build -ldflags "-H windowsgui" -o application.exe

This is something that would be nice to have too in deno, for example in the case of a GUI application launched with the default browser and coupled to a local deno backend. Double-clicking the compiled deno application file would only open the default browser via Deno.open(url), and not the deno console itself.

ghost avatar Feb 19 '21 13:02 ghost

Guys, I made a Deno program that allows you to compile Deno apps with custom icon and metadata: https://github.com/Leokuma/wincompile

Leokuma avatar Dec 25 '23 19:12 Leokuma