forked from justinfx/gofileseq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGES
133 lines (105 loc) · 4.51 KB
/
CHANGES
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
122
123
124
125
126
127
128
129
130
131
132
133
Changes:
2.8.0
----------------
* go/cpp - Add support for printf (%04d) and houdini ($F04) pad syntax formats
* cpp - Prevent segfault when calling getters on default constructed FileSequence; return default values
* cpp - Define FileSequence::operator bool() to return FileSequence::isValid()
* cmd/seqls - Update to a faster parallel filesystem walk library
* go - Update to Go 1.15.x
2.7.1
----------------
* cmd/seqls - Switch to a faster parallel filesystem walking library
2.7.0
----------------
* Removed vendored Go dependencies
* Fix handling of Windows path separator in FileSequence.SetDirname and findSequencesOnDisk
* cmd/seqls - Properly build against gofileseq/v2
* cmd/seqls - Add --hash1 flag to use pad hash width=1 instead of 4
* cmd/seqls - Add --strict flag to apply strict length of search pattern pad character to matches
* cpp: Add a cmake build setup
2.6.3
----------------
* Convert from Glide to Go module
2.6.2
----------------
* Add Go module support as v2
* exp/cpp: cleanups of experimental go/cpp binding
2.6.1
----------------
* Support a negative stepping value when start > end in frame range string pattern
* cpp: Prevent compiler warnings from int vs size_t
2.6.0
----------------
* cpp: Using C++11 and std::regex by default. Detect older compilers and use libpcre automatically as needed.
* go/cpp: Preserve complex file extensions parsed after a frame, such as file.0001.tar.gz (".tar.gz")
2.5.0
----------------
* go: Use strings.Builder instead of bytes.Buffer for less allocations (requires go >= 1.10)
2.4.0
----------------
* Update FindSequencesOnDisk to sort mixed frame padding into discreet sequence results
* Allow strict padding length check when filtering files for pattern match in FindSequenceOnDisk
* go/cpp: Adjust path split regex to better handle range directive chars being used at the end of a base name
2.3.1
----------------
* cpp-port: Fix: FrameSet::isValid() would return true even if it had a zero length range
2.3.0
----------------
* cpp - pure c++ port now available
2.2.3
----------------
* #8 - Bug: Use deterministic resolution of the padding character in findSequencesOnDisk()
2.2.2
----------------
* cmd/seqinfo - New tool for parsing and printing info about one or more file seq patterns
* Refactored vendoring into cmd/ location
2.2.1
----------------
* waf c++ build flags updated for static lib to avoid errors about -fPIC when link into another C++ lib
2.2.0
----------------
* #6 - Bug: Single frame parsing for padding and zfill does not match py-fileseq
* #7 - Feature: Allow option for changing frame padding styles (i.e. to something like Nuke)
2.1.0
----------------
* cpp - New C++ bindings on top of gofileseq
2.0.1
----------------
* cmd/seqls - Detect symlinks to directories and don't interpret them as discovered sequences
2.0.0
----------------
* Major refactor to the underlying logic of resolving ranges. Use an optimized storage and iteration approach, in order to
handle arbitrarily large ranges. Avoids memory allocation crashes, and very slow construction of FrameSet/FileSequence
Known Issues:
* While creating a FrameSet from a massive range like "1-10000000000x2" will be very quick, creating
FrameSets from multi-ranges with massive components like "20,50,60-10000000000" may be slow.
Improvements are still needed to the process of detecting unique values in the previously added
range components.
* Invert/Normalize functions are not as optimized as they could be. While they are much faster now for the common case of source
ranges like "1-10x2,50-100x3", they are significantly slower for less common cases where the source range is a massive amount
of individual values like "1,2,3,4,...,100000"
1.0.0
----------------
* cmd/seqls - Large refactor ; added support for passing sequence patterns (path/files.#.jpg)
* cmd/seqls - Skip hidden directories (in addition to hidden files), unless -a flag is used
* Docstring corrections
0.9.9
----------------
* Add support for reverse frame ranges (10-1)
* Improve the logic for parsing non-sequence single file paths
* Improve the logic for parsing frame numbers
* Add options to FindSequencesOnDisk for showing hidden files
* Fix various parsing conditions that could crash FindSequencesOnDisk
* seqls: Expose options for all / hidden files in results
0.9.2
----------------
* seqls: Buffer stdout
0.9.1
----------------
* Tweaks to gox cross-compiling
* seqls: Added a -quiet flag
* seqls: Format adjustments for Windows platform
* seqls: Continuing listing, even when encountering file errors
0.9.0
----------------
* Initial Release