Page 1 of 1
Posted: Sat Aug 02, 2008 12:45 pm
by DOS386
NConvert v5.00 for Windows/Windows 64bits/Linux/Linux 64bits/MacOS X/FreeBSD/DOS32 LE & OS/2 is available. NConvert can be downloaded on the XnView download page.
Works. Some space for improvements, though:
- DOS version reports itself as "for OS/2" (see post below)
- Undocumented: I suggested this
http://www.file-pasta.com/file/1205544602.875_NC.ZIP some time ago ... but seems got lost
- Commandline parsing is very rigid but not very correct - works with good commandline, but at the very 1st bug it gets confused and rises a mess (complains about "files" not found while encountering options)
- Add text (I'll create new thread on this)
Posted: Sat Aug 02, 2008 1:04 pm
by helmut
DOS386 wrote:... - Commandline parsing is very rigid but not very correct - works with good commandline, but at the very 1st bug it gets confused and rises a mess (complains about "files" not found while encountering options)
I agree and also think that command line parsing should be more stable and more verbose. As one can see in various posts in the "NConvert" forum, sometimes it's just minor things in the command line or in the conversion that cause a problem (e.g. wrong colour mode). Too soon the user is at a loss. This should be improved.
Posted: Sat Aug 02, 2008 1:10 pm
by DOS386
Version for OS/2
Code: Select all
#define __EVIL__
#ifdef __DOS__
printf("Version for DOS (using DOS/32A extender)");
#undef __EVIL__
#endif
#ifdef __OS2__
printf("Version for OS/2");
#undef __EVIL__
#endif
#ifdef __WIN32__
printf("Version for Win32 (ME/NT/Vista)");
#undef __EVIL__
#endif
...
...
...
#ifdef __EVIL__
#error "Target problem !!!"
#endif
Could you please fix it now (see suggestion above), so that it's correct when compiling next time ? No need for immediate re-release.