radj307 / volume-control

Specific-Application Volume Control Hotkeys for Windows.
https://radj307.github.io/volume-control
GNU General Public License v3.0
78 stars 8 forks source link

[BUG] Installer strings in Inno Setup script #119

Closed bovirus closed 12 months ago

bovirus commented 12 months ago

Version Number

6.5.1

File

Installer (VolumeControl-Installer.exe)

Windows Version

Windows 10 22H2 64bit Italian

Actual Behaviour

Currently yuou changed the copyright string in

AppCopyright=Copyright © {#CurrentYear} {#AppPublisher}

"copyrighT" and "©" are synonims: Copyright is already the field name of this descrition then the fulls string fieldname+description is

Copyright: Copyright © {#CurrentYear} {#AppPublisher}

Three times the copyright terms.

My idea is that the copyright message should be like before

AppCopyright=© {#StartYearCopyright}-{#CurrentYear} {#AppPublisher}

Thanks.

Expected Behaviour

Restroe original message

Reproduction Steps

No response

Log

No response

radj307 commented 12 months ago

Readded date range in 1f5c4041339af2c5d7d2fb9ed48edf4cdf12daec

The message now reads Copyright © 2022-2023 radj307, which will be the final copyright notice string.
The property being named "Copyright" does not guarantee that its contents are actually a copyright notice; some applications put the license name, copyleft notice, etc. there instead. This can be interpreted as ambiguity.
Putting both "Copyright" and "©" makes it impossible to misinterpret one or the other, and brings it in line with my other projects & the recommended format in Canada (where I live) & the USA.

Overall, the point of a copyright notice is not to look nice, it's to state that a copyright exists in the least ambiguous, most universally-understandable way possible.