Age | Commit message (Collapse) | Author | Files | Lines |
|
|
|
|
|
## FLAC 1.4.0
As there have been changes to the library interfaces, the libFLAC version number is incremented to 12, the libFLAC++ version number is incremented to 10. As some changes were breaking, the version age numbers (see [libtool versioning](https://www.gnu.org/software/libtool/manual/libtool.html#Libtool-versioning)) have been reset to 0. For more details on the changes to the API, see the [porting guide](https://xiph.org/flac/api/group__porting__1__3__4__to__1__4__0.html).
The XMMS plugin and 'common' plugin code (used only by the XMMS plugin) are deprecated, they will be removed in a future release.
* General:
* It is now possible to limit the minimum bitrate of a FLAC file generated by libFLAC and with the `flac` tool to 1 bit/sample. This function can be used to aid live streaming, for example for internet radio
* Encoding files with sample rates up to 1'048'575Hz is now possible. (Con Kolivas)
* Compression of preset -3 through -8 was slightly improved at the cost of a small decrease in encoding speed by increasing the precision with which autocorrelation was calculated (Martijn van Beurden)
* Encoding speed of preset -0, -1 and -2 was slightly improved
* Compression of presets -1 and -4 was slighly improved on certain material by changing the adaptive mid-side heuristics
* Speedups specifically targeting 64-bit ARMv8 devices using NEON were integrated (Ronen Gvili, Martijn van Beurden)
* Speedups for x86_64 CPUs having the FMA instruction set extention are added
* Encoding and decoding of 32-bit PCM is now possible
* (Ogg) FLAC format:
* The FLAC format document is being rewritten by the IETF CELLAR working group. The latest draft can be found on [https://datatracker.ietf.org/doc/draft-ietf-cellar-flac/](https://datatracker.ietf.org/doc/draft-ietf-cellar-flac/)
* The FLAC format document specifies no bounds for the residual. In other to match current decoder implementations, it is proposed to bound the residual to the range provided by a 32-bit int signed two's complement. This limit must be checked by FLAC encoders as to keep FLAC decoders free from the complexity of being to decode a residual exceeding a 32-bit int.
* There is now a set of files available to test whether a FLAC decoder implements the format correctly. This FLAC decoder testbench can be found at [https://github.com/ietf-wg-cellar/flac-test-files](https://github.com/ietf-wg-cellar/flac-test-files). Also, results of testing hard- and software can be found here at [https://wiki.hydrogenaud.io/index.php?title=FLAC_decoder_testbench](https://wiki.hydrogenaud.io/index.php?title=FLAC_decoder_testbench).
* flac:
* The option --limit-min-bitrate was added to aid streaming, see [github #264](https://github.com/xiph/flac/pull/264)
* The option --keep-foreign-metadata-if-present is added. This option works the same as --keep-foreign-metadata, but does return a warning instead of an error if no foreign metadata was found to store or restore
* The warning returned by the foreign metadata handling is now clearer in case a user tries to restore foreign metadata of the wrong type, for example decoding a FLAC file containing AIFF foreign metadata to a WAV file
* A problem when using the analyse function causing the first frame to have a wrong size and offset was fixed
* Fix bug where channel mask of a file is unintentionally reused when several files are processed with one command
* The order of compression-related commands is no longer important, i.e. -8ep gives the same result as -ep8. Previously, a compression level (like -8) would override a more specific setting (like -e or -p). This is no longer the case
* flac now checks the block-align property of WAV files to ensure non-standard WAV files (for which flac has no handling) are not mangled
* metaflac:
* (none)
* build system:
* MSVC and Makefile.lite build system files have been removed. Building with MSVC (Visual Studio) can be done by using CMake
* Various CMake improvements, especially for creating MSVC build files (Martijn van Beurden, martinRenou, CookiePLMonster, David Callu, Tyler Dunn, Cameron Cawley)
* Various fixes for MinGW (Martijn van Beurden, Cameron Cawley)
* Removed obsolete autotools macro's to silence warnings
* Fixes for FreeBSD PowerPC (pkubaj)
* Fixed some compiler warnings (Martijn van Beurden, Tyler Dunn)
* Fix building with uclibc (Fabrice Fontaine)
* testing/validation:
* Addition of new encoder fuzzer, adding fuzzing for 8, 24 and 32-bit inputs
* Addition of new decoder fuzzer, adding coverage of seeking code
* Addition of metadata fuzzer, adding coverage of metadata APIs
* Various improvements to fuzzers to improve code coverage, fuzzing speed and stability
* Many changes to test suite to improve cross-platform compatibility (Rosen Penev)
* Windows CI now also builds the whole test suite
* Clang-format file added (Rosen Penev)
* Add warning on using v141_xp platform toolset with /MT (Martijn van Beurden, Paul Sanders)
* libraries:
* Various seeking fixes (Martijn van Beurden, Robert Kausch)
* Various bugs fixed found by fuzzing
* On decoding, it is now checked whether residuals can be contained by a 32-bit int, preventing integer overflow
* Add check that samples supplied to libFLAC actually fall within the bps set
* Add checks when parsing metadata blocks to not allocate excessive amounts of memory and not overread
* Undocumented Windows-only utf8 functions are no longer exported to the DLL interface
* Removed all assembler and intrinsics code from the decoder to improve fuzzing, as they provided only a small speed benefit
* The bitwriter buffer is limited in size to 2^24 bytes, so it cannot write excessively large files. This is a backup in case another bug in this area creeps (back) in.
* The metadata iterations should now never return a vorbiscomment entry with NULL as an entry, now always at least an empty string is returned
* documentation:
* Removed html documentation and generate man pages from markdown
* Interface changes:
* libFLAC:
* Addition of FLAC__stream_encoder_set_limit_min_bitrate() and FLAC__stream_encoder_get_limit_min_bitrate(), see [github #264](https://github.com/xiph/flac/pull/264)
* get_client_data_from_decoder is renamed FLAC__get_decoder_client_data(), see [github #124](https://github.com/xiph/flac/pull/124)
* All API functions taking a filename as an argument now take UTF-8 filenames on Windows, and no longer accept filenames using the current codepage
* FLAC__Frame struct has changed: warmup samples are now stored in FLAC__int64 instead of FLAC__int32 types, and verbatim samples can now be stored in either FLAC__int32 or FLAC__int64 depending on whether samples fix the former or latter
* The FLAC__StreamMetadata struct now has a tag, so it can be forward declared
* libFLAC++:
* Addition of ::set_limit_min_bitrate() and ::get_limit_min_bitrate(), see [github #264](https://github.com/xiph/flac/pull/264)
* All API functions taking a filename as an argument now take UTF-8 filenames on Windows, and no longer accept filenames using the current codepage
* The ::FLAC__Frame struct has changed, see the libFLAC interface change.
|
|
|
|
== [8.2.2] 2022-08-26 ==
* Abort if no progress with thread suspend/resume signals resending
* Add CMake option to force libatomic_ops headers usage
* Add _PROP suffix to CORD/GC[CPP]_VERSION variables in CMake script
* Allow not to bypass pthread_cancel hardening in pthread_start
* Allow to start marker threads in child of single-threaded client
* Avoid potential race in GC_init_real_syms after GC_allow_register_threads
* Avoid potential signal loss before sigsuspend in suspend_handler if TSan
* Define SUNOS5SIGS macro for kFreeBSD
* Distribute gc_gcj.h and some other headers in single-obj-compilation
* Do not assert that GC is initialized at DLL_THREAD_DETACH (Win32)
* Do not call SET_HDR() to remove forwarding counts if none exists in hblk
* Do not call mprotect/mmap to GC_unmap/remap (Linux)
* Do not count unmapped regions if GC_unmap is madvise-based (Linux)
* Do not define NEED_FIND_LIMIT in case of OpenBSD user threads
* Do not fail tests if pthread_create returns resource unavailable error
* Do not name GCC intrinsics as C11 ones
* Do not probe to find main data root start if dl_iterate_phdr exists
* Do not send signal to thread which is suspended manually
* Do not use usleep between signals resend if ThreadSanitizer
* Eliminate '-pedantic is not option that controls warnings' GCC-6.3 message
* Eliminate '/GS can not protect parameters' MS VC warning in msvc_dbg
* Eliminate 'R_AARCH64_ABS64 used with TLS symbol' linker warning (clang)
* Eliminate 'buffer overflow detected' FP error in realloc_test
* Eliminate 'extension used' clang warning in sparc_mach_dep.S (configure)
* Eliminate 'function/data pointer conversion in expression' MSVC warning
* Eliminate 'implicit decl of _setjmp' gcc warning if -std=c11 on Cygwin
* Eliminate 'layout of aggregates has changed in GCC 5' warning in test_cpp
* Eliminate 'new_l may be used uninitialized' gcc warning in os_dep (Cygwin)
* Eliminate 'old_gc_no is initialized but not referenced' MS VC false warning
* Eliminate 'possible loss of data' compiler warning in GC_envfile_getenv
* Eliminate 'potentially uninitialized local variable tc' warning (MSVC)
* Eliminate 'skipping config since MAX_HEAP_SECTS is unknown' cppcheck FP
* Eliminate 'unused but set variable' gcc warnings in cpptest
* Eliminate 'value exceeds maximum size' warnings in debug_malloc, huge_test
* Eliminate 'writing into region of size 0' gcc FP warning in realloc
* Eliminate ASan stack-buffer-underflow FP in GC_mark_and_push_stack (E2K)
* Eliminate code defect about incorrect size of allocated object (leaktest)
* Eliminate data race reported by TSan in GC_have_errors
* Eliminate division-by-zero FP warning in GC_ASSERT in reclaim_block
* Eliminate stringop-overflow gcc-12 warning in CORD__next
* Ensure typed objects descriptor is never located in the first word
* Fix 'GC_greatest_stack_base_below is defined but not used' warning (IA64)
* Fix 'GC_text_mapping not used' GCC warning if redirect malloc w/o threads
* Fix 'ISO C forbids conversion of function pointer to object' warning
* Fix 'undeclared getpagesize' compiler warning on AIX and OSF1
* Fix 'undefined reference to __data_start' linker error on Linux/aarch64
* Fix 'unresolved __imp__wsprintfA' linker error in msvc_dbg.c (MSVC)
* Fix 'unresolved symbol GetModuleHandle' error in win32_threads.c (UWP)
* Fix (workaround) stack overflow in gctest on Alpine Linux/s390x
* Fix GC_ATTR_NO_SANITIZE_THREAD definition for GCC
* Fix GC_allocate_ml incorrect cleanup in GC_deinit if pthreads (MinGW)
* Fix GC_dirty() argument in GC_malloc_explicitly_typed_ignore_off_page
* Fix GC_make_descriptor for zero length argument
* Fix GC_suspend_thread if called before thread destructor
* Fix GC_unmapped_bytes update in GC_unmap for Sony PS/3
* Fix SIGSEGV caused by dropped stack access from child process in gctest
* Fix SUNOS5SIGS documentation to match macro definition in gcconfig.h
* Fix abort in Win32 DllMain if PARALLEL_MARK
* Fix abort when GC_repeat_read returns zero
* Fix assertion about built-in AO_test_and_set_acquire on sparc64 (gcc-12)
* Fix assertion violation in GC_allow_register_threads on Windows
* Fix assertion violation of GC_thread_key alignment if pthread-based TLS
* Fix comment in GC_init regarding GC_init_parallel call
* Fix context saving when GC_suspend_thread(self)
* Fix data race in fail_proc1 of gctest
* Fix hang in GC_free if GC_PREFER_MPROTECT_VDB (Mingw64)
* Fix hang in select() called from suspend signal handler if TSan
* Fix hang on sem_wait in GC_suspend_thread if thread was resumed recently
* Fix hb_obj_kind type in documentation (ASCII diagram) describing hblkhdr
* Fix incremental mode enabling in gctest if TEST_MANUAL_VDB
* Fix linking of tests in case of finalization is off
* Fix lock assertion violation in GC_find_limit if always multi-threaded
* Fix memory return to OS in GC_unmap
* Fix missing lock when GC_generate_random_valid_address is called
* Fix missing write() declaration if CONSOLE_LOG (Watcom)
* Fix nodist_libgc_la_SOURCES value in Makefile.am for Solaris/sparc
* Fix oldProc initialization in gc_cleanup and eliminate related warnings
* Fix parallel_initialized assertion violation in initsecondarythread (Win32)
* Fix potential race if start_mark_threads called from threads in child
* Fix propagation of out-of-memory occurred in GC_make_sequence_descriptor
* Fix pthread_setname_np and dladdr detection by CMake
* Fix race between calloc_explicitly_typed and push_complex_descriptor
* Fix typos in comments and debugging.md
* Fix undefined __stack_base__ on UWP/arm64 (llvm-mingw)
* Force GC_with_callee_saves_pushed in suspend_handler if NO_SA_SIGACTION
* Link with rt library to get clock_gettime where necessary
* Make finalizer_closure pointer read/write atomic in malloc and callback
* Move platform-specific sleep call to GC_usleep (refactoring)
* Pass -lrt linker option in CMake script on HP/UX, NetBSD
* Prevent (fix) parallel custom mark procs run in single-threaded clients
* Prevent changing of GC_markers_m1 value while collection in progress
* Refer to Makefile.direct instead of deleted Makefile file in README
* Relax assertion of hb_n_marks in reclaim_block if more than two markers
* Remove IF_IA64 macro in pthread_stop_world (refactoring)
* Remove checking of RS6000 completely
* Remove duplicate check of MSWIN_XBOX1 in os_dep.c
* Remove duplicate include gc_tiny_fl.h in gc_priv.h
* Remove non-working check of M68K in gctest
* Remove useless TSan W/A about read of mark_lock_holder for Windows
* Replace RAISE_SIGNAL macro with a static function (refactoring)
* Replace SSH cloning with HTTPS one in README
* Retry pthread_kill if EAGAIN (Linux)
* Revert "Check real-symbols are already initialized in pthread_join/detach"
* Revert "Remove nested always-false ifdef for HPUX and FREEBSD"
* Revert addition of msvc_dbg.h in include.am
* Set default build type to RelWithDebInfo (CMake)
* Start configure help messages with a lower case letter
* Support 'z' format modifier by CORD_vsprintf
* Support Elbrus 2000 (Linux/e2k)
* Support GCC MCF thread model (mcfgthreads) in configure (MinGW)
* Support GC_remove_roots on Win32
* Support OpenBSD/riscv64
* Support build using Makefile.direct on Linux/sparc
* Support space-separated flags in CFLAGS_EXTRA passed to CMake
* Update README.win32 about default build configuration (configure, cmake)
* Update documentation of GC_RATE and MAX_PRIOR_ATTEMPTS
* Use SIGRTMIN+6 as suspend signal if sigrt-signals on OpenBSD
* Use SIGUSR1/2 on FreeBSD/arm64
* Use compiler TLS on NetBSD only if at least gcc-4.4 or clang-3.9
* Workaround 'info is not assigned' cppcheck FP if assertions on (OS X)
* Workaround SIG_SUSPEND delivery to thread inside mutex_lock fail if TSan
* Workaround TSan FP about race between generic_malloc and array_mark_proc
* Workaround TSan FP in acquire_mark_lock called from fork_prepare_proc
* Workaround TSan FP warning in finalized_malloc, push_unconditionally
* Workaround TSan FP warning in fork_prepare_proc
* Workaround TSan FP warning in push_marked1/2/4, ptr_store_and_dirty
* Workaround Thread Sanitizer (TSan) FP warning in is_valid_displacement
* Workaround call stack size exceeded in gctest (Wasm)
* Workaround crash in FreeBSD rand() by avoiding its concurrent usage
* Workaround gctest hang if test compiled as C++ code by MSVC (CMake)
* Workaround msvc_dbg.c build failure on arm[64] (MSVC)
|
|
|
|
|
|
|
|
v0.19.3
- Bug fixes for passing filters using the --on-load argument.
v0.19.2
- Fixed support for the following keys in input mode:
ctrl-h
ctrl-b
ctrl-f
home
end
ctrl-k
v0.19.1
- You can now access uid and gid of the file owners in the Lua API. See
column-renderer and node docs.
- The input buffer will support more readline-like keys. Also, added
"DeleteTillEnd" as another cursor based "InputOperation" option.
See tui-input v0.5.0 release.
- Fixed applying regex based filters via the CLI and $XPLR_PIPE_MSG_IN pipe.
See issue #503.
- You can use the prompt field to define input prompt for each mode, instead
of using the SetInputPrompt message. See init.lua changes.
|
|
|
|
0.6.9 (2022-09-11)
Bug Fixes
- Enable correct accent color selection by changing layout (fixes #48)
Features
- Better operator layout, fixes quirky color picking in operator menu.
|
|
|
|
|
|
Adam Sampson (1):
Fix length check in XftTextExtents*.
Thomas E. Dickey (3):
revised fix for gcc 12 compiler warnings in xftextent.c
fix gcc12 warning about malloc size
libXft 2.3.6
|
|
|
|
pkgsrc change: Add missing dependencies.
1.0.1 (2022-08-29)
* OAuth::CLI has been extracted to a new gem, oauth-tty, hosted on Gitlab
- The public API of oauth-tty is backwards compatible (meaning OAuth::CLI)
- The change within the oauth gem is backwards compatible as oauth-tty has
been added as a dependency
- Minor version bump is cautionary, as many lines of code have changed.
* OAuth::Comsumer#options hash is now handled by snaky_hash, which was
extracted from oauth2
- symbolized keys, dot-access and snake-case are now normalized
1.1.0 (2022-08-29)
* OAuth::Comsumer#options hash is now handled by snaky_hash, which was
extracted from oauth2 symbolized keys, dot-access and snake-case are now
normalized
|
|
|
|
|
|
OAuth::TTY
A TTY Command Line Interface for interacting with OAuth 1.0 services.
This library was written originally by Thiago Pinto in 2016 and bundled with
the oauth gem. It was extracted into a separate library by Peter Boling in
2022 as part of the move to a stable version 1.0 for the oauth gem.
|
|
|
|
|
|
Required by ruby-auth version 1.0.1 and later.
SnakyHash
This gem is used by the oauth and oauth2 gems, and others, to normalize hash
keys and lookups, and provide a nice psuedo-object interface.
It has its roots in the Rash (specifically the rash_alt flavor), which is a
special Mash, made popular by the hashie gem.
Classes that include SnakyHash::Snake should inherit from Hashie::Mash.
|
|
|
|
|
|
Required by ruby-auth package version 1.0 and later.
VersionGem
Alternatives
This gem has a very niche purpose, which is:
1. providing introspection of a Version module based on a Version::VERSION
constant string,
2. while not interfering with gemspec parsing where the VERSION string is
traditionally used.
If this isn't precisely your use case you may be better off looking at
Versionaire, a wonderful, performant, well-maintained, gem from the
Alchemists.
For more discussion about this see issue #2
|
|
|
|
Update DEPENDS
Upstream changes:
1.000000 2022-08-17 18:19:05Z
- This module is no longer considered to be beta
- Document that Everywhere can be used with the -M switch (GH#22) (Olaf
Alders)
- Recognise subtype soap+xml (GH#25) (David Precious)
- Drop dependency on URI::Query
|
|
|
|
Upstream changes:
1.5 2020-10-06 00:54:06Z
* Added cookie jar capability to non-server usage (Torsten Raudssus)
|
|
|
|
Upstream changes:
0.036 2022-01-16 04:11:38Z
- use http rather than https URIs in network tests
0.035 2022-01-15 03:45:06Z
- fix network test that failed due to a broken redirect service
|
|
|
|
Upstream changes:
0.18 2022-06-20 16:44:43 PDT
- Support max_redirect: 0 (skaji) #23
|
|
|
|
Upstream changes:
Changes for version 6.37 - 2022-06-14
Support for Brotli "br" encoding (GH#163) (trizen and Julien Fiegehenn)
Don't test Perl > 5.32 on Windows in GH Actions (GH#174) (Olaf Alders)
|
|
|
|
Upstream changes:
0.014 2022-07-25 09:45:56-04:00 America/New_York
- No changes from 0.013
0.013 2022-07-17 10:13:20-04:00 America/New_York (TRIAL RELEASE)
[FIXED]
- Cookie last access time is updated when a cookie is retrieved; this has
no functional effect but is consistent with RFC 6265.
|
|
|
|
Upstream changes:
1.08 Wed 07 Sep 2022
- <frame> and <iframe> are no longer on the list of self-closing tags.
Thanks to Graham Knop for catching this
- Updated packaging
1.07 Thu 01 Sep 2022
- No functional changes
- POD error fix
1.06 Wed 31 Aug 2022
- Updated packaging and package metadata
- Minimum Perl version requirement raised to 5.6
- New shortcut methods for HTML5 tags as well as previously missing tags:
applet article aside audio bdi blink canvas center data datalist details
dialog dir embed figcaption figure font footer header hgroup keygen main
mark marquee menu menuitem meter nav nobr output picture portal progress
rb rp rt rtc ruby s section slot source strike summary template time
track u video wbr xmp
|
|
|
|
Upstream changes:
0.9520 Mon Nov 29 22:01:58 EET 2021
- added pcre2 support (old pcre support stil exists)
- closed rt.cpan.org #140119 - pcre2 support
0.9521 Thu Dec 2 09:09:51 EET 2021
- closed rt.cpan.org #109255 - urlencode shouldn't encode '\'.
0.9522 Mon Dec 6 19:25:43 EET 2021
- fixed memory leak in perl wrapper code. libhtmltmplpro
was not affected by it.
- closed rt.cpan.org #78121 - 'I found a memory leak'
0.9523 Wed Dec 15 02:05:11 EET 2021
- fixed memory leak in perl wrapper code. libhtmltmplpro
was not affected by it.
- closed rt.cpan.org #140477 - 'Possible memory leak'
0.9524 Sun Jan 16 22:36:21 EET 2022
- fixed misprint in error message
- closed rt.cpan.org #140731 - 'Misprint'
|
|
|
|
Upstream changes:
Changes for version 0.26 - 2021-12-15
Fix typo in documentation for selector_to_xpath. It is equivalent to HTML::Selector::XPath->new(shift)->to_xpath(@_) Reported as RT 140473 by JDEGUEST
|
|
|
|
Upstream changes:
3.78 2022-03-28
* Remove unused variable (GH#26) (Michal Josef Špaček)
3.77 2022-03-14
* Update tests to remove HTML4 specific tags (GH#25) (Jess)
|
|
|
|
Upstream changes:
1.0050 2022-09-05 08:46:44 PDT
[BUG FIXES]
- Revert #660 where POST requests failed when Middleware::Static was used with a code in `path` (#683)
1.0049 2022-09-01 10:43:42 PDT
[IMPROVEMENTS]
- Fix typos in docs #659
- Test improvements, including moving from Travis CI to GitHub
- Restrict non-GET/HEAD requests to App::File #662
- Improved nginx FastCGI example #675
- Added documentation about port 5000 for MacOS Montery
- Added verify_SSL in Plack::LWPish #677
- Added 'force' option to IIS6ScriptNameFix #679
|
|
|
|
Upstream changes are minor improvements and bugfixes.
|
|
|