antipole2 / JavaScript_pi

JavaScript plugin for OpenCPN
GNU General Public License v3.0
2 stars 4 forks source link

Console names do not allow _ char on some platforms #50

Closed antipole2 closed 1 year ago

antipole2 commented 1 year ago

Console names are limited to alphanumeric + ''. The addition of `depends on adding it to the permitted characters using wxTextValidator::AddCharIncludes(""); This only became available in wxWidgets 3.1 and thus does not work on some current builds. This is now added conditionally for builds with 3.1 or later. ` can be used in the consoleName(newName) call.

antipole2 commented 1 year ago

Resolved in wx2.5 versions.