[PR #379] [MERGED] Fix cloud storage #738

Closed
opened 2026-03-03 00:22:58 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/BoostIO/BoostNote-App/pull/379
Author: @Rokt33r
Created: 3/24/2020
Status: Merged
Merged: 3/24/2020
Merged by: @Rokt33r

Base: masterHead: fix-cloud-storage


📝 Commits (10+)

  • 47a9061 Restructure NotePage
  • c275c7a Move StorageCreatPage and StorageEditPage to pages
  • 77e7428 Discard wrong implementation of cloud storage init
  • 281797d Stop removing cloud storage
  • af46ae1 Adjust font-weight
  • c198d3c Add PageContainer
  • c3fb34c Add Spinner
  • cc0bce1 Add form components
  • 179930e Seperate storage create form
  • 3ec2e7d Clean up StorageCreatePage

📊 Changes

216 files changed (+8207 additions, -7068 deletions)

View changed files

📝 android/app/build.gradle (+5 -1)
android/app/google-services.json (+40 -0)
📝 android/app/src/main/AndroidManifest.xml (+1 -0)
📝 android/build.gradle (+1 -0)
📝 ios/.gitignore (+1 -0)
📝 ios/BoostNote/BoostNote.xcodeproj/project.pbxproj (+159 -0)
📝 ios/BoostNote/BoostNote.xcodeproj/xcuserdata/junyoung.xcuserdatad/xcschemes/xcschememanagement.plist (+1 -1)
ios/BoostNote/BoostNote.xcworkspace/contents.xcworkspacedata (+10 -0)
ios/BoostNote/BoostNote.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist (+8 -0)
📝 ios/BoostNote/BoostNote/AppDelegate.swift (+3 -0)
ios/BoostNote/BoostNote/GoogleService-Info.plist (+36 -0)
ios/BoostNote/Podfile (+21 -0)
ios/BoostNote/Podfile.lock (+101 -0)
mobile-dev.html (+13 -0)
📝 package-lock.json (+3769 -5405)
📝 package.json (+4 -4)
📝 src/components/App.tsx (+12 -25)
📝 src/components/GlobalStyle.tsx (+10 -0)
📝 src/components/Modal/contents/DownloadOurAppModal.tsx (+25 -7)
📝 src/components/Modal/contents/styled.ts (+2 -2)

...and 80 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/BoostIO/BoostNote-App/pull/379 **Author:** [@Rokt33r](https://github.com/Rokt33r) **Created:** 3/24/2020 **Status:** ✅ Merged **Merged:** 3/24/2020 **Merged by:** [@Rokt33r](https://github.com/Rokt33r) **Base:** `master` ← **Head:** `fix-cloud-storage` --- ### 📝 Commits (10+) - [`47a9061`](https://github.com/BoostIO/BoostNote-App/commit/47a9061f732d77f4119cb795f23b7fc4515017ad) Restructure NotePage - [`c275c7a`](https://github.com/BoostIO/BoostNote-App/commit/c275c7a9133962244660350e96894218c0939df3) Move StorageCreatPage and StorageEditPage to pages - [`77e7428`](https://github.com/BoostIO/BoostNote-App/commit/77e7428d1f747d3f6a8a0a1f32b810c9279fab8b) Discard wrong implementation of cloud storage init - [`281797d`](https://github.com/BoostIO/BoostNote-App/commit/281797d2eacc6491a7cbf9dfdc12332b31835326) Stop removing cloud storage - [`af46ae1`](https://github.com/BoostIO/BoostNote-App/commit/af46ae10086bc1df86520de6fa2f3a6f42fc0df1) Adjust font-weight - [`c198d3c`](https://github.com/BoostIO/BoostNote-App/commit/c198d3c36850260b861fa5159dafd65bf9b0bd37) Add PageContainer - [`c3fb34c`](https://github.com/BoostIO/BoostNote-App/commit/c3fb34c44beb269eb5c981fd4bf14915cd1dbab1) Add Spinner - [`cc0bce1`](https://github.com/BoostIO/BoostNote-App/commit/cc0bce160f055245f32ec6fc1427d41cd26dd5ba) Add form components - [`179930e`](https://github.com/BoostIO/BoostNote-App/commit/179930e9e76863bd21713e8766f013744d5fa7c6) Seperate storage create form - [`3ec2e7d`](https://github.com/BoostIO/BoostNote-App/commit/3ec2e7d9d687ed15374b7e7864536ef7a8246347) Clean up StorageCreatePage ### 📊 Changes **216 files changed** (+8207 additions, -7068 deletions) <details> <summary>View changed files</summary> 📝 `android/app/build.gradle` (+5 -1) ➕ `android/app/google-services.json` (+40 -0) 📝 `android/app/src/main/AndroidManifest.xml` (+1 -0) 📝 `android/build.gradle` (+1 -0) 📝 `ios/.gitignore` (+1 -0) 📝 `ios/BoostNote/BoostNote.xcodeproj/project.pbxproj` (+159 -0) 📝 `ios/BoostNote/BoostNote.xcodeproj/xcuserdata/junyoung.xcuserdatad/xcschemes/xcschememanagement.plist` (+1 -1) ➕ `ios/BoostNote/BoostNote.xcworkspace/contents.xcworkspacedata` (+10 -0) ➕ `ios/BoostNote/BoostNote.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist` (+8 -0) 📝 `ios/BoostNote/BoostNote/AppDelegate.swift` (+3 -0) ➕ `ios/BoostNote/BoostNote/GoogleService-Info.plist` (+36 -0) ➕ `ios/BoostNote/Podfile` (+21 -0) ➕ `ios/BoostNote/Podfile.lock` (+101 -0) ➕ `mobile-dev.html` (+13 -0) 📝 `package-lock.json` (+3769 -5405) 📝 `package.json` (+4 -4) 📝 `src/components/App.tsx` (+12 -25) 📝 `src/components/GlobalStyle.tsx` (+10 -0) 📝 `src/components/Modal/contents/DownloadOurAppModal.tsx` (+25 -7) 📝 `src/components/Modal/contents/styled.ts` (+2 -2) _...and 80 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-03 00:22:58 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/BoostNote-App#738
No description provided.