Compare commits

..

3 Commits
0.9.7 ... 0.9.8

Author SHA1 Message Date
Mark Qvist
324ddec19e Updated versions 2026-01-17 21:40:08 +01:00
Mark Qvist
a2a789e61f Updated versions 2026-01-17 21:39:29 +01:00
Mark Qvist
acdae8c11d Fixed missing saved file name display on file download 2026-01-12 00:24:50 +01:00
3 changed files with 5 additions and 2 deletions

View File

@@ -1 +1 @@
__version__ = "0.9.7"
__version__ = "0.9.8"

View File

@@ -1392,6 +1392,8 @@ class Browser:
shutil.move(file_handle.name, file_destination)
self.saved_file_name = file_destination.replace(self.app.downloads_path+"/", "", 1)
else:
file_name = request_receipt.response[0]
file_data = request_receipt.response[1]

View File

@@ -1,3 +1,4 @@
import setuptools
exec(open("nomadnet/_version.py", "r").read())
@@ -30,6 +31,6 @@ setuptools.setup(
entry_points= {
'console_scripts': ['nomadnet=nomadnet.nomadnet:main']
},
install_requires=["rns>=1.1.1", "lxmf>=0.9.4", "urwid>=2.6.16", "qrcode"],
install_requires=["rns>=1.1.3", "lxmf>=0.9.4", "urwid>=2.6.16", "qrcode"],
python_requires=">=3.7",
)