MatejGolian / ReaHotkey

An AutoHotkey script for blind musicians and REAPER users
9 stars 2 forks source link

Update CI to support custom version info #10

Closed MatejGolian closed 7 months ago

MatejGolian commented 7 months ago

@Timtam,

I was thinking that it would be nice if the compiled scripts displayed our own info in windows properties, like product name, version and so on. If you're interested to know what can be done, take a look at this page: https://www.autohotkey.com/docs/v2/misc/Ahk2ExeDirectives.htm

That being said, basically everything should be prepared already, except ci.yaml should be updated. I had a look at it, but I didn't feel like messing with it. For the compiler directives to work, Version and BuildNumber should be defined on one line in this order and separated by a coma, like in the example below: Version := "0.4.0", BuildNumber := "0"

Hopefully that's all that should be needed.