Skip to content

Commit 6d99cb9

Browse files
committed
all: prepare for 1.4.0.0 release
all: update copyright
1 parent 96044f2 commit 6d99cb9

17 files changed

Lines changed: 151 additions & 117 deletions

libusb/CHANGELOG.txt

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
V1.3.0.2 (02/15/2023) - SNAPSHOT RELEASE
1+
V1.4.0.0 (02/22/2024) - RELEASE
2+
==============================================
3+
* Fix missing functions in libusb_dyn.c: https://github.com/mcuee/libusb-win32/issues/13
4+
* Fix missing resources in executables: https://github.com/mcuee/libusb-win32/issues/64
5+
* Fix BSOD for zero endpoint size: https://github.com/mcuee/libusb-win32/issues/65
6+
7+
V1.3.0.2 (02/15/2024) - SNAPSHOT RELEASE
28
==============================================
39
* Fix Linux build: https://github.com/mcuee/libusb-win32/issues/42
410
* Fix missing data in large transfers: https://github.com/mcuee/libusb-win32/issues/45

libusb/ddk_make/make.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
; Sets the libusb-win32 build version
1111
;
1212
VERSION_MAJOR=1
13-
VERSION_MINOR=3
13+
VERSION_MINOR=4
1414
VERSION_MICRO=0
15-
VERSION_NANO=2
15+
VERSION_NANO=0
1616

1717
;
1818
; The libusb-win32 version string.

libusb/examples/benchmark.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/* USB Benchmark for libusb-win32
22
33
Copyright (C) 2010 Travis Robinson. <libusbdotnet@gmail.com>
4-
website: http://sourceforge.net/projects/libusb-win32
4+
website: https://github.com/mcuee/libusb-win32
55
66
This program is free software; you can redistribute it and/or modify it
77
under the terms of the GNU Lesser General Public License as published by
@@ -1616,5 +1616,5 @@ void ShowCopyright(void)
16161616
{
16171617
CONMSG0("libusb-win32 USB Benchmark v" RC_VERSION_STR "\n");
16181618
CONMSG0("Copyright (c) 2010 Travis Robinson. <libusbdotnet@gmail.com>\n");
1619-
CONMSG0("website: http://sourceforge.net/projects/libusbdotnet\n");
1619+
CONMSG0("website: https://github.com/mcuee/libusb-win32\n");
16201620
}

libusb/src/driver/ioctl.c

Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,22 @@
11
/* libusb-win32, Generic Windows USB Library
2-
* Copyright (c) 2010 Travis Robinson <libusbdotnet@gmail.com>
3-
* Copyright (c) 2002-2005 Stephan Meyer <ste_meyer@web.de>
4-
*
5-
* This program is free software; you can redistribute it and/or modify
6-
* it under the terms of the GNU General Public License as published by
7-
* the Free Software Foundation; either version 2 of the License, or
8-
* (at your option) any later version.
9-
*
10-
* This program is distributed in the hope that it will be useful,
11-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13-
* GNU General Public License for more details.
14-
*
15-
* You should have received a copy of the GNU General Public License
16-
* along with this program; if not, write to the Free Software
17-
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18-
*/
2+
* Copyright (C) 2017-2024 Peter Dons Tychsen <pdt@dontech.dk>
3+
* Copyright (c) 2010 Travis Robinson <libusbdotnet@gmail.com>
4+
* Copyright (c) 2002-2005 Stephan Meyer <ste_meyer@web.de>
5+
*
6+
* This program is free software; you can redistribute it and/or modify
7+
* it under the terms of the GNU General Public License as published by
8+
* the Free Software Foundation; either version 2 of the License, or
9+
* (at your option) any later version.
10+
*
11+
* This program is distributed in the hope that it will be useful,
12+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
* GNU General Public License for more details.
15+
*
16+
* You should have received a copy of the GNU General Public License
17+
* along with this program; if not, write to the Free Software
18+
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19+
*/
1920

2021

2122
#include "libusb_driver.h"

libusb/src/driver/transfer.c

Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,22 @@
11
/* libusb-win32, Generic Windows USB Library
2-
* Copyright (c) 2010 Travis Robinson <libusbdotnet@gmail.com>
3-
* Copyright (c) 2002-2005 Stephan Meyer <ste_meyer@web.de>
4-
*
5-
* This program is free software; you can redistribute it and/or modify
6-
* it under the terms of the GNU General Public License as published by
7-
* the Free Software Foundation; either version 3 of the License, or
8-
* (at your option) any later version.
9-
*
10-
* This program is distributed in the hope that it will be useful,
11-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13-
* GNU General Public License for more details.
14-
*
15-
* You should have received a copy of the GNU General Public License
16-
* along with this program; if not, write to the Free Software
17-
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18-
*/
2+
* Copyright (C) 2017-2024 Peter Dons Tychsen <pdt@dontech.dk>
3+
* Copyright (c) 2010 Travis Robinson <libusbdotnet@gmail.com>
4+
* Copyright (c) 2002-2005 Stephan Meyer <ste_meyer@web.de>
5+
*
6+
* This program is free software; you can redistribute it and/or modify
7+
* it under the terms of the GNU General Public License as published by
8+
* the Free Software Foundation; either version 3 of the License, or
9+
* (at your option) any later version.
10+
*
11+
* This program is distributed in the hope that it will be useful,
12+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
* GNU General Public License for more details.
15+
*
16+
* You should have received a copy of the GNU General Public License
17+
* along with this program; if not, write to the Free Software
18+
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19+
*/
1920

