[PR #56] [MERGED] Fine tune memo grid view and memo view for iOS #66

Closed
opened 2025-12-29 05:19:24 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/dscyrescotti/Memola/pull/56
Author: @dscyrescotti
Created: 7/2/2024
Status: Merged
Merged: 7/2/2024
Merged by: @dscyrescotti

Base: mainHead: feature/memo-grid


📝 Commits (10+)

  • 89c5a62 feat: update updated date of memo when if there are changes
  • 9508f3c feat: add sort options
  • b5b12f6 feat: add search bar
  • f9c9179 feat: add filter options
  • a10f8b5 feat: add placeholder for empty state
  • c75506c feat: add edit time display on memo card
  • 657fb3b feat: adjust toolbar items
  • 12fd0cd feat: add soft delete action
  • c25d93e feat: update memo favorite button
  • 63a619e feat: implement trash view

📊 Changes

42 files changed (+1666 additions, -343 deletions)

View changed files

📝 Memola.xcodeproj/project.pbxproj (+113 -1)
📝 Memola/App/MemolaApp.swift (+4 -1)
📝 Memola/Canvas/History/History.swift (+18 -0)
📝 Memola/Canvas/Tool/Core/Tool.swift (+7 -3)
📝 Memola/Canvas/Tool/Pen/Core/Pen.swift (+4 -0)
📝 Memola/Canvas/Tool/Pen/Core/PenStyle.swift (+1 -0)
📝 Memola/Canvas/Tool/Pen/PenStyles/EraserPenStyle.swift (+2 -0)
📝 Memola/Canvas/Tool/Pen/PenStyles/MarkerPenStyle.swift (+2 -0)
📝 Memola/Canvas/View/Bridge/ViewController/CanvasViewController.swift (+0 -2)
Memola/Components/Views/Placeholder/Placeholder.swift (+73 -0)
Memola/Extensions/Date++.swift (+32 -0)
Memola/Features/Dashboard/Dashboard/DashboardView.swift (+39 -0)
Memola/Features/Dashboard/Details/Memos/Filter.swift (+26 -0)
Memola/Features/Dashboard/Details/Memos/MemosView.swift (+252 -0)
Memola/Features/Dashboard/Details/Memos/Sort.swift (+64 -0)
Memola/Features/Dashboard/Details/Shared/MemoCard.swift (+37 -0)
Memola/Features/Dashboard/Details/Shared/MemoGrid.swift (+41 -0)
Memola/Features/Dashboard/Details/Shared/MemoPreview.swift (+25 -0)
Memola/Features/Dashboard/Details/Trash/TrashView.swift (+147 -0)
Memola/Features/Dashboard/Sidebar/Sidebar.swift (+87 -0)

...and 22 more files

📄 Description

Description

This PR fines tune memo grid view along with the enhancement of memo view for iPhone display.


🔄 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/dscyrescotti/Memola/pull/56 **Author:** [@dscyrescotti](https://github.com/dscyrescotti) **Created:** 7/2/2024 **Status:** ✅ Merged **Merged:** 7/2/2024 **Merged by:** [@dscyrescotti](https://github.com/dscyrescotti) **Base:** `main` ← **Head:** `feature/memo-grid` --- ### 📝 Commits (10+) - [`89c5a62`](https://github.com/dscyrescotti/Memola/commit/89c5a62612786095cd9a201765d0bd049cb3b4fd) feat: update updated date of memo when if there are changes - [`9508f3c`](https://github.com/dscyrescotti/Memola/commit/9508f3cf136dcf7f0c7f59c677778bf66794498a) feat: add sort options - [`b5b12f6`](https://github.com/dscyrescotti/Memola/commit/b5b12f6540786451fe18280cd7741f727ece8c98) feat: add search bar - [`f9c9179`](https://github.com/dscyrescotti/Memola/commit/f9c91794916f66c9dd00a35e5ec1b3013ffc3079) feat: add filter options - [`a10f8b5`](https://github.com/dscyrescotti/Memola/commit/a10f8b562f22ddc8bc5ad5c5c94593b4e1410063) feat: add placeholder for empty state - [`c75506c`](https://github.com/dscyrescotti/Memola/commit/c75506c10d526ed417fe4886dc2a7efdf4c4ab0d) feat: add edit time display on memo card - [`657fb3b`](https://github.com/dscyrescotti/Memola/commit/657fb3bf07c511240418458fbeb3d3d505ecb916) feat: adjust toolbar items - [`12fd0cd`](https://github.com/dscyrescotti/Memola/commit/12fd0cd942f4d34b777b6b67d926b5aa7684adfe) feat: add soft delete action - [`c25d93e`](https://github.com/dscyrescotti/Memola/commit/c25d93e5435e8a098aa84d079c6f7bc58ae38dc0) feat: update memo favorite button - [`63a619e`](https://github.com/dscyrescotti/Memola/commit/63a619edf913faff9968c0c9d32c48c71c7b45fd) feat: implement trash view ### 📊 Changes **42 files changed** (+1666 additions, -343 deletions) <details> <summary>View changed files</summary> 📝 `Memola.xcodeproj/project.pbxproj` (+113 -1) 📝 `Memola/App/MemolaApp.swift` (+4 -1) 📝 `Memola/Canvas/History/History.swift` (+18 -0) 📝 `Memola/Canvas/Tool/Core/Tool.swift` (+7 -3) 📝 `Memola/Canvas/Tool/Pen/Core/Pen.swift` (+4 -0) 📝 `Memola/Canvas/Tool/Pen/Core/PenStyle.swift` (+1 -0) 📝 `Memola/Canvas/Tool/Pen/PenStyles/EraserPenStyle.swift` (+2 -0) 📝 `Memola/Canvas/Tool/Pen/PenStyles/MarkerPenStyle.swift` (+2 -0) 📝 `Memola/Canvas/View/Bridge/ViewController/CanvasViewController.swift` (+0 -2) ➕ `Memola/Components/Views/Placeholder/Placeholder.swift` (+73 -0) ➕ `Memola/Extensions/Date++.swift` (+32 -0) ➕ `Memola/Features/Dashboard/Dashboard/DashboardView.swift` (+39 -0) ➕ `Memola/Features/Dashboard/Details/Memos/Filter.swift` (+26 -0) ➕ `Memola/Features/Dashboard/Details/Memos/MemosView.swift` (+252 -0) ➕ `Memola/Features/Dashboard/Details/Memos/Sort.swift` (+64 -0) ➕ `Memola/Features/Dashboard/Details/Shared/MemoCard.swift` (+37 -0) ➕ `Memola/Features/Dashboard/Details/Shared/MemoGrid.swift` (+41 -0) ➕ `Memola/Features/Dashboard/Details/Shared/MemoPreview.swift` (+25 -0) ➕ `Memola/Features/Dashboard/Details/Trash/TrashView.swift` (+147 -0) ➕ `Memola/Features/Dashboard/Sidebar/Sidebar.swift` (+87 -0) _...and 22 more files_ </details> ### 📄 Description ### Description This PR fines tune memo grid view along with the enhancement of memo view for iPhone display. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
adam added the pull-request label 2025-12-29 05:19:24 +01:00
adam closed this issue 2025-12-29 05:19:24 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/Memola#66