10 Commits

Author SHA256 Message Date
6d60d0de5d Accepting request 1325344 from multimedia:apps
OBS-URL: https://build.opensuse.org/request/show/1325344
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/lowfi?expand=0&rev=9
2026-01-05 13:54:53 +00:00
2d44a97215 - update to 2.0.0:
* added Clock component in the TUI interface with the -c flag
  * French translations for documentation
  * Refactored UI architecture
  * Improved input handling and UI initialization flow
  * Updated audio playback logic, including waiting/handling state changes
  * Improved track listing and formatting
  * Updated volume management and display
  * Revised README and contributing guidelines
  * Cleaned up dependencies and updated Cargo.toml / Cargo.lock
  * Expanded error handling in track management

OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/lowfi?expand=0&rev=18
2026-01-05 08:23:54 +00:00
27ce5bfa25 Accepting request 1308868 from multimedia:apps
OBS-URL: https://build.opensuse.org/request/show/1308868
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/lowfi?expand=0&rev=8
2025-10-04 16:51:20 +00:00
75b92f888f - update to 1.7.2:
* Tracks can now be bookmarked with the b key.
  * Bookmarks are saved to bookmarks.txt in the app’s data directory.
  * UI shows a * next to bookmarked tracks.
  * Bookmark state is persisted across sessions.
  * Frame rate (--fps) is now adjustable from the CLI.
  * UI shows download progress, mute status, and bookmark indicator.
  * Track downloads now report progress via atomic counters.
  * UI can show percentage during track loading.
  * Explicit two-stage flow: download → decode → play.
  * Improved ALSA silencing on Linux.
  * Added --timeout flag (download timeout in seconds).
  * --track_list alias for --tracks.
  * Default tracklist switched from lofigirl → chillhop.
  * Track info now shows display_name instead of raw file name.
  * m → mute indicator visible in UI.
  * improved Error Handling

OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/lowfi?expand=0&rev=16
2025-10-03 13:16:44 +00:00
f2ab1f7cac Accepting request 1268771 from multimedia:apps
OBS-URL: https://build.opensuse.org/request/show/1268771
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/lowfi?expand=0&rev=7
2025-04-14 10:57:22 +00:00
299f9964d7 - update to 1.6.0:
* Add mpv and vim-like keybindings by @beune in #57
  * docs: update controls by @danielwerg in #58
  * chore: update chillhop track list by @danielwerg in #56
  *  fix: show volume bar (mpris) by @danielwerg in #59
  *  docs: fix typos and spelling by @danielwerg in #62

OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/lowfi?expand=0&rev=14
2025-04-12 08:10:35 +00:00
b21c22885e Accepting request 1245733 from multimedia:apps
OBS-URL: https://build.opensuse.org/request/show/1245733
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/lowfi?expand=0&rev=6
2025-02-14 18:20:31 +00:00
08e798d82a Accepting request 1245602 from home:amanzini:branches:multimedia:apps
- update to 1.5.6:
  * fix potential dangling pointer

OBS-URL: https://build.opensuse.org/request/show/1245602
OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/lowfi?expand=0&rev=12
2025-02-13 17:24:01 +00:00
23f919274f Accepting request 1235824 from multimedia:apps
OBS-URL: https://build.opensuse.org/request/show/1235824
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/lowfi?expand=0&rev=5
2025-01-09 14:07:52 +00:00
e507ecce57 - update to 1.5.5:
* fix: make scrape command deterministic and update lofigirl list
  * feat: allow variable width 
  * fix: read list header to lofigirl list
  * fix: use unicode-segmentation to fix issues with unicode track names
  * bump dependencies

OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/lowfi?expand=0&rev=10
2025-01-08 08:45:19 +00:00
8 changed files with 74 additions and 15 deletions

View File

@@ -1,12 +1,12 @@
<?xml version="1.0"?>
<services>
<service name="obs_scm" mode="manual">
<service name="tar_scm" mode="manual">
<param name="filename">lowfi</param>
<param name="url">https://github.com/talwat/lowfi.git</param>
<param name="scm">git</param>
<param name="version">git-master</param>
<param name="versionformat">@PARENT_TAG@</param>
<param name="revision">1.5.3</param>
<param name="revision">2.0.0</param>
<param name="changesauthor">andrea.manzini@suse.com</param>
</service>
<service mode="manual" name="set_version"/>

View File

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

View File

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

3
lowfi-2.0.0.tar.zst Normal file
View File

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

View File

@@ -1,3 +1,65 @@
-------------------------------------------------------------------
Sun Jan 4 14:10:09 UTC 2026 - Andrea Manzini <andrea.manzini@suse.com>
- update to 2.0.0:
* added Clock component in the TUI interface with the -c flag
* French translations for documentation
* Refactored UI architecture
* Improved input handling and UI initialization flow
* Updated audio playback logic, including waiting/handling state changes
* Improved track listing and formatting
* Updated volume management and display
* Revised README and contributing guidelines
* Cleaned up dependencies and updated Cargo.toml / Cargo.lock
* Expanded error handling in track management
-------------------------------------------------------------------
Fri Oct 3 07:50:16 UTC 2025 - Andrea Manzini <andrea.manzini@suse.com>
- update to 1.7.2:
* Tracks can now be bookmarked with the b key.
* Bookmarks are saved to bookmarks.txt in the apps data directory.
* UI shows a * next to bookmarked tracks.
* Bookmark state is persisted across sessions.
* Frame rate (--fps) is now adjustable from the CLI.
* UI shows download progress, mute status, and bookmark indicator.
* Track downloads now report progress via atomic counters.
* UI can show percentage during track loading.
* Explicit two-stage flow: download → decode → play.
* Improved ALSA silencing on Linux.
* Added --timeout flag (download timeout in seconds).
* --track_list alias for --tracks.
* Default tracklist switched from lofigirl → chillhop.
* Track info now shows display_name instead of raw file name.
* m → mute indicator visible in UI.
* improved Error Handling
-------------------------------------------------------------------
Sat Apr 12 07:59:13 UTC 2025 - Andrea Manzini <andrea.manzini@suse.com>
- update to 1.6.0:
* Add mpv and vim-like keybindings by @beune in #57
* docs: update controls by @danielwerg in #58
* chore: update chillhop track list by @danielwerg in #56
* fix: show volume bar (mpris) by @danielwerg in #59
* docs: fix typos and spelling by @danielwerg in #62
-------------------------------------------------------------------
Thu Feb 13 10:52:46 UTC 2025 - Andrea Manzini <andrea.manzini@suse.com>
- update to 1.5.6:
* fix potential dangling pointer
-------------------------------------------------------------------
Wed Jan 8 08:39:42 UTC 2025 - Andrea Manzini <andrea.manzini@suse.com>
- update to 1.5.5:
* fix: make scrape command deterministic and update lofigirl list
* feat: allow variable width
* fix: read list header to lofigirl list
* fix: use unicode-segmentation to fix issues with unicode track names
* bump dependencies
-------------------------------------------------------------------
Thu Oct 31 07:25:00 UTC 2024 - Andrea Manzini <andrea.manzini@suse.com>

View File

@@ -1,4 +1,4 @@
name: lowfi
version: 1.5.3
mtime: 1730307367
commit: a076c2b62faffd4541c18e7df44fd3cb361c93e5
version: 1.5.6
mtime: 1736849611
commit: 22a0851d40273b2ec2e430f069e0c78f89a9f0bf

View File

@@ -1,7 +1,7 @@
#
# spec file for package lowfi
#
# Copyright (c) 2024 SUSE LLC
# Copyright (c) 2026 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
@@ -17,7 +17,7 @@
Name: lowfi
Version: 1.5.3
Version: 2.0.0
Release: 0
Summary: An extremely simple lofi player
License: MIT

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:cc93565b387eb19d7f79db68282270cdc2efc54a9eea463311e9bd0504ba8623
size 42418372
oid sha256:401116de731354af1d9059dd0459adfb23c63f95a10886f0cdead03be1f5e096
size 41333519