[PR #6954] Honor per-currency decimal places across app #25451

Open
opened 2026-04-16 18:37:05 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/actualbudget/actual/pull/6954
Author: @StephenBrown2
Created: 2/12/2026
Status: 🔄 Open

Base: masterHead: push-woswwuqwuwru


📝 Commits (2)

  • 945ea93 [AI] feat(currency): honor per-currency decimal places across core and UI
  • a74fe75 Update VRT screenshots workflow

📊 Changes

62 files changed (+1395 additions, -208 deletions)

View changed files

📝 .github/workflows/e2e-vrt-comment.yml (+64 -1)
📝 .github/workflows/vrt-update-generate.yml (+24 -3)
📝 .gitignore (+1 -0)
📝 package.json (+1 -0)
📝 packages/desktop-client/README.md (+3 -0)
packages/desktop-client/bin/prune-vrt-snapshots.mjs (+61 -0)
📝 packages/desktop-client/e2e/accounts.test.ts (+47 -14)
📝 packages/desktop-client/e2e/budget.test.ts (+25 -0)
packages/desktop-client/e2e/currency-precision.ts (+153 -0)
📝 packages/desktop-client/e2e/fixtures.ts (+48 -1)
📝 packages/desktop-client/e2e/onboarding.test.ts (+9 -0)
📝 packages/desktop-client/e2e/page-models/settings-page.ts (+73 -5)
packages/desktop-client/e2e/playwright-env.ts (+10 -0)
📝 packages/desktop-client/e2e/transactions.test.ts (+109 -0)
📝 packages/desktop-client/package.json (+1 -0)
📝 packages/desktop-client/src/accounts/mutations.ts (+8 -1)
📝 packages/desktop-client/src/components/accounts/Account.tsx (+21 -0)
📝 packages/desktop-client/src/components/accounts/BalanceHistoryGraph.tsx (+6 -2)
📝 packages/desktop-client/src/components/autocomplete/CategoryAutocomplete.tsx (+9 -2)
📝 packages/desktop-client/src/components/budget/BalanceWithCarryover.tsx (+10 -2)

...and 42 more files

📄 Description

Sorry for yet another PR, but I noticed that Vietnamese Dong got added with the wrong decimal places, due to the longstanding issue with not handling other than 2 decimal places.

I originally included sync-server adapter work here, but that was decided to be out of scope, so this PR now focuses on desktop-client + loot-core currency precision only.

Summary

This PR fixes the "everything assumes 2 decimal places" problem.

Amounts now use each currency's decimalPlaces across account creation, transaction editing/table flows, search/formula paths, and budget-related UI code. This avoids the x10/x100/x1000 inflation issues when using zero-decimal or three-decimal currencies.

I also corrected VND metadata to use decimalPlaces: 0.

IMPORTANT: If this is merged and released at the same time as #6902, there will be no db migration needed. If after, a DB migration MAY be needed to fix the 100x issue on existing values.

Tests added/updated

  • Added transaction table round-trip tests for:
    • zero-decimal currencies
    • three-decimal currencies
    • existing two-decimal default behavior (packages/desktop-client/src/components/transactions/table/utils.test.ts)
  • Added utility tests for decimal-aware formatting helpers:
    • integerToCurrencyWithDecimal
    • appendDecimals (packages/loot-core/src/shared/util.test.ts)
  • Added E2E coverage for zero-decimal account flows (JPY, VND):
    • starting balance remains stable
    • close-account modal shows the correct balance text (packages/desktop-client/e2e/accounts.test.ts)
  • Updated E2E snapshots for account creation to check that the starting balance bug mentioned in #6902 is fixed.

Issues addressed

This PR is aimed at the non-2-decimal currency requests:

Test plan

  • yarn test
  • yarn typecheck
  • Manual smoke test with a zero-decimal currency (for example JPY / VND)

AI assistance

This change was made with the help of GPT-5.3 Codex.


Bundle Stats

Bundle Files count Total bundle size % Changed
desktop-client 26 11.99 MB → 12 MB (+9.51 kB) +0.08%
loot-core 1 4.83 MB → 4.83 MB (+3.25 kB) +0.07%
api 4 4.06 MB → 4.06 MB (+3.19 kB) +0.08%
cli 1 7.88 MB 0%
View detailed bundle stats

desktop-client

Total

Files count Total bundle size % Changed
26 11.99 MB → 12 MB (+9.51 kB) +0.08%
Changeset
File Δ Size
src/components/mobile/transactions/FocusableAmountInput.tsx 📈 +4.15 kB (+34.03%) 12.19 kB → 16.33 kB
src/components/transactions/table/utils.ts 📈 +359 B (+19.70%) 1.78 kB → 2.13 kB
home/runner/work/actual/actual/packages/loot-core/src/shared/util.ts 📈 +1.14 kB (+12.83%) 8.87 kB → 10.01 kB
src/queries/index.ts 📈 +252 B (+11.80%) 2.08 kB → 2.33 kB
src/hooks/useTransactionsSearch.ts 📈 +98 B (+9.29%) 1.03 kB → 1.13 kB
home/runner/work/actual/actual/packages/loot-core/src/shared/currencies.ts 📈 +268 B (+4.51%) 5.81 kB → 6.07 kB
src/components/budget/envelope/CoverMenu.tsx 📈 +193 B (+4.00%) 4.71 kB → 4.9 kB
src/components/modals/EditFieldModal.tsx 📈 +297 B (+3.69%) 7.85 kB → 8.14 kB
src/components/modals/TrackingBudgetMenuModal.tsx 📈 +193 B (+3.11%) 6.07 kB → 6.26 kB
src/components/modals/EnvelopeBudgetMenuModal.tsx 📈 +193 B (+3.10%) 6.07 kB → 6.26 kB
src/components/modals/CreateLocalAccountModal.tsx 📈 +185 B (+2.87%) 6.3 kB → 6.48 kB
src/components/autocomplete/CategoryAutocomplete.tsx 📈 +374 B (+2.38%) 15.36 kB → 15.73 kB
package.json 📈 +62 B (+1.88%) 3.22 kB → 3.28 kB
src/components/mobile/transactions/TransactionListItem.tsx 📈 +193 B (+1.47%) 12.81 kB → 13 kB
src/components/settings/Currency.tsx 📈 +274 B (+1.41%) 18.92 kB → 19.19 kB
src/components/budget/BalanceWithCarryover.tsx 📈 +121 B (+1.36%) 8.71 kB → 8.83 kB
src/components/mobile/transactions/TransactionEdit.tsx 📈 +752 B (+1.26%) 58.28 kB → 59.01 kB
src/components/accounts/BalanceHistoryGraph.tsx 📈 +108 B (+1.17%) 9 kB → 9.1 kB
src/components/modals/CloseAccountModal.tsx 📈 +114 B (+1.10%) 10.16 kB → 10.27 kB
src/hooks/useFormulaExecution.ts 📈 +178 B (+1.05%) 16.63 kB → 16.8 kB
src/components/accounts/Account.tsx 📈 +374 B (+0.83%) 43.79 kB → 44.15 kB
src/components/transactions/TransactionsTable.tsx 📈 +700 B (+0.80%) 85.09 kB → 85.77 kB
home/runner/work/actual/actual/packages/loot-core/src/server/rules/customFunctions.ts 📈 +6 B (+0.56%) 1.05 kB → 1.05 kB
src/components/mobile/transactions/TransactionList.tsx 📈 +74 B (+0.41%) 17.54 kB → 17.61 kB
src/components/modals/ImportTransactionsModal/ImportTransactionsModal.tsx 📈 +113 B (+0.36%) 30.77 kB → 30.88 kB
src/components/budget/util.ts 📈 +10 B (+0.30%) 3.24 kB → 3.25 kB
src/accounts/mutations.ts 📈 +34 B (+0.26%) 12.6 kB → 12.63 kB
View detailed bundle breakdown

Added
No assets were added

Removed
No assets were removed

Bigger

Asset File Size % Changed
static/js/index.js 3.23 MB → 3.23 MB (+6.75 kB) +0.20%
static/js/useTransactionBatchActions.js 4.29 MB → 4.29 MB (+2.23 kB) +0.05%
static/js/TransactionList.js 81.29 kB → 81.55 kB (+267 B) +0.32%
static/js/ReportRouter.js 1021.25 kB → 1021.43 kB (+178 B) +0.02%
static/js/narrow.js 354.12 kB → 354.22 kB (+98 B) +0.03%

Smaller
No assets were smaller

Unchanged

Asset File Size % Changed
static/js/BackgroundImage.js 119.98 kB 0%
static/js/FormulaEditor.js 846.44 kB 0%
static/js/ca.js 185.57 kB 0%
static/js/da.js 104.66 kB 0%
static/js/de.js 177.58 kB 0%
static/js/en-GB.js 7.16 kB 0%
static/js/en.js 170.68 kB 0%
static/js/es.js 172.13 kB 0%
static/js/fr.js 177.57 kB 0%
static/js/indexeddb-main-thread-worker-e59fee74.js 13.46 kB 0%
static/js/it.js 168.97 kB 0%
static/js/nb-NO.js 154.72 kB 0%
static/js/nl.js 111.58 kB 0%
static/js/pl.js 88.34 kB 0%
static/js/pt-BR.js 180.5 kB 0%
static/js/resize-observer.js 18.03 kB 0%
static/js/th.js 179.94 kB 0%
static/js/theme.js 30.68 kB 0%
static/js/uk.js 213.14 kB 0%
static/js/wide.js 418 B 0%
static/js/workbox-window.prod.es5.js 7.28 kB 0%

loot-core

Total

Files count Total bundle size % Changed
1 4.83 MB → 4.83 MB (+3.25 kB) +0.07%
Changeset
File Δ Size
home/runner/work/actual/actual/packages/loot-core/src/server/transactions/export/export-to-csv.ts 📈 +352 B (+13.26%) 2.59 kB → 2.94 kB
home/runner/work/actual/actual/packages/loot-core/src/server/importers/ynab5.ts 📈 +1.2 kB (+4.91%) 24.49 kB → 25.69 kB
home/runner/work/actual/actual/packages/loot-core/src/shared/currencies.ts 📈 +284 B (+4.52%) 6.14 kB → 6.42 kB
home/runner/work/actual/actual/packages/loot-core/src/shared/util.ts 📈 +207 B (+3.16%) 6.39 kB → 6.6 kB
home/runner/work/actual/actual/packages/loot-core/src/server/transactions/transaction-rules.ts 📈 +539 B (+2.71%) 19.45 kB → 19.97 kB
home/runner/work/actual/actual/packages/loot-core/src/server/importers/ynab4.ts 📈 +239 B (+2.50%) 9.35 kB → 9.58 kB
home/runner/work/actual/actual/packages/loot-core/src/server/accounts/app.ts 📈 +196 B (+0.89%) 21.6 kB → 21.79 kB
home/runner/work/actual/actual/packages/loot-core/src/server/api.ts 📈 +185 B (+0.80%) 22.53 kB → 22.71 kB
home/runner/work/actual/actual/packages/loot-core/src/server/budget/schedule-template.ts 📈 +44 B (+0.60%) 7.13 kB → 7.17 kB
home/runner/work/actual/actual/packages/loot-core/src/server/rules/customFunctions.ts 📈 +6 B (+0.55%) 1.07 kB → 1.08 kB
home/runner/work/actual/actual/packages/loot-core/src/server/budget/category-template-context.ts 📈 +38 B (+0.22%) 17.07 kB → 17.11 kB
home/runner/work/actual/actual/packages/loot-core/src/server/rules/action.ts 📈 +9 B (+0.11%) 7.74 kB → 7.75 kB
home/runner/work/actual/actual/packages/loot-core/src/server/accounts/sync.ts 📈 +6 B (+0.03%) 22.12 kB → 22.12 kB
home/runner/work/actual/actual/packages/loot-core/src/server/budget/actions.ts 📉 -8 B (-0.07%) 11.27 kB → 11.27 kB
View detailed bundle breakdown

Added

Asset File Size % Changed
kcab.worker.CrMC0k1i.js 0 B → 4.83 MB (+4.83 MB) -

Removed

Asset File Size % Changed
kcab.worker.Dmj0rSrb.js 4.83 MB → 0 B (-4.83 MB) -100%

Bigger
No assets were bigger

Smaller
No assets were smaller

Unchanged
No assets were unchanged


api

Total

Files count Total bundle size % Changed
4 4.06 MB → 4.06 MB (+3.19 kB) +0.08%
Changeset
File Δ Size
home/runner/work/actual/actual/packages/loot-core/src/server/transactions/export/export-to-csv.ts 📈 +347 B (+13.14%) 2.58 kB → 2.92 kB
home/runner/work/actual/actual/packages/loot-core/src/server/importers/ynab5.ts 📈 +1.18 kB (+4.90%) 24.12 kB → 25.3 kB
home/runner/work/actual/actual/packages/loot-core/src/shared/currencies.ts 📈 +268 B (+4.51%) 5.81 kB → 6.07 kB
home/runner/work/actual/actual/packages/loot-core/src/shared/util.ts 📈 +202 B (+3.15%) 6.26 kB → 6.45 kB
home/runner/work/actual/actual/packages/loot-core/src/server/transactions/transaction-rules.ts 📈 +531 B (+2.72%) 19.04 kB → 19.55 kB
home/runner/work/actual/actual/packages/loot-core/src/server/importers/ynab4.ts 📈 +237 B (+2.52%) 9.17 kB → 9.41 kB
home/runner/work/actual/actual/packages/loot-core/src/server/accounts/app.ts 📈 +195 B (+0.89%) 21.31 kB → 21.5 kB
home/runner/work/actual/actual/packages/loot-core/src/server/api.ts 📈 +183 B (+0.81%) 21.96 kB → 22.14 kB
home/runner/work/actual/actual/packages/loot-core/src/server/budget/schedule-template.ts 📈 +43 B (+0.60%) 6.99 kB → 7.03 kB
home/runner/work/actual/actual/packages/loot-core/src/server/rules/customFunctions.ts 📈 +6 B (+0.56%) 1.05 kB → 1.06 kB
home/runner/work/actual/actual/packages/loot-core/src/server/budget/category-template-context.ts 📈 +38 B (+0.23%) 16.23 kB → 16.27 kB
home/runner/work/actual/actual/packages/loot-core/src/server/rules/action.ts 📈 +9 B (+0.12%) 7.31 kB → 7.32 kB
home/runner/work/actual/actual/packages/loot-core/src/server/accounts/sync.ts 📈 +6 B (+0.03%) 21.75 kB → 21.76 kB
home/runner/work/actual/actual/packages/loot-core/src/server/budget/actions.ts 📉 -8 B (-0.07%) 10.97 kB → 10.97 kB
View detailed bundle breakdown

Added
No assets were added

Removed
No assets were removed

Bigger

Asset File Size % Changed
index.js 3.84 MB → 3.84 MB (+3.19 kB) +0.08%

Smaller
No assets were smaller

Unchanged

Asset File Size % Changed
from-Bl-Hslp4.js 167.73 kB 0%
multipart-parser-BnDysoMr.js 8.1 kB 0%
src-iMkUmuwR.js 43.64 kB 0%

cli

Total

Files count Total bundle size % Changed
1 7.88 MB 0%
View detailed bundle breakdown

Added
No assets were added

Removed
No assets were removed

Bigger
No assets were bigger

Smaller
No assets were smaller

Unchanged

Asset File Size % Changed
cli.js 7.88 MB 0%

🔄 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/6954 **Author:** [@StephenBrown2](https://github.com/StephenBrown2) **Created:** 2/12/2026 **Status:** 🔄 Open **Base:** `master` ← **Head:** `push-woswwuqwuwru` --- ### 📝 Commits (2) - [`945ea93`](https://github.com/actualbudget/actual/commit/945ea9356046b00ee2e266b9abc108ca8a380a67) [AI] feat(currency): honor per-currency decimal places across core and UI - [`a74fe75`](https://github.com/actualbudget/actual/commit/a74fe75114afa17f313bcf7287358abddcb588dc) Update VRT screenshots workflow ### 📊 Changes **62 files changed** (+1395 additions, -208 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/e2e-vrt-comment.yml` (+64 -1) 📝 `.github/workflows/vrt-update-generate.yml` (+24 -3) 📝 `.gitignore` (+1 -0) 📝 `package.json` (+1 -0) 📝 `packages/desktop-client/README.md` (+3 -0) ➕ `packages/desktop-client/bin/prune-vrt-snapshots.mjs` (+61 -0) 📝 `packages/desktop-client/e2e/accounts.test.ts` (+47 -14) 📝 `packages/desktop-client/e2e/budget.test.ts` (+25 -0) ➕ `packages/desktop-client/e2e/currency-precision.ts` (+153 -0) 📝 `packages/desktop-client/e2e/fixtures.ts` (+48 -1) 📝 `packages/desktop-client/e2e/onboarding.test.ts` (+9 -0) 📝 `packages/desktop-client/e2e/page-models/settings-page.ts` (+73 -5) ➕ `packages/desktop-client/e2e/playwright-env.ts` (+10 -0) 📝 `packages/desktop-client/e2e/transactions.test.ts` (+109 -0) 📝 `packages/desktop-client/package.json` (+1 -0) 📝 `packages/desktop-client/src/accounts/mutations.ts` (+8 -1) 📝 `packages/desktop-client/src/components/accounts/Account.tsx` (+21 -0) 📝 `packages/desktop-client/src/components/accounts/BalanceHistoryGraph.tsx` (+6 -2) 📝 `packages/desktop-client/src/components/autocomplete/CategoryAutocomplete.tsx` (+9 -2) 📝 `packages/desktop-client/src/components/budget/BalanceWithCarryover.tsx` (+10 -2) _...and 42 more files_ </details> ### 📄 Description Sorry for _yet another PR_, but I noticed that Vietnamese Dong got added with the wrong decimal places, due to the longstanding issue with not handling other than 2 decimal places. I originally included sync-server adapter work here, but that was decided to be out of scope, so this PR now focuses on desktop-client + loot-core currency precision only. ## Summary This PR fixes the "everything assumes 2 decimal places" problem. Amounts now use each currency's `decimalPlaces` across account creation, transaction editing/table flows, search/formula paths, and budget-related UI code. This avoids the x10/x100/x1000 inflation issues when using zero-decimal or three-decimal currencies. I also corrected VND metadata to use `decimalPlaces: 0`. **IMPORTANT**: If this is merged and released at the same time as #6902, there will be no db migration needed. If after, a DB migration MAY be needed to fix the 100x issue on existing values. ## Tests added/updated - Added transaction table round-trip tests for: - zero-decimal currencies - three-decimal currencies - existing two-decimal default behavior (`packages/desktop-client/src/components/transactions/table/utils.test.ts`) - Added utility tests for decimal-aware formatting helpers: - `integerToCurrencyWithDecimal` - `appendDecimals` (`packages/loot-core/src/shared/util.test.ts`) - Added E2E coverage for zero-decimal account flows (`JPY`, `VND`): - starting balance remains stable - close-account modal shows the correct balance text (`packages/desktop-client/e2e/accounts.test.ts`) - Updated E2E snapshots for account creation to check that the starting balance bug mentioned in #6902 is fixed. ## Issues addressed This PR is aimed at the non-2-decimal currency requests: - Fixes #325 - Fixes #3255 - Fixes #5748 (Addresses the 3-decimal precision note in [this comment](https://github.com/actualbudget/actual/issues/5748#issuecomment-3313806953).) ## Test plan - [x] `yarn test` - [x] `yarn typecheck` - [x] Manual smoke test with a zero-decimal currency (for example `JPY` / `VND`) ## AI assistance This change was made with the help of GPT-5.3 Codex. <!--- actual-bot-sections ---> <hr /> <!--- bundlestats-action-comment key:combined start ---> ### Bundle Stats Bundle | Files count | Total bundle size | % Changed ------ | ----------- | ----------------- | --------- desktop-client | 26 | 11.99 MB → 12 MB (+9.51 kB) | +0.08% loot-core | 1 | 4.83 MB → 4.83 MB (+3.25 kB) | +0.07% api | 4 | 4.06 MB → 4.06 MB (+3.19 kB) | +0.08% cli | 1 | 7.88 MB | 0% <details> <summary>View detailed bundle stats</summary> #### desktop-client **Total** Files count | Total bundle size | % Changed ----------- | ----------------- | --------- 26 | 11.99 MB → 12 MB (+9.51 kB) | +0.08% <details> <summary>Changeset</summary> File | Δ | Size ---- | - | ---- `src/components/mobile/transactions/FocusableAmountInput.tsx` | 📈 +4.15 kB (+34.03%) | 12.19 kB → 16.33 kB `src/components/transactions/table/utils.ts` | 📈 +359 B (+19.70%) | 1.78 kB → 2.13 kB `home/runner/work/actual/actual/packages/loot-core/src/shared/util.ts` | 📈 +1.14 kB (+12.83%) | 8.87 kB → 10.01 kB `src/queries/index.ts` | 📈 +252 B (+11.80%) | 2.08 kB → 2.33 kB `src/hooks/useTransactionsSearch.ts` | 📈 +98 B (+9.29%) | 1.03 kB → 1.13 kB `home/runner/work/actual/actual/packages/loot-core/src/shared/currencies.ts` | 📈 +268 B (+4.51%) | 5.81 kB → 6.07 kB `src/components/budget/envelope/CoverMenu.tsx` | 📈 +193 B (+4.00%) | 4.71 kB → 4.9 kB `src/components/modals/EditFieldModal.tsx` | 📈 +297 B (+3.69%) | 7.85 kB → 8.14 kB `src/components/modals/TrackingBudgetMenuModal.tsx` | 📈 +193 B (+3.11%) | 6.07 kB → 6.26 kB `src/components/modals/EnvelopeBudgetMenuModal.tsx` | 📈 +193 B (+3.10%) | 6.07 kB → 6.26 kB `src/components/modals/CreateLocalAccountModal.tsx` | 📈 +185 B (+2.87%) | 6.3 kB → 6.48 kB `src/components/autocomplete/CategoryAutocomplete.tsx` | 📈 +374 B (+2.38%) | 15.36 kB → 15.73 kB `package.json` | 📈 +62 B (+1.88%) | 3.22 kB → 3.28 kB `src/components/mobile/transactions/TransactionListItem.tsx` | 📈 +193 B (+1.47%) | 12.81 kB → 13 kB `src/components/settings/Currency.tsx` | 📈 +274 B (+1.41%) | 18.92 kB → 19.19 kB `src/components/budget/BalanceWithCarryover.tsx` | 📈 +121 B (+1.36%) | 8.71 kB → 8.83 kB `src/components/mobile/transactions/TransactionEdit.tsx` | 📈 +752 B (+1.26%) | 58.28 kB → 59.01 kB `src/components/accounts/BalanceHistoryGraph.tsx` | 📈 +108 B (+1.17%) | 9 kB → 9.1 kB `src/components/modals/CloseAccountModal.tsx` | 📈 +114 B (+1.10%) | 10.16 kB → 10.27 kB `src/hooks/useFormulaExecution.ts` | 📈 +178 B (+1.05%) | 16.63 kB → 16.8 kB `src/components/accounts/Account.tsx` | 📈 +374 B (+0.83%) | 43.79 kB → 44.15 kB `src/components/transactions/TransactionsTable.tsx` | 📈 +700 B (+0.80%) | 85.09 kB → 85.77 kB `home/runner/work/actual/actual/packages/loot-core/src/server/rules/customFunctions.ts` | 📈 +6 B (+0.56%) | 1.05 kB → 1.05 kB `src/components/mobile/transactions/TransactionList.tsx` | 📈 +74 B (+0.41%) | 17.54 kB → 17.61 kB `src/components/modals/ImportTransactionsModal/ImportTransactionsModal.tsx` | 📈 +113 B (+0.36%) | 30.77 kB → 30.88 kB `src/components/budget/util.ts` | 📈 +10 B (+0.30%) | 3.24 kB → 3.25 kB `src/accounts/mutations.ts` | 📈 +34 B (+0.26%) | 12.6 kB → 12.63 kB </details> <details> <summary>View detailed bundle breakdown</summary> <div> **Added** No assets were added **Removed** No assets were removed **Bigger** Asset | File Size | % Changed ----- | --------- | --------- static/js/index.js | 3.23 MB → 3.23 MB (+6.75 kB) | +0.20% static/js/useTransactionBatchActions.js | 4.29 MB → 4.29 MB (+2.23 kB) | +0.05% static/js/TransactionList.js | 81.29 kB → 81.55 kB (+267 B) | +0.32% static/js/ReportRouter.js | 1021.25 kB → 1021.43 kB (+178 B) | +0.02% static/js/narrow.js | 354.12 kB → 354.22 kB (+98 B) | +0.03% **Smaller** No assets were smaller **Unchanged** Asset | File Size | % Changed ----- | --------- | --------- static/js/BackgroundImage.js | 119.98 kB | 0% static/js/FormulaEditor.js | 846.44 kB | 0% static/js/ca.js | 185.57 kB | 0% static/js/da.js | 104.66 kB | 0% static/js/de.js | 177.58 kB | 0% static/js/en-GB.js | 7.16 kB | 0% static/js/en.js | 170.68 kB | 0% static/js/es.js | 172.13 kB | 0% static/js/fr.js | 177.57 kB | 0% static/js/indexeddb-main-thread-worker-e59fee74.js | 13.46 kB | 0% static/js/it.js | 168.97 kB | 0% static/js/nb-NO.js | 154.72 kB | 0% static/js/nl.js | 111.58 kB | 0% static/js/pl.js | 88.34 kB | 0% static/js/pt-BR.js | 180.5 kB | 0% static/js/resize-observer.js | 18.03 kB | 0% static/js/th.js | 179.94 kB | 0% static/js/theme.js | 30.68 kB | 0% static/js/uk.js | 213.14 kB | 0% static/js/wide.js | 418 B | 0% static/js/workbox-window.prod.es5.js | 7.28 kB | 0% </div> </details> --- #### loot-core **Total** Files count | Total bundle size | % Changed ----------- | ----------------- | --------- 1 | 4.83 MB → 4.83 MB (+3.25 kB) | +0.07% <details> <summary>Changeset</summary> File | Δ | Size ---- | - | ---- `home/runner/work/actual/actual/packages/loot-core/src/server/transactions/export/export-to-csv.ts` | 📈 +352 B (+13.26%) | 2.59 kB → 2.94 kB `home/runner/work/actual/actual/packages/loot-core/src/server/importers/ynab5.ts` | 📈 +1.2 kB (+4.91%) | 24.49 kB → 25.69 kB `home/runner/work/actual/actual/packages/loot-core/src/shared/currencies.ts` | 📈 +284 B (+4.52%) | 6.14 kB → 6.42 kB `home/runner/work/actual/actual/packages/loot-core/src/shared/util.ts` | 📈 +207 B (+3.16%) | 6.39 kB → 6.6 kB `home/runner/work/actual/actual/packages/loot-core/src/server/transactions/transaction-rules.ts` | 📈 +539 B (+2.71%) | 19.45 kB → 19.97 kB `home/runner/work/actual/actual/packages/loot-core/src/server/importers/ynab4.ts` | 📈 +239 B (+2.50%) | 9.35 kB → 9.58 kB `home/runner/work/actual/actual/packages/loot-core/src/server/accounts/app.ts` | 📈 +196 B (+0.89%) | 21.6 kB → 21.79 kB `home/runner/work/actual/actual/packages/loot-core/src/server/api.ts` | 📈 +185 B (+0.80%) | 22.53 kB → 22.71 kB `home/runner/work/actual/actual/packages/loot-core/src/server/budget/schedule-template.ts` | 📈 +44 B (+0.60%) | 7.13 kB → 7.17 kB `home/runner/work/actual/actual/packages/loot-core/src/server/rules/customFunctions.ts` | 📈 +6 B (+0.55%) | 1.07 kB → 1.08 kB `home/runner/work/actual/actual/packages/loot-core/src/server/budget/category-template-context.ts` | 📈 +38 B (+0.22%) | 17.07 kB → 17.11 kB `home/runner/work/actual/actual/packages/loot-core/src/server/rules/action.ts` | 📈 +9 B (+0.11%) | 7.74 kB → 7.75 kB `home/runner/work/actual/actual/packages/loot-core/src/server/accounts/sync.ts` | 📈 +6 B (+0.03%) | 22.12 kB → 22.12 kB `home/runner/work/actual/actual/packages/loot-core/src/server/budget/actions.ts` | 📉 -8 B (-0.07%) | 11.27 kB → 11.27 kB </details> <details> <summary>View detailed bundle breakdown</summary> <div> **Added** Asset | File Size | % Changed ----- | --------- | --------- kcab.worker.CrMC0k1i.js | 0 B → 4.83 MB (+4.83 MB) | - **Removed** Asset | File Size | % Changed ----- | --------- | --------- kcab.worker.Dmj0rSrb.js | 4.83 MB → 0 B (-4.83 MB) | -100% **Bigger** No assets were bigger **Smaller** No assets were smaller **Unchanged** No assets were unchanged </div> </details> --- #### api **Total** Files count | Total bundle size | % Changed ----------- | ----------------- | --------- 4 | 4.06 MB → 4.06 MB (+3.19 kB) | +0.08% <details> <summary>Changeset</summary> File | Δ | Size ---- | - | ---- `home/runner/work/actual/actual/packages/loot-core/src/server/transactions/export/export-to-csv.ts` | 📈 +347 B (+13.14%) | 2.58 kB → 2.92 kB `home/runner/work/actual/actual/packages/loot-core/src/server/importers/ynab5.ts` | 📈 +1.18 kB (+4.90%) | 24.12 kB → 25.3 kB `home/runner/work/actual/actual/packages/loot-core/src/shared/currencies.ts` | 📈 +268 B (+4.51%) | 5.81 kB → 6.07 kB `home/runner/work/actual/actual/packages/loot-core/src/shared/util.ts` | 📈 +202 B (+3.15%) | 6.26 kB → 6.45 kB `home/runner/work/actual/actual/packages/loot-core/src/server/transactions/transaction-rules.ts` | 📈 +531 B (+2.72%) | 19.04 kB → 19.55 kB `home/runner/work/actual/actual/packages/loot-core/src/server/importers/ynab4.ts` | 📈 +237 B (+2.52%) | 9.17 kB → 9.41 kB `home/runner/work/actual/actual/packages/loot-core/src/server/accounts/app.ts` | 📈 +195 B (+0.89%) | 21.31 kB → 21.5 kB `home/runner/work/actual/actual/packages/loot-core/src/server/api.ts` | 📈 +183 B (+0.81%) | 21.96 kB → 22.14 kB `home/runner/work/actual/actual/packages/loot-core/src/server/budget/schedule-template.ts` | 📈 +43 B (+0.60%) | 6.99 kB → 7.03 kB `home/runner/work/actual/actual/packages/loot-core/src/server/rules/customFunctions.ts` | 📈 +6 B (+0.56%) | 1.05 kB → 1.06 kB `home/runner/work/actual/actual/packages/loot-core/src/server/budget/category-template-context.ts` | 📈 +38 B (+0.23%) | 16.23 kB → 16.27 kB `home/runner/work/actual/actual/packages/loot-core/src/server/rules/action.ts` | 📈 +9 B (+0.12%) | 7.31 kB → 7.32 kB `home/runner/work/actual/actual/packages/loot-core/src/server/accounts/sync.ts` | 📈 +6 B (+0.03%) | 21.75 kB → 21.76 kB `home/runner/work/actual/actual/packages/loot-core/src/server/budget/actions.ts` | 📉 -8 B (-0.07%) | 10.97 kB → 10.97 kB </details> <details> <summary>View detailed bundle breakdown</summary> <div> **Added** No assets were added **Removed** No assets were removed **Bigger** Asset | File Size | % Changed ----- | --------- | --------- index.js | 3.84 MB → 3.84 MB (+3.19 kB) | +0.08% **Smaller** No assets were smaller **Unchanged** Asset | File Size | % Changed ----- | --------- | --------- from-Bl-Hslp4.js | 167.73 kB | 0% multipart-parser-BnDysoMr.js | 8.1 kB | 0% src-iMkUmuwR.js | 43.64 kB | 0% </div> </details> --- #### cli **Total** Files count | Total bundle size | % Changed ----------- | ----------------- | --------- 1 | 7.88 MB | 0% <details> <summary>View detailed bundle breakdown</summary> <div> **Added** No assets were added **Removed** No assets were removed **Bigger** No assets were bigger **Smaller** No assets were smaller **Unchanged** Asset | File Size | % Changed ----- | --------- | --------- cli.js | 7.88 MB | 0% </div> </details> </details> <!--- bundlestats-action-comment key:combined end ---> --- <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-16 18:37:05 -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#25451