From befe62f8a03b5454838fae4f41bd39094e25d88f Mon Sep 17 00:00:00 2001 From: benonymity Date: Sun, 21 Aug 2022 15:02:22 -0400 Subject: [PATCH 1/3] feat: downloads page for iOS --- components/app/SideDrawer.vue | 7 +++ pages/downloads.vue | 86 +++++++++++++++++++++++++++++++++++ 2 files changed, 93 insertions(+) create mode 100644 pages/downloads.vue diff --git a/components/app/SideDrawer.vue b/components/app/SideDrawer.vue index f51a1568..fec146db 100644 --- a/components/app/SideDrawer.vue +++ b/components/app/SideDrawer.vue @@ -113,6 +113,13 @@ export default { text: 'Local Media', to: '/localMedia/folders' }) + } else { + items.push({ + icon: 'download', + iconOutlined: false, + text: 'Downloads', + to: '/downloads' + }) } items.push({ icon: 'settings', diff --git a/pages/downloads.vue b/pages/downloads.vue new file mode 100644 index 00000000..b1a7f284 --- /dev/null +++ b/pages/downloads.vue @@ -0,0 +1,86 @@ + + + + From d7c414f6c026508908ca9a49590edc0badb2bb49 Mon Sep 17 00:00:00 2001 From: advplyr Date: Sun, 21 Aug 2022 15:59:44 -0500 Subject: [PATCH 2/3] Merge --- ios/App/Podfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ios/App/Podfile b/ios/App/Podfile index 89125e80..dcdae730 100644 --- a/ios/App/Podfile +++ b/ios/App/Podfile @@ -9,12 +9,12 @@ install! 'cocoapods', :disable_input_output_paths => true def capacitor_pods pod 'Capacitor', :path => '../../node_modules/@capacitor/ios' pod 'CapacitorCordova', :path => '../../node_modules/@capacitor/ios' - pod 'CapacitorApp', :path => '..\..\node_modules\@capacitor\app' - pod 'CapacitorDialog', :path => '..\..\node_modules\@capacitor\dialog' - pod 'CapacitorHaptics', :path => '..\..\node_modules\@capacitor\haptics' - pod 'CapacitorNetwork', :path => '..\..\node_modules\@capacitor\network' - pod 'CapacitorStatusBar', :path => '..\..\node_modules\@capacitor\status-bar' - pod 'CapacitorStorage', :path => '..\..\node_modules\@capacitor\storage' + pod 'CapacitorApp', :path => '../../node_modules/@capacitor/app' + pod 'CapacitorDialog', :path => '../../node_modules/@capacitor/dialog' + pod 'CapacitorHaptics', :path => '../../node_modules/@capacitor/haptics' + pod 'CapacitorNetwork', :path => '../../node_modules/@capacitor/network' + pod 'CapacitorStatusBar', :path => '../../node_modules/@capacitor/status-bar' + pod 'CapacitorStorage', :path => '../../node_modules/@capacitor/storage' end target 'App' do From d331e1f9ab5f2a28448bd4fe9d529b8a4d5740d5 Mon Sep 17 00:00:00 2001 From: advplyr Date: Sun, 21 Aug 2022 16:20:10 -0500 Subject: [PATCH 3/3] iOS downloads page cleanup UI --- pages/downloads.vue | 86 +++++++++++++++++++++------------------------ 1 file changed, 41 insertions(+), 45 deletions(-) diff --git a/pages/downloads.vue b/pages/downloads.vue index b1a7f284..52863e3e 100644 --- a/pages/downloads.vue +++ b/pages/downloads.vue @@ -2,26 +2,24 @@

Downloads ({{ localLibraryItems.length }})

-
+
@@ -30,49 +28,47 @@