2021

2122
#include "libusb_driver.h"

libusb/src/error.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
/* Error & Logging functions
22
3+
Copyright (C) 2017-2024 Peter Dons Tychsen <pdt@dontech.dk>
34
Copyright (C) 2010 Travis Robinson. <libusbdotnet@gmail.com>
4-
website: http://sourceforge.net/projects/libusb-win32
5+
6+
website: https://github.com/mcuee/libusb-win32
57
68
This program is free software; you can redistribute it and/or modify it
79
under the terms of the GNU Lesser General Public License as published by

libusb/src/error.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
/* Error & Logging functions
22
3+
Copyright (C) 2017-2024 Peter Dons Tychsen <pdt@dontech.dk>
34
Copyright (C) 2010 Travis Robinson. <libusbdotnet@gmail.com>
4-
website: http://sourceforge.net/projects/libusb-win32
5+
6+
website: https://github.com/mcuee/libusb-win32
57
68
This program is free software; you can redistribute it and/or modify it
79
under the terms of the GNU (LGPL) General Public License as published by

libusb/src/install.c

Lines changed: 19 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,23 @@
11
/* libusb-win32, Generic Windows USB Library
2-
* Copyright (c) 2002-2005 Stephan Meyer <ste_meyer@web.de>
3-
* Copyright (c) 2010 Travis Robinson <libusbdotnet@gmail.com>
4-
* Parts of the code from libwdi by Pete Batard
5-
*
6-
* This library is free software; you can redistribute it and/or
7-
* modify it under the terms of the GNU Lesser General Public
8-
* License as published by the Free Software Foundation; either
9-
* version 2 of the License, or (at your option) any later version.
10-
*
11-
* This library is distributed in the hope that it will be useful,
12-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14-
* Lesser General Public License for more details.
15-
*
16-
* You should have received a copy of the GNU Lesser General Public
17-
* License along with this library; if not, write to the Free Software
18-
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19-
*/
2+
* Copyright (c) 2010 Travis Robinson <libusbdotnet@gmail.com>
3+
* Copyright (c) 2002-2005 Stephan Meyer <ste_meyer@web.de>
4+
*
5+
* Parts of the code from libwdi by Pete Batard
6+
*
7+
* This library is free software; you can redistribute it and/or
8+
* modify it under the terms of the GNU Lesser General Public
9+
* License as published by the Free Software Foundation; either
10+
* version 2 of the License, or (at your option) any later version.
11+
*
12+
* This library is distributed in the hope that it will be useful,
13+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15+
* Lesser General Public License for more details.
16+
*
17+
* You should have received a copy of the GNU Lesser General Public
18+
* License along with this library; if not, write to the Free Software
19+
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20+
*/
2021

2122
#define _CRT_SECURE_NO_WARNINGS
2223

libusb/src/install_filter.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/* libusb-win32, Generic Windows USB Library
2-
* Copyright (c) 2002-2005 Stephan Meyer <ste_meyer@web.de>
32
* Copyright (c) 2010 Travis Robinson <libusbdotnet@gmail.com>
4-
*
3+
* Copyright (c) 2002-2005 Stephan Meyer <ste_meyer@web.de>
4+
*
55
* This library is free software; you can redistribute it and/or
66
* modify it under the terms of the GNU Lesser General Public
77
* License as published by the Free Software Foundation; either

libusb/src/install_filter_win.c

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
/* libusb-win32, Generic Windows USB Library
2-
* Copyright (c) 2002-2006 Stephan Meyer <ste_meyer@web.de>
3-
* Copyright (c) 2010 Travis Robinson <libusbdotnet@gmail.com>
4-
*
5-
* This library is free software; you can redistribute it and/or
6-
* modify it under the terms of the GNU Lesser General Public
7-
* License as published by the Free Software Foundation; either
8-
* version 2 of the License, or (at your option) any later version.
9-
*
10-
* This library is distributed in the hope that it will be useful,
11-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13-
* Lesser General Public License for more details.
14-
*
15-
* You should have received a copy of the GNU Lesser General Public
16-
* License along with this library; if not, write to the Free Software
17-
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18-
*/
2+
* Copyright (c) 2010 Travis Robinson <libusbdotnet@gmail.com>
3+
* Copyright (c) 2002-2005 Stephan Meyer <ste_meyer@web.de>
4+
*
5+
* This library is free software; you can redistribute it and/or
6+
* modify it under the terms of the GNU Lesser General Public
7+
* License as published by the Free Software Foundation; either
8+
* version 2 of the License, or (at your option) any later version.
9+
*
10+
* This library is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13+
* Lesser General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU Lesser General Public
16+
* License along with this library; if not, write to the Free Software
17+
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18+
*/
1919

2020
#define _CRT_SECURE_NO_WARNINGS
2121

0 commit comments

Comments
 (0)