-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathChangelog.txt
121 lines (67 loc) · 3.2 KB
/
Changelog.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
0.2.16
2021-12-21 Brecht Sanders https://github.com/brechtsanders/
* fix FindFirstFileEx() issues on Windows XP by falling back to FindFirstFileEx()
* on Windows don't include removable drives in dirtrav_iterate_roots()
0.2.15
2021-12-15 Brecht Sanders https://github.com/brechtsanders/
* don't abort traversal when errors occur on non-Windows operating systems
* Makefile: support building wide library (libdirtravw) on Windows
0.2.14
2021-12-15 Brecht Sanders https://github.com/brechtsanders/
* added dirtrav_iterate_roots() and dirtravw_iterate_roots()
0.2.13
2021-12-14 Brecht Sanders https://github.com/brechtsanders/
* don't abort traversal when errors occur on Windows
0.2.12
2021-08-19 Brecht Sanders https://github.com/brechtsanders/
* fix dirtrav_recursive_delete() and dirtravw_recursive_delete() to delete as much as possible on failure
0.2.11
2021-08-18 Brecht Sanders https://github.com/brechtsanders/
* fix build for non-Windows operating systems
0.2.10
2021-08-18 Brecht Sanders https://github.com/brechtsanders/
* added dirtrav_recursive_delete() and dirtravw_recursive_delete()
0.2.9
2020-09-11 Brecht Sanders https://github.com/brechtsanders/
* added dirtrav_free() and dirtravw_free() to release memory allocated by dirtrav_prop_get_owner()
* added owner column to rdir example
0.2.8
2020-03-22 Brecht Sanders https://github.com/brechtsanders/
* fixed dirtrav_prop_get_owner() in Windows to return SID if user name wasn't found locally (instead of NULL)
* added folderstats tool
* added Doxygen HTML manual generation
* added Doxygen and tools to Makefile
0.2.7
2020-03-21 Brecht Sanders https://github.com/brechtsanders/
* added dirtrav_supports_elevate_access()
* ran valgrind tests on Debian Linux
* fixed memory leak (missing free(fullpath)) in dirtrav_traverse_path_parts()
* added initial Makefile for building without CMake
* configured GitHub CI build (in file: .github/workflows/libdirtrav.yml)
0.2.6
2018-09-24 Brecht Sanders https://github.com/brechtsanders/
* added dirtrav_prop_get_extension()
0.2.5
2018-09-24 Brecht Sanders https://github.com/brechtsanders/
* added dirtrav_prop_get_owner()
0.2.4
2018-08-22 Brecht Sanders https://github.com/brechtsanders/
* added dirtrav_prop_get_top_path()
* added dirtrav_prop_get_relative_path()
0.2.3
2018-08-08 Brecht Sanders https://github.com/brechtsanders/
* fixes to documentation (including Doxygen)
* added -e option to folderstats (to run with elevated privileges)
0.2.2
2018-08-05 Brecht Sanders https://github.com/brechtsanders/
* fixed issue with dirtrav_prop_get_size() for sizes > 4GB on Windows
0.2.1
2018-08-05 Brecht Sanders https://github.com/brechtsanders/
* dirtrav_traverse_directory() now returns -1 instead of 0 when path is not found
0.2.0
2018-08-04 Brecht Sanders https://github.com/brechtsanders/
* fixed issue not calling foldercallbackafter when foldercallbackbefore returns negative value
* added tool: folderstats
0.1.0
2018-08-02 Brecht Sanders https://github.com/brechtsanders/
* initial release