-
Notifications
You must be signed in to change notification settings - Fork 277
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: ignore about.py * chore: renamed and fixed flatpak maninfest
- Loading branch information
Showing
8 changed files
with
40 additions
and
327 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
app-id: io.github.zarath.nanovna-saver | ||
runtime: org.kde.Platform | ||
runtime-version: '6.8' | ||
sdk: org.kde.Sdk | ||
command: NanoVNASaver | ||
build-options: | ||
build-args: | ||
- --share=network | ||
modules: | ||
- name: uv | ||
buildsystem: simple | ||
build-commands: | ||
- pip install --prefix=/app uv | ||
- name: nanonva-saver | ||
sources: | ||
- type: git | ||
url: https://github.com/NanoVNA-Saver/nanovna-saver.git | ||
branch: main | ||
buildsystem: simple | ||
build-commands: | ||
- uv run task ui-compile | ||
- uv build | ||
- pip install --prefix=/app dist/NanoVNASaver*whl | ||
- find /app | ||
finish-args: | ||
# X11 + XShm access | ||
- --share=ipc | ||
- --socket=wayland | ||
- --socket=fallback-x11 | ||
# Needs access to NanoVNAs | ||
- --device=all | ||
# Needs to save files locally | ||
- --filesystem=xdg-documents |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,10 @@ description='GUI for the NanoVNA and derivates' | |
authors = [ | ||
{ name = "Rune B. Broberg", email = "[email protected]" } | ||
] | ||
requires-python = ">=3.10" | ||
maintainers = [ | ||
{ name = "Holger Mueller", email = "[email protected]" } | ||
] | ||
requires-python = ">=3.10,<3.13" | ||
license = {text = "GPL-3.0-or-later"} | ||
readme = "README.rst" | ||
|
||
|
@@ -14,7 +17,6 @@ classifiers =[ | |
'Intended Audience :: Science/Research', | ||
'Intended Audience :: Science/Research', | ||
'Intended Audience :: Telecommunications Industry', | ||
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', | ||
'Programming Language :: Python :: 3.10', | ||
'Programming Language :: Python :: 3.11', | ||
'Programming Language :: Python :: 3.12', | ||
|
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.