
Quote from: fbfans on July 29, 2026, 06:14:23 AMIn the General Options, could we have the ability for users to set the default encoding for newly created files?This has now been implemented. This is a useful new feature.
QuoteIn the Compiler Results window, could you add a right-click copy feature that allows selecting a single line or all content?This has now also been implemented. I remember a couple of users suggesting something similar to this feature over the past couple of years so it is nice to finally have it.
QuoteFor the localization/language selector, I'd suggest displaying the language names directly in their native form — for example, "简体中文" instead of "Chinese (Simplified)", and "English" instead of "English (US)". This would make it more intuitive.Sorry, can't do this one. The language name is taken directly from that language's disk filename and then ran through a simple function (see below) to make it look pretty. I did not want to get into the complexity of having to store the language name inside of the actual disk file.
' ========================================================================================
' "chinese_simplified.lang" -> "Chinese Simplified". Display only -- gLocalLangFiles() carries
' the filename, and every file operation goes through that.
' ========================================================================================
private function frmOptionsLocal_PrettyName( byval wszFilename as DWSTRING ) as DWSTRING
dim as DWSTRING wszName = AfxStrPathName( "NAME", wszFilename )
dim as DWSTRING wszOut = ""
dim as boolean bStart = true
for i as long = 1 to len(wszName)
dim as DWSTRING wszCh = mid(**wszName, i, 1)
if wszCh = "_" then
wszOut += " "
bStart = true
else
wszOut += iif( bStart, ucase(wszCh), lcase(wszCh) )
bStart = false
end if
next
return wszOut
end function