-
Notifications
You must be signed in to change notification settings - Fork 18
/
CHANGES.txt
50 lines (43 loc) · 1.65 KB
/
CHANGES.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
0.3.1
- Updated cxxopts to 3.0.0
- Added NATIVE option to CMake config (set to "OFF" to configure for Python script)
- Updated Python script to same functionality as native binary
- Minor bug fixes
- Fixed bug where underscores appended to out file basename if shorter than hname
- Report elapsed time of finished job
0.3.0
- Added option -f to begin reading file at given offset
- Added option -l to process exact length in bytes
- Added option -p to pack data into 8, 16, or 32 bit words
- Added option -e to swap endianess for 16 or 32 bit words
- End of line character can be set with --eol option
0.2.0
- Split writing data out into chunks instead of attempting to write the entire file at once
- Fixes file size limitation
- Added some progress feedback output
- Pressing Ctrl-C will close file buffers & exit cleanly
- Support command-line options:
- help: show a help message
- version: show version info
- chunksize: set chunk write size
- stdvector: additionally store data in std::vector
0.1.3
- Cleaned up trailing whitespace in output file
- Use tabs instead of spaces after newlines
- Disabled storing as std::vector
- Fixed files not being read if not in nested directory structure
0.1.2
- Support copying char data in std::vector for C++
- Always use LF line endings in output file
- Fixed output filename & directory
- Ouput comment with header guard name after "#endif" statement
- Print "exported" message on success
- Fixed closing file buffer before exiting if file doesn't exist
0.1.2 (Python)
- Python 2 support ended
- Always use LF line endings in output file
0.1.0
- Changed license to MIT
- Support building with CMake
0.0.1
- Initial release