4 Commits

Author SHA256 Message Date
58f0cd0672 Accepting request 1324490 from GNOME:Apps
- Update to 4.2.0:
  * ADDED: interactive search (ctrl-f)
  * IMPROVED: search now matches query against type, account label, and issuer uniformly
  * IMPROVED: Streamlined treeview model population to read JSON directly with safe defaults
  * IMPROVED: Simplified OTP update flow and tightened reorder/delete safety and cleanup
  * IMPROVED: Centralized app/db default initialization and early cleanup paths in app.c
  * IMPROVED: Tightened error handling by clearing config migration errors and freeing the config path
  * IMPROVED: Made early-exit cleanup safer by avoiding double-freeing the database key
  * IMPROVED: Added a helper to clear password entries and reset visibility on successful submit
  * IMPROVED: Cleared old/new password fields before the dialog closes to avoid brief exposure
  * IMPROVED: Initialized settings defaults when the config load fails and persisted them to otpclient.cfg
  * IMPROVED: Added warning dialog only when saving fallback defaults fails
  * IMPROVED: cli: improve robustness and correctness in string and file handling
  * FIXED: duplicate windows and tray icons on re-activation (#409)

OBS-URL: https://build.opensuse.org/request/show/1324490
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/otpclient?expand=0&rev=41
2025-12-28 18:19:21 +00:00
d5c8b1f445 - Update to 4.2.0:
* ADDED: interactive search (ctrl-f)
  * IMPROVED: search now matches query against type, account label, and issuer uniformly
  * IMPROVED: Streamlined treeview model population to read JSON directly with safe defaults
  * IMPROVED: Simplified OTP update flow and tightened reorder/delete safety and cleanup
  * IMPROVED: Centralized app/db default initialization and early cleanup paths in app.c
  * IMPROVED: Tightened error handling by clearing config migration errors and freeing the config path
  * IMPROVED: Made early-exit cleanup safer by avoiding double-freeing the database key
  * IMPROVED: Added a helper to clear password entries and reset visibility on successful submit
  * IMPROVED: Cleared old/new password fields before the dialog closes to avoid brief exposure
  * IMPROVED: Initialized settings defaults when the config load fails and persisted them to otpclient.cfg
  * IMPROVED: Added warning dialog only when saving fallback defaults fails
  * IMPROVED: cli: improve robustness and correctness in string and file handling
  * FIXED: duplicate windows and tray icons on re-activation (#409)

OBS-URL: https://build.opensuse.org/package/show/GNOME:Apps/otpclient?expand=0&rev=88
2025-12-27 13:33:58 +00:00
a738e238b9 Accepting request 1276247 from GNOME:Apps
- Update to 4.1.0:
  * ADDED: minimize to tray with ayatana-appindicator3 (#386 thanks a lot @len-foss)
  * IMPROVED: only show memlock warning dialog when secure memory is unavailable (#397)
  * IMPROVED: allow creating a database via CLI (#392)
  * FIX: allow using different databases in flatpak (#372)
  * CHANGED: dropped andOTP support

OBS-URL: https://build.opensuse.org/request/show/1276247
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/otpclient?expand=0&rev=40
2025-05-09 16:52:03 +00:00
f79869e4ff - Update to 4.1.0:
* ADDED: minimize to tray with ayatana-appindicator3 (#386 thanks a lot @len-foss)
  * IMPROVED: only show memlock warning dialog when secure memory is unavailable (#397)
  * IMPROVED: allow creating a database via CLI (#392)
  * FIX: allow using different databases in flatpak (#372)
  * CHANGED: dropped andOTP support

OBS-URL: https://build.opensuse.org/package/show/GNOME:Apps/otpclient?expand=0&rev=86
2025-05-09 11:54:24 +00:00
6 changed files with 54 additions and 23 deletions

View File

@@ -1,3 +1,31 @@
-------------------------------------------------------------------
Sat Dec 27 13:32:28 UTC 2025 - Paolo Stivanin <info@paolostivanin.com>
- Update to 4.2.0:
* ADDED: interactive search (ctrl-f)
* IMPROVED: search now matches query against type, account label, and issuer uniformly
* IMPROVED: Streamlined treeview model population to read JSON directly with safe defaults
* IMPROVED: Simplified OTP update flow and tightened reorder/delete safety and cleanup
* IMPROVED: Centralized app/db default initialization and early cleanup paths in app.c
* IMPROVED: Tightened error handling by clearing config migration errors and freeing the config path
* IMPROVED: Made early-exit cleanup safer by avoiding double-freeing the database key
* IMPROVED: Added a helper to clear password entries and reset visibility on successful submit
* IMPROVED: Cleared old/new password fields before the dialog closes to avoid brief exposure
* IMPROVED: Initialized settings defaults when the config load fails and persisted them to otpclient.cfg
* IMPROVED: Added warning dialog only when saving fallback defaults fails
* IMPROVED: cli: improve robustness and correctness in string and file handling
* FIXED: duplicate windows and tray icons on re-activation (#409)
-------------------------------------------------------------------
Fri May 9 11:43:25 UTC 2025 - Paolo Stivanin <info@paolostivanin.com>
- Update to 4.1.0:
* ADDED: minimize to tray with ayatana-appindicator3 (#386 thanks a lot @len-foss)
* IMPROVED: only show memlock warning dialog when secure memory is unavailable (#397)
* IMPROVED: allow creating a database via CLI (#392)
* FIX: allow using different databases in flatpak (#372)
* CHANGED: dropped andOTP support
-------------------------------------------------------------------
Wed Aug 7 08:24:08 UTC 2024 - Paolo Stivanin <info@paolostivanin.com>

View File

@@ -1,7 +1,7 @@
#
# spec file for package otpclient
#
# 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
@@ -18,7 +18,7 @@
%define uclname OTPClient
Name: otpclient
Version: 4.0.2
Version: 4.2.0
Release: 0
Summary: Simple GTK+ client for managing TOTP and HOTP
License: GPL-3.0-or-later
@@ -30,6 +30,7 @@ Source2: otpclient.keyring
BuildRequires: cmake
BuildRequires: gcc
BuildRequires: gcc-c++
BuildRequires: libayatana-appindicator3-devel
BuildRequires: libcotp-devel >= 3.0.0
BuildRequires: libgcrypt-devel >= 1.10.1
BuildRequires: libjansson-devel >= 2.12.0
@@ -51,13 +52,14 @@ that supports both Time-based One-time Passwords (TOTP) and
HMAC-Based One-Time Passwords (HOTP).
%prep
%setup -q -n %{uclname}-%{version}
%autosetup -p1 -n %{uclname}-%{version}
%build
%cmake \
-DCMAKE_INSTALL_PREFIX=%{_prefix} \
-DBUILD_GUI=ON \
-DBUILD_CLI=ON
-DBUILD_CLI=ON \
-DENABLE_MINIMIZE_TO_TRAY=ON
%cmake_build
%install

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b5666983c30f775b2b95413b441c6e2c6ad98ed1dbe0d2973647a511af50f224
size 206335

View File

@@ -1,16 +0,0 @@
-----BEGIN PGP SIGNATURE-----
iQIzBAABCAAdFiEEBgxrfThp8UjExKzUPJvptk7B6mQFAmazLmgACgkQPJvptk7B
6mSTqQ/+OILBjSZVEx3Zby3kCmgPYMQDmiE0aXZb2D1JFx1R7ssDqHJGRD+EuJed
URZ6XL0FuY5NA0jUU6Y3/D7nykPKmPYZzj2e6+QwYiSVJwEv6fPWFRVMqVWNu5k9
lLpZIN4R49q1I5M3Vu9/c9kQQbaQnKaHJ67zBV1nN5jD0xE+gJKFOY8Guxv39VEt
L7xv5ztKVpzEcOINk2zPcjpI3b/7nPcxSRjIt6nvNSVUxJiPFR0clhucifkr8AXY
8TPkzTdr/UVRl0v7GG+C85CCGVIZT0AJv40we7mcIyakOgpMwj6yGkZ9Sq4+QRri
njzHxdAZqN7htdVOfVQb0WNrndu2te1smnKLocriZHV9x3HzORJQJKXrLiFg7rHE
WMF0o5GRacfbWo9DcsK+EVpiS7YJqWjcefOFpmIFmsPYMcTuKMT+ii5YK5G+Tkpw
AnXwUzDhHJe6gV6aiAZV4aE4ta98LcBodcpAISxmOBrb5jcGRTB6RdORe6hp47oA
IYU0FDKDglZ6KF+exo3rX7cz+QjnpL9HeQwr6Xa2rgCwn9EKS71319P8q6k0q1Pn
DIRm/ylWopOp2VkRCmxGzIjysDHwADyaMi9yytU/hjpQwu6gnDyLNzsyLGP1DMaE
puux2WeWcvrAlA3Y7RU0l5KZLg0tZDp4dL9Fr3e/FTklCYIjqWc=
=PW7G
-----END PGP SIGNATURE-----

3
v4.2.0.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:38e3941ca5f75f006f28f48b499d61997ea3dbb8cf4f1e8e702ab2333024ca04
size 208659

17
v4.2.0.tar.gz.asc Normal file
View File

@@ -0,0 +1,17 @@
-----BEGIN PGP SIGNATURE-----
iQJPBAABCAA5FiEEBgxrfThp8UjExKzUPJvptk7B6mQFAmlKjy0bFIAAAAAABAAO
bWFudTIsMi41KzEuMTEsMiwyAAoJEDyb6bZOwepk9bYP/1NyCN7FKGELMpC8ajW1
gs0eQcG2B/5Hda1Ke4wLFjJrflTRKXdaEl6O75uSSZsigoPCRh1Jy1uA22xGZWqP
mFc60tKxu3GWoylwPFY1wtgCeUbtQGF2uyOe7OJ2iTLaI66lvek686gUeBDNfXax
k/dc8l++TAJGStmDwTEdpGwoqY6Ss+DXB25TIK1mE1qeVymCHKY4ryx5ftqAZv3V
Ni3xJHm4uTlubvPSuWDw1xBUpQEjpRPaoIvE4GJuzkcE4UozcyjmVPXINAXNdxSJ
pYMA2nT2QoT7KXzLy97LZatqO5z6JCZXjWjGVZluy3PE5s0xasSX7bP/A0D2TE7U
2rKjQGjTlF+14GvWjxNFURwIS/cX0nUGp/0eA2eRPJ8/CS6s9nLzlegAxuOWGc24
gAra3oAVgn6eDhwVf7oiwgx3Y+WC3m1KkLJJ9zLL5P8jvXpO66+mrhQef1PMfbrj
/Q2C58JZf6fanGEmykEL8eK3l8rvYNC2JlUmRUS/W2cwB2JeYrmo1mpQ1a8Qe4eH
4Ii09xXa7dQYEImcAhXQVFiTVBFJ1jwzpus7cdieTyYoDuQHlWQdJZz3u3icBaXo
kKbHEhCebCVm7MUwyCHmYsm7yJ6+bkKSNkk20HoxbTxyOn66r7oHouwWtdl7gOLT
pUG/DxvKVZpKcR9Tr9iK18TJ
=2Vls
-----END PGP SIGNATURE-----