RamonUnch

Results 481 comments of RamonUnch
trafficstars

True, plus it would be even more flexible and allow for other converters in the future.

I saw that you had made a build of uconv on your blog, nice build, I will experiment with that...

I had this problem a few times (even with an aschii file) I fixed one out of bound array access https://github.com/RamonUnch/GreenPad/commit/e624a8c8b34ec95a0a2d8700faec55af26aeece1. There are probably others, the trick is to retry...

Nice finding. I also realized yesterday that the definition of DLGPROC changed from `BOOL CALLBACK` to `INT_PTR CALLBACK` in the windows headers. In 32 bit mode it does not change...

I do have sometime GreenPad stuck in an infinite loop, eating 100% of a core (I think it happens when exiting), It is hard to debug, it happens rarely but...

Progress in memory Manager that would access outside of pools_ mages https://github.com/RamonUnch/GreenPad/pull/74/commits/78440cb222ba03ec0e9b438e9d91802d2cd210a6

In theory the minimum needed RAM in bytes is: number of characters * (2 + 1) + raw size of file + overhead due to many small line buffers and...

> The question remaining is: why memory usage difference is that huge when main window is not showing up early? This is really disturbing indeed. Maybe we you try to...

> testing with your 1.17beta2 it takes ~253MB but it is still stalling while I'm editing this comment. Indeed I think it is because I treat all characters

I got a crash when using JIS (cs = -933) ie Japanese(ISO-2022-JP) when opening some binary file. It happens with the `micross.ttf` Microsoft Sans Serif font file (that I go...