forked from pool/libfilezilla
Compare commits
9 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 7f20afa6ae | |||
| 7824293533 | |||
| 5b78c4d41a | |||
| d3cf23f4e4 | |||
| 50b5741d11 | |||
| 3d14646204 | |||
| c0501bd457 | |||
| aa6e15b977 | |||
| 875b1dc25b |
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4eea8abd456096625893b707e8db6c949e6f0466136c51c0b8ce58b5f8ef1e43
|
||||
size 552864
|
||||
3
libfilezilla-0.52.0.tar.xz
Normal file
3
libfilezilla-0.52.0.tar.xz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1d0e1502613b4a158b5fe999cfbd0d15819041ece4fca0caa974fbf9e28f965a
|
||||
size 567944
|
||||
@@ -1,3 +1,77 @@
|
||||
-------------------------------------------------------------------
|
||||
Sat Nov 15 12:15:39 UTC 2025 - ecsos <ecsos@opensuse.org> - 0.52.0
|
||||
|
||||
- Update to 0.52.0
|
||||
* New features:
|
||||
- Event handlers can now be in a hierarchy.
|
||||
If calling remove_handler on a handler that has children,
|
||||
they are removed as well.
|
||||
- MSW: Added fz::async_pipe
|
||||
- Add operator< and operator== for strtokenizer
|
||||
- Added fz::read_file overload accepting a filename
|
||||
* Bugfixes and minor changes:
|
||||
- Fixes to mutex debugging to fix destruction order issues
|
||||
on program exit
|
||||
- Certificate verification: Display friendly error message in
|
||||
case of GNUTLS_CERT_INVALID_OCSP_STATUS
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Aug 12 10:37:02 UTC 2025 - ecsos <ecsos@opensuse.org>
|
||||
|
||||
- Update to 0.51.1
|
||||
* New features:
|
||||
- Added fz::get_final_link_target
|
||||
* Bugfixes and minor changes:
|
||||
- *nix: Fixed reporting the type of file if following symlinks
|
||||
in fz::local_filesys::get_file_info
|
||||
- Changes from 0.51.0
|
||||
* New features:
|
||||
- Added nocreate flag to fz::file::open::creation_flags,
|
||||
if set only files that already exist can be opened
|
||||
- Added sha1 and sha512 to fz::hash_accumulator
|
||||
- Added update_uint32_be and update_with_length to
|
||||
fz::hash_accumulator
|
||||
- *nix: fz::socket can now be used to connect to
|
||||
Unix Domain Sockets
|
||||
- Added flag to fz::uri to assume an authority when parsing
|
||||
schemless URIs
|
||||
- fz::get_file_info and fz::local_filesys::set_modification_time
|
||||
now return fz::result
|
||||
* Bugfixes and minor changes:
|
||||
- Improvements to timer handling if using event loops with the
|
||||
threadless flag
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 28 10:40:48 UTC 2025 - Martin Hauke <mardnh@gmx.de>
|
||||
|
||||
- Update to version 0.50.0
|
||||
New features:
|
||||
* Added 'fresh' fz::file::open::creation_flags. If set, file
|
||||
creation fails if a file with the same name already exists.
|
||||
* Added fz::get_digest_size for hash algorithms.
|
||||
* Impersonation changes for working with Active Directory users.
|
||||
* Transparent fz::less_/equal_insensitive_ascii comparators.
|
||||
* Generalized fz::starts_/ends_with.
|
||||
Bugfixes and minor changes:
|
||||
* fz::socket_base::close is now public.
|
||||
* Fixes to mutex-debugging functionality.
|
||||
* Fixes to fz::is_pem heuristic.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Nov 2 11:24:28 UTC 2024 - ecsos <ecsos@opensuse.org>
|
||||
|
||||
- Update to 0.49.0
|
||||
* New features:
|
||||
- Added fz::to_integral_o that returns an optional
|
||||
- If mutex-debugging is enabled, attempts to destroy a still
|
||||
locked mutex are now detected
|
||||
- fz::file can now also be oppened in append mode
|
||||
- MSW: Added users, authenticated_users and system entities to
|
||||
security_descriptor_builder
|
||||
* Bugfixes and minor changes:
|
||||
- fz::to_integral now verifies that the value fits into the
|
||||
return type instead of silently truncating
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jul 12 09:28:18 UTC 2024 - ecsos <ecsos@opensuse.org>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package libfilezilla
|
||||
#
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC and contributors
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -16,11 +16,11 @@
|
||||
#
|
||||
|
||||
|
||||
%define major 45
|
||||
%define major 50
|
||||
%define libname %{name}%{major}
|
||||
%define develname %{name}-devel
|
||||
Name: libfilezilla
|
||||
Version: 0.48.1
|
||||
Version: 0.52.0
|
||||
Release: 0
|
||||
Summary: C++ library for filezilla
|
||||
License: GPL-2.0-or-later
|
||||
@@ -80,6 +80,7 @@ Requires: %{libname} = %{version}-%{release}
|
||||
Files needed for development with %{name}.
|
||||
|
||||
|
||||
|
||||
# Need %%lang_package expanded for an extra conflict with an old library package
|
||||
|
||||
%package lang
|
||||
|
||||
Reference in New Issue
Block a user