Using XML serialization I found the problem with EOL symbols: XML file was generated using '\n' on Windows platform. This is not a problem in many situations. But this file is opened in Windows notepad incorrectly.
So to correct this behavior on various platforms I prepared the patch which fixes my and other problems with EOL. I think it will be useful to include such patch into the main repository.
Patch was created on 1270 revision.
I am not sure this is the right approach. I believe that this will make Win32 code emit "\r\n" while Linux code will emit "\n".
Anyway, that is not too good for interchangeable format, is not it?
Maybe the better approach would be to generate "\r\n" always?
(So much trouble for single stupid notepad.exe... )