|
1 | | -2010.304: 2.6.2 |
| 1 | +2013.056: 2.10 |
| 2 | + - Add more sanity checks to msr_unpack_data() to catch bad/corrupted |
| 3 | + data records and avoid crashes due to impossible pointer construction. |
| 4 | + |
| 5 | +2013.053: 2.9 |
| 6 | + - Extend parsing of day-of-year style time strings to allow parsing |
| 7 | + of time fields separated by dashes in addition to allowing the day |
| 8 | + and time fields to be separated by a 'T' or space. Modifications |
| 9 | + were made to ms_seedtimestr2hptime(). |
| 10 | + - Extend parsing of year-month-day style time strings to allow parsing |
| 11 | + of time fields separated by commas. Modifications were made to |
| 12 | + ms_timestr2hptime(). |
| 13 | + |
| 14 | +2013.050: |
| 15 | + - Add MS_ISVALIDYEARDAY() macro to test range for year and day values, |
| 16 | + years between 1900 and 2100 and days between 1 and 366. |
| 17 | + - Use new macro to determine when byte swapping is needed. This test |
| 18 | + leaves a non-determination of byte order for days 1, 256 and 257 in |
| 19 | + the year 2056, beware future data users. |
| 20 | + |
| 21 | +2013.007: 2.8 (again) |
| 22 | + - Add msr_parse_selection() to libmseed.def for Windows builds. |
| 23 | + - Fix errors in pseudo code in doc/msr_parse.3. |
| 24 | + |
| 25 | +2012.363: 2.8 |
| 26 | + - Implement msr_parse_selection() which is a wrapper of msr_parse() |
| 27 | + that searches for the first parsable miniSEED record in a memory |
| 28 | + buffer and returns it. Optionally a Selections list may be specified |
| 29 | + to limit the returned data to records matching specific criteria. |
| 30 | + |
| 31 | +2012.357: |
| 32 | + - Fix corruption of float sample types when opposite byte order than |
| 33 | + host in certain architecture combinations. By not addressing |
| 34 | + individual float samples directly as floats prior to byte swapping |
| 35 | + we avoid the values being placed into the FPU where they may be |
| 36 | + corrupted. Thanks to Moritz Beyreuther and Lion Krischer for discovery |
| 37 | + and testing. |
| 38 | + - Expose the msr_unpack_data() function for use by removing the static |
| 39 | + declaration. Change verbose flag type to match others and document. |
| 40 | + - Fix some logging messages, typos, etc. |
| 41 | + |
| 42 | +2012.138: 2.7 |
| 43 | + Add define for MINGW32 to use _fstat and _stat. |
| 44 | + |
| 45 | +2012.114: 2.7rc2 |
| 46 | + - Change record parsing code to trim trailing spaces from network, |
| 47 | + station, location and channel parameters. Spaces in between non-space |
| 48 | + characters remain. |
| 49 | + |
| 50 | +2012.111: |
| 51 | + - Update example/test.mseed to new data with an earthquake to make it |
| 52 | + more recognizable compared to ambient noise in the previous example. |
| 53 | + |
| 54 | +2012.105: 2.7rc1 |
| 55 | + - Add many type casts to quiet newer GCC and MSVC compilers. |
| 56 | + For 32-bit programs there are some places, mostly in packing routines, |
| 57 | + where 64-bit integers are converted to 32-bit values for sample buffer |
| 58 | + sizes and counts leaving the potential for overflow. This will become |
| 59 | + a problem when byte counts for sample buffers are beyond 2^31, for |
| 60 | + 32-bit integer sample values that is more than 536 million samples. |
| 61 | + So programmer beware if using such buffer sizes for packing miniSEED. |
| 62 | + |
| 63 | +2012.088: |
| 64 | + - When parsing records copy the ASCII string fields (sequence number, |
| 65 | + network, station, location, channel) directly without removing spaces. |
| 66 | + This makes the parser more lenient to unallowed characters and |
| 67 | + synchronizes read and write capabilities. |
| 68 | + |
| 69 | + - For sampling rates above 32,767 Hz only print a warning for high |
| 70 | + verbosity settings and set the sample rate factor and multipler to zero. |
| 71 | + Previously an error was printed during rational approximation. |
| 72 | + The expectation is that a record with such a high sample rate will |
| 73 | + include a blockette 100 to specify the actual sample rate. |
| 74 | + This is not an official convention for SEED, but is a kludge to |
| 75 | + support extremly high sample rates without printing errors. |
| 76 | + |
| 77 | + - Fix conversion to doubles in examples/msrepack.c. |
| 78 | + |
| 79 | +2011.304: 2.6.2 |
2 | 80 | - Increase precision of sample rate in SYNC printing routines to |
3 | 81 | avoid trucation of rate values. |
4 | 82 |
|
|
0 commit comments