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
68
68
Edgar Fuß
69
69
Evan Hunter
70
70
Evan Miller
71
+ Fabien Sanglard
71
72
Fabrice Fontaine
72
73
Federico Manzan
73
74
Felipe Balbi
@@ -95,11 +96,13 @@ Ingvar Stepanyan
95
96
Jakub Klama
96
97
James Hanko
97
98
Jeffrey Nichols
99
+ Jesse Taube
98
100
Jie Zhang
99
101
Jim Chen
100
102
Johann Richard
101
103
John Keeping
102
104
John Sheu
105
+ Jon Beniston
103
106
Jonas Malaco
104
107
Jonathon Jongsma
105
108
Joost Muller
@@ -137,6 +140,7 @@ Martin Thierer
137
140
Mathias Hjärtström
138
141
Matthew Stapleton
139
142
Matthias Bolte
143
+ Matthijs Lavrijsen
140
144
Michael Dickens
141
145
Michel Zou
142
146
Mike Frysinger
@@ -161,6 +165,7 @@ Pekka Nikander
161
165
Petr Pazourek
162
166
Philémon Favrod
163
167
Pino Toscano
168
+ Radu Vele
164
169
Rob Walker
165
170
Romain Vimont
166
171
Roman Kalashnikov
@@ -206,6 +211,7 @@ William Orr
206
211
William Skellenger
207
212
Xiaofan Chen
208
213
Yegor Yefremov
214
+ Yiwei Lin
209
215
Zeng Guang
210
216
Zhiqiang Liu
211
217
Zoltán Kovács
Original file line number Diff line number Diff line change 1
1
For detailed information about the changes below, please see the git log
2
2
or visit: http://log.libusb.info
3
3
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
+
4
13
2024-01-31: v1.0.27
5
14
* New libusb_init_context API to replace libusb_init
6
15
* 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
31
31
dnl These numbers should be tweaked on every release. Read carefully:
32
32
dnl http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
33
33
dnl http://sourceware.org/autobook/autobook/autobook_91.html
34
- lt_current=4
34
+ lt_current=5
35
35
lt_revision=0
36
- lt_age=4
36
+ lt_age=5
37
37
LT_LDFLAGS="-version-info ${lt_current}:${lt_revision}:${lt_age} -no-undefined"
38
38
39
39
m4_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)
2383
2383
enum libusb_log_level level = LIBUSB_LOG_LEVEL_NONE ;
2384
2384
const char * dbg = getenv ("LIBUSB_DEBUG" );
2385
2385
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 );
2394
2387
dbg_level = CLAMP (dbg_level , LIBUSB_LOG_LEVEL_NONE , LIBUSB_LOG_LEVEL_DEBUG );
2395
2388
level = (enum libusb_log_level )dbg_level ;
2396
2389
}
Original file line number Diff line number Diff line change 7
7
#define LIBUSB_MINOR 0
8
8
#endif
9
9
#ifndef LIBUSB_MICRO
10
- #define LIBUSB_MICRO 27
10
+ #define LIBUSB_MICRO 28
11
11
#endif
12
12
#ifndef LIBUSB_NANO
13
13
#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