-
Notifications
You must be signed in to change notification settings - Fork 135
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change breaks with the non-unicode InnoSetup 5.x version... it cant read the iss file. #297
Comments
We can increase the configuration and set not to write BOM. 👀 |
That would also work... but since the iss scripts are written in UTF-8, this can create garbled strings in IS 5. So maybe the BOM is a nice 'safeguard' against this:) Edit: made #299 |
I was thinking of finding out the version of Inno Setup using the command |
|
I think a system that allows adding/deleting the BOM in the files generated from the Velocity templates would be more flexible, allowing you to select the template to which it's applied. I mean: <templates>
<template>
<name>iss.vtl</name>
<bom>true|false</name>
[here we can add new options for future features related to templates]
</template>
</templates> |
Work in progress in branch |
Just published How to disable UTF-8 with BOM for <templates>
<template>
<name>windows/iss.vtl</name>
<bom>false</bom>
</template>
</templates>
|
Can we release this feature in 1.7.4? |
I see no reason why not:) |
Branch issue-297 merged into devel, ready to be released in v1.7.4 |
1.7.4 released to Maven Central |
This IS version is old, but this could be added to the documentation. (use 6.x or 5.x Unicode)
Originally posted by @commi in #271 (comment)
The text was updated successfully, but these errors were encountered: