Skip to content

Commit 5d914d5

Browse files
author
=
committed
level up!
1 parent 6991da5 commit 5d914d5

7 files changed

Lines changed: 17 additions & 16 deletions

File tree

data/io.github.rdybka.vht.metainfo.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,11 @@
4646
<content_rating type="oars-1.1" />
4747

4848
<releases>
49+
<release version="0.4.07" date="2025-02-09">
50+
<description>
51+
<p>Flatpak refresh build</p>
52+
</description>
53+
</release>
4954
<release version="0.4.06" date="2024-09-05">
5055
<description>
5156
<p>Final touches</p>

doc/io.github.rdybka.vht.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
id: io.github.rdybka.vht
22
runtime: org.gnome.Platform
3-
runtime-version: '46'
3+
runtime-version: '49'
44
sdk: org.gnome.Sdk
55
command: vht
66
finish-args:
77
- --filesystem=xdg-run/pipewire-0
88
- --socket=wayland
9-
- --socket=fallback-x11
109
- --share=ipc
1110
modules:
1211
- name: vht
@@ -16,4 +15,4 @@ modules:
1615
sources:
1716
- type: git
1817
url: https://github.com/rdybka/vht
19-
tag: v0.4.06
18+
tag: v0.4.07

doc/vht.1.gz

0 Bytes
Binary file not shown.

doc/vht.1.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
% VHT(1) vht 0.4.06
1+
% VHT(1) vht 0.4.7
22
% Remigiusz Dybka
3-
% August 2024
3+
% February 2026
44

55
# NAME
66
**vht** - a minimalistic MIDI sequencer for JACK/GNOME

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ build-backend = 'setuptools.build_meta'
33
requires = ["setuptools>=61.0"]
44
[metadata]
55
name = "vht"
6-
version = "0.4.06"
6+
version = "0.4.07"
77
description = "vahatraker - a live MIDI sequencer for pipewire/JACK"
88
author = "Remigiusz Dybka"
99
author_email = "remigiusz.dybka@gmail.com"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
long_description = fh.read()
77

88
setup(name = "vht",
9-
version = "0.4.06",
9+
version = "0.4.07",
1010
description = "vahatraker - a live MIDI sequencer for pipewire/JACK",
1111
long_description=long_description,
1212
long_description_content_type="text/markdown",

vht/main.py

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# vahatraker - a live MIDI sequencer for JACK
44
#
5-
# Copyright (C) 2024 Remigiusz Dybka - remigiusz.dybka@gmail.com
5+
# Copyright (C) 2026 Remigiusz Dybka - remigiusz.dybka@gmail.com
66
#
77
# This program is free software: you can redistribute it and/or modify
88
# it under the terms of the GNU General Public License as published by
@@ -18,7 +18,7 @@
1818
# along with this program. If not, see <http://www.gnu.org/licenses/>.
1919

2020
# I hereby testify,
21-
# on Pungenday, the 29th day of Bureaucracy in the YOLD 3190,
21+
# on Setting Orange, the 40th day of Chaos in the YOLD 3192,
2222
# that everything in this program checks out with The Law of Fives
2323

2424
# [^^^intentionally left blank]
@@ -44,7 +44,6 @@
4444
import vht.extras
4545
import vht.filerotator
4646

47-
4847
class VHTApp(Gtk.Application):
4948
def __init__(self, *args, **kwargs):
5049
super().__init__(
@@ -316,12 +315,10 @@ def run():
316315
randomcomposer.muzakize()
317316
mod.cdaemon = CodeDaemon()
318317
# fix data path
319-
p = os.path.normpath(os.path.join(files(), "../share/vht"))
320-
mod.data_path = "./data" # for dev-mode
321-
322-
if os.path.exists(p):
323-
mod.data_path = p
324-
318+
mod.data_path = "/app/share/vht"
319+
if not os.path.exists(mod.data_path):
320+
mod.data_path = str(files().joinpath("../share/vht"))
321+
325322
# fix controller configs
326323
mod.ctrls = ctrlcfg.load()
327324
# fix patches

0 commit comments

Comments
 (0)