Skip to content

Releases: FDOS/freecom

FreeCOM 0.85a

10 Jul 23:00
Compare
Choose a tag to compare

FreeCOM 0.85a release

The release provides multiple variants, recommended is one of the Open Watcom xms-swap versions. This release fixes a regression with IF ERRORLEVEL in the 0.85 release and a regression that prevented the debug builds from working. Other changes are minor and mostly documentation updates. See included HISTORY.TXT or git changelog for more details.

The files with ow are built with Open Watcom (default compiler), the files with bc are built with Borland C/C++ 3, and the files with gcc are built with GCC (ia16). Currently only xms-swap GCC (ia16) built version is provided, please see artifacts from automatic builds for latest builds with GCC.

  • [bc-]command.zip is a FreeDOS package for use with FreeDOS distributions, it includes full source

  • [bc-]freecom-source.zip is just the source from git but with file timestamps set to latest committed change for the file

  • For each language supported, a zip archive is provided with the following versions:
    The language specific versions are compiled for the specific language so the critical errors will also be translated if available. *** The system codepage needs to be set to an appropriate setting for the language files to display correctly.

    • xms-swap: the latest FreeCOM with XMS-Only swap support. The xms-swap files are recommended for computers with extended memory and an extended memory manager such as himem, as XMS memory is used for swapping.

    • kswap: the latest FreeCOM with kswap support. The kswap files provide basic swapping support.

    • plainedt: the latest FreeCOM without the command line editing enhancements (history, file completion). These are xms-swap variants.

    • debug: the latest FreeCOM with debug information enabled. These are xms-swap variants.

  • The * -localize.zip files are developer packages for localizers (to create new or maintaining existing * .LNG files),
    which includes latest FreeCOM (xmsswap with enhancements) and precompiled strings (* .dat)
    for each language along with the source (* .lng) language files and fixstrings.exe used to
    generate new strings.dat file. The precompiled command.cln uses English language for critical errors. The included *.cln files do not have a language appended, so run "copy /b command.cln + strings.lng command.com" to get a version with most strings in the language of your choice. The included command.com and xmsswap.com are in English. See included documentation for further details.

If you are unsure, download either the command.zip or ow-English.zip and use the xms-swap version.

FreeCOM 0.85

09 Jun 11:47
Compare
Choose a tag to compare

FreeCOM 0.85 release

The release provides multiple variants, recommended is one of the Open Watcom xms-swap versions.

The files with ow are built with Open Watcom and the files with bc are built with Borland C/C++ 3
Currently only English xms-swap GCC (ia16) built version is provided, please see automatic builds for latest builds with GCC.

The files with -intl use English language for critical errors and provide strings.* for all supported languages.
The included *.cln files do not have a language appended, so run "copy /b command.cln + strings.lng command.com" to get
a version with most strings in the language of your choice. The included command.com and xmsswap.com are in English.

The xmsswap.* files are recommended for computers with XMS memory, as XMS memory is used for swapping. The command.* files use standard swapping and swap to disk. (rename to command.com if using intl archives, or use command.com in xms-swap subdirectory for language specific archives)

The language specific versions are compiled for the specific language so the critical errors will also be translated if available. These are only provided in Open Watcom builds. *** The system codepage needs to be set to an appropriate setting for the language files to display correctly.

FreeCOM 0.84-pre7

29 Dec 20:46
Compare
Choose a tag to compare
FreeCOM 0.84-pre7 Pre-release
Pre-release

This version, 0.84pre7 is a beta release for testing.
Three command.com's are included:

commandt.com, compiled with Turbo C++ 1.01
commandw.com, compiled with Open Watcom C 1.9
commandg.com, compiled with https://github.com/tkchia/gcc-ia16 commit 884ab03

Please test and let us know which one is most stable.

To use this shell, just run the COMMAND[GTW].COM file or copy it to COMMAND.COM.

The com084b7-xmsswap.zip archive below contains the binaries.
The com084b7.zip archive below contains the source code with proper time stamps.
The other source code archives have been automatically generated by GitHub.

