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/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 diff --git a/pages/downloads.vue b/pages/downloads.vue new file mode 100644 index 00000000..52863e3e --- /dev/null +++ b/pages/downloads.vue @@ -0,0 +1,82 @@ + + + +