[PR #6131] [CLOSED] [WIP] dba741ba2 Remove budget view reset #48166

Closed
opened 2026-04-26 10:06:40 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/actualbudget/actual/pull/6131
Author: @al3x1337
Created: 11/12/2025
Status: Closed

Base: masterHead: remove-budget-view-reset


📝 Commits (10+)

  • abebf36 Add Budget Views feature with cross-device sync
  • c85e7d2 Bug Fixes
  • cfa949c Fix TS/lint issues; update Budget Views UI; add Windows test cleanup & retry for sqlite files; add release note
  • 2543f4a fix: Properly clean up old Budget View names during rename
  • 0901ddf Merge pull request #2 from al3x1337/Budget-Views-v25.11.0
  • e7155cf Fix typecheck & lint: guard updates.name; remove explicit any in catch; add dev-dist ignore to eslint config; remove .eslintignore; run lint:fix
  • 6416dbf feat: Add view-scoped category ordering architecture
  • d4a9b13 fix: resolve ESLint and TypeScript strict errors in budget-views feature
  • d0ada8d Merge pull request #3 from al3x1337/pr/clean-budget-views
  • 2036c2c Remove Budget Views reset ordering control

📊 Changes

29 files changed (+2500 additions, -42 deletions)

View changed files

📝 .gitignore (+1 -0)
VIEW_SCOPED_CATEGORY_ORDERING.md (+202 -0)
desktop-client/public/data/migrations/1723665565000_prefs.js (+63 -0)
📝 eslint.config.mjs (+1 -0)
📝 packages/desktop-client/src/components/CommandBar.tsx (+14 -1)
📝 packages/desktop-client/src/components/FinancesApp.tsx (+13 -0)
📝 packages/desktop-client/src/components/Modals.tsx (+6 -0)
packages/desktop-client/src/components/budget-views/BudgetViews.tsx (+430 -0)
packages/desktop-client/src/components/budget-views/BudgetViewsPage.tsx (+18 -0)
packages/desktop-client/src/components/budget-views/EditBudgetViewModal.tsx (+409 -0)
📝 packages/desktop-client/src/components/budget/BudgetTable.tsx (+79 -1)
packages/desktop-client/src/components/budget/CategoryFilterSelector.tsx (+435 -0)
packages/desktop-client/src/components/budget/__tests__/orderUtils.test.ts (+70 -0)
📝 packages/desktop-client/src/components/budget/index.tsx (+194 -1)
packages/desktop-client/src/components/budget/orderUtils.ts (+107 -0)
📝 packages/desktop-client/src/components/settings/Experimental.tsx (+3 -0)
📝 packages/desktop-client/src/components/sidebar/PrimaryButtons.tsx (+12 -0)
packages/desktop-client/src/hooks/useBudgetViews.ts (+196 -0)
packages/desktop-client/src/hooks/useCategoryOrder.ts (+62 -0)
📝 packages/desktop-client/src/hooks/useFeatureFlag.ts (+1 -0)

...and 9 more files

📄 Description


🔄 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/actualbudget/actual/pull/6131 **Author:** [@al3x1337](https://github.com/al3x1337) **Created:** 11/12/2025 **Status:** ❌ Closed **Base:** `master` ← **Head:** `remove-budget-view-reset` --- ### 📝 Commits (10+) - [`abebf36`](https://github.com/actualbudget/actual/commit/abebf368af5df2d8ecc48756745d540ceab974f9) Add Budget Views feature with cross-device sync - [`c85e7d2`](https://github.com/actualbudget/actual/commit/c85e7d2b7b04899debb4a42dd4439a058a54872b) Bug Fixes - [`cfa949c`](https://github.com/actualbudget/actual/commit/cfa949c8bdc738eb644ac374ccc6858b322ebcac) Fix TS/lint issues; update Budget Views UI; add Windows test cleanup & retry for sqlite files; add release note - [`2543f4a`](https://github.com/actualbudget/actual/commit/2543f4a2be9cfbe3e9b89d72c473417b10036279) fix: Properly clean up old Budget View names during rename - [`0901ddf`](https://github.com/actualbudget/actual/commit/0901ddf3abb53d2d2188c99a874502b847754b45) Merge pull request #2 from al3x1337/Budget-Views-v25.11.0 - [`e7155cf`](https://github.com/actualbudget/actual/commit/e7155cf9cbfe7e3dd5251e34d08a46fee38d838e) Fix typecheck & lint: guard updates.name; remove explicit any in catch; add dev-dist ignore to eslint config; remove .eslintignore; run lint:fix - [`6416dbf`](https://github.com/actualbudget/actual/commit/6416dbf4d17d01effb20ddbdcaeb1a5c374c842e) feat: Add view-scoped category ordering architecture - [`d4a9b13`](https://github.com/actualbudget/actual/commit/d4a9b13922551e01050f8d7b86fe87218ca23eac) fix: resolve ESLint and TypeScript strict errors in budget-views feature - [`d0ada8d`](https://github.com/actualbudget/actual/commit/d0ada8d44cbbf3b9344b91703ab28e7c47703728) Merge pull request #3 from al3x1337/pr/clean-budget-views - [`2036c2c`](https://github.com/actualbudget/actual/commit/2036c2c7fb291890bcd4fc2f1aad6bda9483dcb7) Remove Budget Views reset ordering control ### 📊 Changes **29 files changed** (+2500 additions, -42 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+1 -0) ➕ `VIEW_SCOPED_CATEGORY_ORDERING.md` (+202 -0) ➕ `desktop-client/public/data/migrations/1723665565000_prefs.js` (+63 -0) 📝 `eslint.config.mjs` (+1 -0) 📝 `packages/desktop-client/src/components/CommandBar.tsx` (+14 -1) 📝 `packages/desktop-client/src/components/FinancesApp.tsx` (+13 -0) 📝 `packages/desktop-client/src/components/Modals.tsx` (+6 -0) ➕ `packages/desktop-client/src/components/budget-views/BudgetViews.tsx` (+430 -0) ➕ `packages/desktop-client/src/components/budget-views/BudgetViewsPage.tsx` (+18 -0) ➕ `packages/desktop-client/src/components/budget-views/EditBudgetViewModal.tsx` (+409 -0) 📝 `packages/desktop-client/src/components/budget/BudgetTable.tsx` (+79 -1) ➕ `packages/desktop-client/src/components/budget/CategoryFilterSelector.tsx` (+435 -0) ➕ `packages/desktop-client/src/components/budget/__tests__/orderUtils.test.ts` (+70 -0) 📝 `packages/desktop-client/src/components/budget/index.tsx` (+194 -1) ➕ `packages/desktop-client/src/components/budget/orderUtils.ts` (+107 -0) 📝 `packages/desktop-client/src/components/settings/Experimental.tsx` (+3 -0) 📝 `packages/desktop-client/src/components/sidebar/PrimaryButtons.tsx` (+12 -0) ➕ `packages/desktop-client/src/hooks/useBudgetViews.ts` (+196 -0) ➕ `packages/desktop-client/src/hooks/useCategoryOrder.ts` (+62 -0) 📝 `packages/desktop-client/src/hooks/useFeatureFlag.ts` (+1 -0) _...and 9 more files_ </details> ### 📄 Description <!-- Thank you for submitting a pull request! Make sure to follow the instructions to write release notes for your PR — it should only take a minute or two: https://github.com/actualbudget/docs#writing-good-release-notes. Try running yarn generate:release-notes *before* pushing your PR for an interactive experience. --> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-04-26 10:06:40 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/actual#48166