Changelog:

  • fix: Check for Win64 in Watcom makefile via %ProgramFiles(x86) (Bart)
    chg: Build xms-swap by default (Bart)
  • fix: Use -fno-builtin for GCC to use libc/overridden functions everywhere (Bart)
  • chg: Use -mregparmcall for GCC. Needs adjustment of intr() prototype
    (still stdcall) (Bart)
  • chg: Add linker script command.ld so relocations can be used in NASM code
    for GCC via _TEXTSEG. (Bart)
  • fix: Force 8086-asm; use direct call far real_XMSexec instead of push/push/retf.
    Fixes #15 (Bart)
  • fix: Move termination hook into seperate file and always use independent of XMS.
    Closes #16 (Bart)
  • fix: Fix loadhigh failure when zero-byte free memory block is exist
    (Sava, lpproj)
  • fix: Allow escape of > < | via ^> ^< and ^|. Fixes #12. (Bart)
  • fix: Fix build break on msys2 (with *-mingw32-gcc and ia16-elf-gcc)
    (Sava,lpproj)
  • fix: LH/LOADFIX call execute instead of exec and skip bat files. Fixes #8.
    (Bart)
  • fix: LOADFIX: stop manipulating UMB link, use first fit>0x10000. Fixes #10.
    (Bart)
  • fix: dosGetUMBLinkState needs to return state in _AL, not _AX (see #10)
    (Bart)
  • fix: Avoid possible NULL dereference in dprintf. Fixes #9 (Bart)
  • fix: XMScopy needs to be declared noinline for GCC to work correctly. (Bart)
  • fix: Fix "copy con file" where file already exists. (Bart)
    We need to use devopen instead of dfnstat to check for src existence.
  • fix: Create and use sfn_creat() for dos_creatnew() redone.
    Also rename dos_creatnew() to sfn_creatnew().
    Using creat instead of creatnew for file creation avoids
    the need for truncation using write(), and the handle can
    be directly used without needing to reopen the file.
    However, differently from the previous try, LFNs are still reopened for
    compatibility with Windows 2000/XP. (Bart)
  • fix: dos_read and dos_write now call farread/write for all compilers.
    This is more consistent and fixes truncating writes for GCC. (Bart)
  • fix: Fix lfnmkdir to really create LFNs; easiest to separate out. (Bart)
  • fix: Don't use expensive open/close to check for SFN.
    Instead use the boolean, then put in extra check to see if
    int21/ax=7160 works. (Bart)
  • fix: Add stack checking, adapted from Tom Ehlert (Bart)
  • fix: Save another 520 bytes of stack by reusing buffers where safe. (Bart)
  • fix: myfnsplit(): use common buffer to store dir/name/ext to save stack space.
    This saves ~1250 bytes of stack and eliminates stack overflows in the
    ke2041 test in metados. (Bart)
  • chg: Generate 28.com and 50.com from assembly language. (Bart)

FreeCOM 0.84-pre6

04 Sep 00:35
Compare
Choose a tag to compare
FreeCOM 0.84-pre6 Pre-release
Pre-release

This version, 0.84pre6 is a beta release for testing.
Three command.com's are included:

commandt.com, compiled with Turbo C++ 1.01
commandw.com, compiled with Open Watcom C 1.9
commandg.com, compiled with https://github.com/tkchia/gcc-ia16 commit 884ab03

Please test and let us know which one is most stable.

To use this shell, just run the COMMAND[GTW].COM file or copy it to COMMAND.COM.

FreeCOM 0.84-pre5

16 Aug 00:37
Compare
Choose a tag to compare
FreeCOM 0.84-pre5 Pre-release
Pre-release

This version, 0.84pre5 is a beta release for testing.
Three command.com's are included:

commandt.com, compiled with Turbo C++ 1.01
commandw.com, compiled with Open Watcom C 1.9
commandg.com, compiled with https://github.com/tkchia/gcc-ia16 commit 884ab03

Please test and let us know which one is most stable.

To use this shell, just run the COMMAND[GTW].COM file or copy it to COMMAND.COM.

FreeCOM 0.84-pre4

22 Feb 03:56
Compare
Choose a tag to compare
FreeCOM 0.84-pre4 Pre-release
Pre-release

This version, 0.84pre4 is a beta release for testing.
Three command.com's are included:

  1. commandt.com, compiled with Turbo C++ 1.01
  2. commandw.com, compiled with Open Watcom C 1.9
  3. commandg.com, compiled with https://github.com/tkchia/gcc-ia16 commit 95fbd1f

Please test and let us know which one is most stable.

To use this shell, just run the COMMAND[GTW].COM file or copy it to COMMAND.COM.

FreeCOM 0.84-pre3

02 Feb 23:02
Compare
Choose a tag to compare
FreeCOM 0.84-pre3 Pre-release
Pre-release

This version, 0.84pre3 is a beta release for testing.
Three command.com's are included:

  1. commandt.com, compiled with Turbo C++ 1.01
  2. commandw.com, compiled with Open Watcom C 1.9
  3. commandg.com, compiled with https://github.com/tkchia/gcc-ia16 commit b14fb18
    Please test and let us know which one is most stable.

To use this shell, just run the COMMAND[GTW].COM file or copy it to COMMAND.COM.