Subversion Repositories SvarDOS

Rev

Go to most recent revision | Show changed files | Details | Compare with Previous | Blame | RSS feed

Filtering Options

Rev Age Author Path Log message Diff
1730 138 d 19 h mateusz.viste /svarcom/trunk/ implemented the internal LOADHIGH command  
1715 142 d 5 h mateusz.viste /svarcom/trunk/ it is unwise to assume a cmdline is always CR-terminated, there are at least a few cases where it is not... make sure cmdline is at most 126 bytes long and terminate it properly (and trim trailing CRs, if any)  
1714 142 d 19 h mateusz.viste /svarcom/trunk/ modified command-line parsing so SvarCOM is immune to a DN bug (thanks to bttr for spotting the issue and to ECM for figuring it out)  
1713 143 d 0 h bttr /svarcom/trunk/ fixed several SvarCOM COMSPEC typos  
1202 502 d 3 h mateusz.viste /svarcom/trunk/ bumped version and copyright date  
1156 818 d 2 h mateusz.viste /svarcom/trunk/ FCB fields in PSP of launched apps are filled with cmdline arguments  
1139 835 d 23 h mateusz.viste /svarcom/trunk/ env variables are matched using NLS-aware upcase comparison  
1138 836 d 10 h mateusz.viste /svarcom/trunk/ tabs are accepted as command-line separators (and removed bttr's ugly hack)  
1070 845 d 22 h mateusz.viste /svarcom/trunk/ FOR patterns are normalized during command parsing + path concatenating is skipped for non-file-wildcards messages  
1065 846 d 22 h bttr /svarcom/trunk/ fixed typo  
1055 847 d 22 h mateusz.viste /svarcom/trunk/ FOR command: patterns without wildcards are processed as messages  
1054 847 d 22 h mateusz.viste /svarcom/trunk/ FOR command accepts control characters as pattern delimiters  
1024 852 d 19 h mateusz.viste /svarcom/trunk/ added FOR support  
1023 853 d 19 h mateusz.viste /svarcom/trunk/ implemented FOR parsing (but not execution yet)  
1012 854 d 10 h mateusz.viste /svarcom/trunk/ fixed %var% matching within batch files to be case-insensitive (reported through https://osdn.net/projects/svardos/ticket/44000)  
1007 854 d 11 h mateusz.viste /svarcom/trunk/ fixed parsing of /C and /K arguments  
1001 855 d 19 h mateusz.viste /svarcom/trunk/ step by step execution of batch files with /Y  
989 856 d 7 h mateusz.viste /svarcom/trunk/ many new strings are localizeable now  
987 856 d 11 h mateusz.viste /svarcom/trunk/ improved stack overflow protection so it is allows stack overflow as long as it does not touches actual data  
983 856 d 23 h mateusz.viste /svarcom/trunk/ smart stack overflow detection: damages only the commandline history and degrades gracefully  
963 858 d 23 h mateusz.viste /svarcom/trunk/ rmod bat ctx linked list is freed using a specialized function to enable reusability  
960 859 d 19 h mateusz.viste /svarcom/trunk/ batch :LABELS are skipped during batch processing  
958 859 d 20 h mateusz.viste /svarcom/trunk/ fixed batch processing with /C (was executing only first command)  
957 859 d 20 h mateusz.viste /svarcom/trunk/ CALL support for calling batch files from within batch files  
949 860 d 4 h mateusz.viste /svarcom/trunk/ redesign of how batch contexts are stored in memory (required for future CALL support)  
577 883 d 1 h mateuszviste /svarcom/trunk/ temporary (pipe) files are created in %TEMP% if it is defined  
576 883 d 1 h mateuszviste /svarcom/trunk/ temporary pipe files are deleted once used  
572 886 d 20 h mateuszviste /svarcom/trunk/ version field to make sure Svarcom and RMOD are always in sync  
571 886 d 21 h mateuszviste /svarcom/trunk/ support for "global executable links" (new command: ln)  
548 910 d 3 h mateuszviste /svarcom/trunk/ stdin/stdout files are stored in separate rmod buffers to avoid overflows and simplify code, also added extra memory guards  
543 943 d 20 h mateuszviste /svarcom/trunk/ piping support  
538 946 d 20 h mateuszviste /svarcom/trunk/ DOS errors can be translated now + always output to stderr instead of stdout  
533 950 d 7 h mateuszviste /svarcom/trunk/ internal commands return an enum + finished implementation of IF ERRORLEVEL  
526 951 d 5 h mateuszviste /svarcom/trunk/ prompt fixed when cur drive becomes invalid  
517 952 d 23 h mateuszviste /svarcom/trunk/ rmod performs redirections before running programs  
508 953 d 21 h mateuszviste /svarcom/trunk/ implemented %0 %1 %2 etc in batch files  
507 953 d 22 h mateuszviste /svarcom/trunk/ %variables% substitution in BAT files  
506 953 d 23 h mateuszviste /svarcom/trunk/ fixed lookup_cmd() so it always returns the full path/name (truename) of the command that was found  
505 954 d 2 h mateuszviste /svarcom/trunk/ getbatcmd() prints out a DOS error on failure  
500 954 d 5 h mateuszviste /svarcom/trunk/ cmdline buffer is no longer inside BUFFER, for better code clarity