libgit2 recently added an option GIT_OPT_SET_OWNER_VALIDATION which prevented
other users from reading a repository. In the case of stagit it is not a
security issue and broke a normal use-case. This new version disables the
option.
Also stagit makes use of OpenBSD pledge and unveil and locks down reading
other files from the filesystem or writing to them etc.
From maintainer Hiltjo Posthuma, thanks!
Improvements:
- The file browser does not crash when moving up to the root folder.
- Softwrapping very long lines is done more efficiently.
- Invoking the formatter does not blink the screen.
ok naddy@
## [1.2.0] - 2022-08-02
Encoder
- Improve CRF preset tradeoffs for both the default and fast-decode modes
- Improve the SSIM-based tradeoffs of the presets without impacting those of PSNR / VMAF
- Improve CBR mode by enhancing the bit-distribution within the gop
- Added support for reference frame scaling
- Added support for quantization matrices
- Added svtparams patches applicable to ffmpeg 4.4
- AVX2 optimizations for low-delay mode
- TPL-based VBR mode improvements
- Improved Chroma RDOQ
- Improve TPL QP Scaling
- Add length info to ivf header
- Fix support for metadata pass-through
- Add ability to specify Chroma and Luma qindex offsets independently on top of CRF qp assignments
Build, Cleanup and Documentation
- Fix multiple API documentation mismatches
- Updated features documentation
- Various functional bug fixes
Update diff from Brad, thanks
There used to be a binutils port which was removed in 2004, which created
a merge conflict when using portimport.
Add Makefile manually to fix the issue.
This package contains the following GNU binary utilities:
- addr2line - Converts addresses into filenames and line numbers.
- ar - A utility for creating, modifying and extracting from archives.
- c++filt - Filter to demangle encoded C++ symbols.
- elfedit - Update ELF header and program property of ELF files.
- nm - Lists symbols from object files.
- objcopy - Copies and translates object files.
- objdump - Displays information from object files.
- ranlib - Generates an index to the contents of an archive.
- readelf - Displays information from any ELF format object file.
- size - Lists the section sizes of an object or archive file.
- strings - Lists printable strings from files.
- strip - Discards symbols.
All installed utilities have the 'g' prefix prepended to the binary
name.
OK sthen@
changelog:
Features
Add possibility to initialize client by json file
Improve Query UX - simplify serialization to JSON and add
possibility to serialize query results as a flattened list of
values
Bug Fixes
Redact the Authorization HTTP header from log
OK sthen@
This unbreaks python 3.* on powerpc. The build had enabled PGO
(Profile Guided Optimization), then got "Segmentation fault" from the
./python binary. This seems to be a bug in clang or lld specific to
32-bit powerpc. We continue to --enable-optimizations on powerpc64.
ok kmos@, sthen@
libsoup-2.4 and libsoup-3.0 were being loaded into the same process
(which happened some of the time with quodlibet-4.4.0, and all the
time with 4.5.0).
from upstream:
Fix std::is_same compiler error
std::is_same is the wrong predicate to use because `unsigned long` need
not be equivalent to either `unsigned int` or `unsigned long long`.: