Skip to content

Commit 1fa5254

Browse files
committed
version 1.6
1 parent 1cbb72a commit 1fa5254

File tree

4 files changed

+30
-2
lines changed

4 files changed

+30
-2
lines changed

APPINFO/XCOPY.LSM

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
Begin3
2+
Title: XCopy
3+
Version: 1.6
4+
Entered-date: 2024-08-09
5+
Description: Copies files and directory trees
6+
Keywords: freedos, copy, xcopy, kitten
7+
Author: Rene Ableidinger <rene.ableidinger@gmx.at>
8+
Maintained-by: FreeDOS developers
9+
Primary-site: https://github.com/FDOS/xcopy
10+
Platforms: DOS
11+
Copying-policy: GNU General Public License, Version 2
12+
Defunct-Alternate-Site: http://www.coli.uni-saarland.de/~eric/stuff/soft/by-others/
13+
Defunct-Wiki-Site: http://wiki.freedos.org/wiki/index.php/XCopy
14+
Summary: Copies files and directory trees.
15+
End

doc/history.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,9 @@ version 1.4a
3131
version 1.5
3232
-----------
3333
- improved Open Watcom support (utilizes pieces from TCC2WAT), shared.inc
34+
35+
version 1.6 (2024-08-09)
36+
------------------------
37+
- fix bug causing timestamps to not always be set correctly (GitHub bug# 8)
38+
- fix bug causing stack corruption on Open Watcom builds (GitHub bug# 7)
39+
- improve free disk space calculation (fix GitHub bug# 10)

doc/xcopy.txt

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FreeDOS XCOPY command version 1.1
1+
FreeDOS XCOPY command version 1.6
22
---------------------------------
33
Copies files and directory trees.
44

@@ -73,6 +73,12 @@ Version 1.2 and newer can also be compiled with the now freeware
7373
Version 1.5 and newer
7474
- Open Watcom C/C++ 1.9/2.0pre (includes portions of tcc2wat)
7575

76+
Reporting bugs and questions
77+
----------------------------
78+
Please email FreeDOS mailing list for questions and comments
79+
Or create an issue on GitHub at https://github.com/FDOS/xcopy or
80+
fill a bug report on FreeDOS home at https://www.freedos.org/bugs/
81+
7682
Contacting the author
7783
---------------------
7884
e-mail address: rene.ableidinger@gmx.at
@@ -81,6 +87,7 @@ e-mail address: rene.ableidinger@gmx.at
8187
Copyright
8288
---------
8389
(C)opyright 2001 by Rene Ableidinger
90+
(with patches 2005: Eric Auer
8491

8592
This program is free software; you can redistribute it and/or modify it
8693
under the terms of the GNU General Public License version 2 as

source/xcopy.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ int main(int argc, const char **argv) {
401401
/* SUB-PROGRAMS */
402402
/*-------------------------------------------------------------------------*/
403403
void print_help(void) {
404-
printf("XCOPY v1.5 - Copyright 2001-2003 by Rene Ableidinger (patches 2005: Eric Auer)\n");
404+
printf("XCOPY v1.6 - Copyright 2001-2003 by Rene Ableidinger (patches 2005: Eric Auer)\n");
405405
/* VERSION! */
406406
printf("%s\n\n", catgets(cat, 2, 1, "Copies files and directory trees."));
407407
printf("%s\n\n", catgets(cat, 2, 2, "XCOPY source [destination] [/switches]"));

0 commit comments

Comments
 (0)