From bf0a7d4fca301b1c4c22e62d62c16edd3138b9ad Mon Sep 17 00:00:00 2001
From: Percs <83934299+Percslol@users.noreply.github.com>
Date: Thu, 12 Sep 2024 12:48:35 -0500
Subject: [PATCH] add file downloading to fsapp
---
apps/fsapp.app/GUI.js | 4 ++++
apps/fsapp.app/index.html | 2 +-
apps/fsapp.app/operations.js | 28 +++++++++++++++++++++++++++-
3 files changed, 32 insertions(+), 2 deletions(-)
diff --git a/apps/fsapp.app/GUI.js b/apps/fsapp.app/GUI.js
index e0006731..1f85efa5 100644
--- a/apps/fsapp.app/GUI.js
+++ b/apps/fsapp.app/GUI.js
@@ -34,6 +34,10 @@ addContextMenuItem("Refresh", function () {
reload();
});
+newcontextmenu.addItem("Download", function () {
+ download();
+});
+
appcontextmenu.addItem("Install (Session)", function () {
installSession();
});
diff --git a/apps/fsapp.app/index.html b/apps/fsapp.app/index.html
index 5b1f365c..6dc16b55 100644
--- a/apps/fsapp.app/index.html
+++ b/apps/fsapp.app/index.html
@@ -129,8 +129,8 @@
-
+