File tree Expand file tree Collapse file tree 7 files changed +20
-37
lines changed
Expand file tree Collapse file tree 7 files changed +20
-37
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -68,6 +68,7 @@ Doug Johnston
6868Edgar Fuß
6969Evan Hunter
7070Evan Miller
71+ Fabien Sanglard
7172Fabrice Fontaine
7273Federico Manzan
7374Felipe Balbi
@@ -95,11 +96,13 @@ Ingvar Stepanyan
9596Jakub Klama
9697James Hanko
9798Jeffrey Nichols
99+ Jesse Taube
98100Jie Zhang
99101Jim Chen
100102Johann Richard
101103John Keeping
102104John Sheu
105+ Jon Beniston
103106Jonas Malaco
104107Jonathon Jongsma
105108Joost Muller
@@ -137,6 +140,7 @@ Martin Thierer
137140Mathias Hjärtström
138141Matthew Stapleton
139142Matthias Bolte
143+ Matthijs Lavrijsen
140144Michael Dickens
141145Michel Zou
142146Mike Frysinger
@@ -161,6 +165,7 @@ Pekka Nikander
161165Petr Pazourek
162166Philémon Favrod
163167Pino Toscano
168+ Radu Vele
164169Rob Walker
165170Romain Vimont
166171Roman Kalashnikov
@@ -206,6 +211,7 @@ William Orr
206211William Skellenger
207212Xiaofan Chen
208213Yegor Yefremov
214+ Yiwei Lin
209215Zeng Guang
210216Zhiqiang Liu
211217Zoltán Kovács
Original file line number Diff line number Diff line change 11For detailed information about the changes below, please see the git log
22or visit: http://log.libusb.info
33
4+ 2025-03-18: v1.0.28
5+ * New libusb_get_ssplus_usb_device_capability_descriptor API
6+ for query of SuperSpeed+ Capability Descriptors
7+ * API support for reporting USB 3.2 Gen2x2 speeds
8+ * macOS: Fix Zero-Length Packet for multiple packets per frame
9+ * Windows: Base HID device descriptor on OS-cached values
10+ * Build fixes for Haiku and SunOS
11+ * Many code correctness fixes
12+
4132024-01-31: v1.0.27
514* New libusb_init_context API to replace libusb_init
615* New libusb_get_max_alt_packet_size API
Original file line number Diff line number Diff line change @@ -31,9 +31,9 @@ dnl Library versioning
3131dnl These numbers should be tweaked on every release. Read carefully:
3232dnl http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
3333dnl http://sourceware.org/autobook/autobook/autobook_91.html
34- lt_current=4
34+ lt_current=5
3535lt_revision=0
36- lt_age=4
36+ lt_age=5
3737LT_LDFLAGS="-version-info ${lt_current}:${lt_revision}:${lt_age} -no-undefined"
3838
3939m4_ifdef ( [ AM_SILENT_RULES ] ,[ AM_SILENT_RULES ([ yes] )] )
Original file line number Diff line number Diff line change @@ -2383,14 +2383,7 @@ static enum libusb_log_level get_env_debug_level(void)
23832383 enum libusb_log_level level = LIBUSB_LOG_LEVEL_NONE ;
23842384 const char * dbg = getenv ("LIBUSB_DEBUG" );
23852385 if (dbg ) {
2386- char * end = NULL ;
2387- long dbg_level = strtol (dbg , & end , 10 );
2388- if (dbg == end ||
2389- * end != '\0' ||
2390- dbg_level < LIBUSB_LOG_LEVEL_NONE ||
2391- dbg_level > LIBUSB_LOG_LEVEL_DEBUG ) {
2392- usbi_warn (NULL , "LIBUSB_DEBUG is invalid or out of range; clamping" );
2393- }
2386+ long dbg_level = strtol (dbg , NULL , 10 );
23942387 dbg_level = CLAMP (dbg_level , LIBUSB_LOG_LEVEL_NONE , LIBUSB_LOG_LEVEL_DEBUG );
23952388 level = (enum libusb_log_level )dbg_level ;
23962389 }
Original file line number Diff line number Diff line change 77#define LIBUSB_MINOR 0
88#endif
99#ifndef LIBUSB_MICRO
10- #define LIBUSB_MICRO 27
10+ #define LIBUSB_MICRO 28
1111#endif
1212#ifndef LIBUSB_NANO
1313#define LIBUSB_NANO 0
Original file line number Diff line number Diff line change 1- #define LIBUSB_NANO 11941
1+ #define LIBUSB_NANO 11946
You can’t perform that action at this time.
0 commit comments