diff --git a/deploy/package.json b/deploy/package.json index 01f30d5..48b946a 100644 --- a/deploy/package.json +++ b/deploy/package.json @@ -1,6 +1,6 @@ { "name": "ten31portal-startos", - "version": "0.2.43", + "version": "0.2.44", "private": true, "scripts": { "build": "npm run check && rm -rf ./javascript && ncc build startos/index.ts -o ./javascript", diff --git a/deploy/startos/install/versions/index.ts b/deploy/startos/install/versions/index.ts index 5b712a6..f9dac2c 100644 --- a/deploy/startos/install/versions/index.ts +++ b/deploy/startos/install/versions/index.ts @@ -1,8 +1,9 @@ -export { v_0_2_43 as current } from './v_0_2_43' +export { v_0_2_44 as current } from './v_0_2_44' import { v_0_1_0 } from './v_0_1_0' import { v_0_2_40 } from './v_0_2_40' import { v_0_2_41 } from './v_0_2_41' import { v_0_2_42 } from './v_0_2_42' +import { v_0_2_43 } from './v_0_2_43' import { v_0_2_0 } from './v_0_2_0' import { v_0_2_1 } from './v_0_2_1' import { v_0_2_3 } from './v_0_2_3' @@ -42,4 +43,4 @@ import { v_0_2_36 } from './v_0_2_36' import { v_0_2_37 } from './v_0_2_37' import { v_0_2_38 } from './v_0_2_38' import { v_0_2_39 } from './v_0_2_39' -export const other = [v_0_1_0, v_0_2_0, v_0_2_1, v_0_2_3, v_0_2_4, v_0_2_5, v_0_2_6, v_0_2_7, v_0_2_8, v_0_2_9, v_0_2_10, v_0_2_11, v_0_2_12, v_0_2_13, v_0_2_14, v_0_2_15, v_0_2_16, v_0_2_17, v_0_2_18, v_0_2_19, v_0_2_20, v_0_2_21, v_0_2_22, v_0_2_23, v_0_2_24, v_0_2_25, v_0_2_26, v_0_2_27, v_0_2_28, v_0_2_29, v_0_2_30, v_0_2_31, v_0_2_32, v_0_2_33, v_0_2_34, v_0_2_35, v_0_2_36, v_0_2_37, v_0_2_38, v_0_2_39, v_0_2_40, v_0_2_41, v_0_2_42] +export const other = [v_0_1_0, v_0_2_0, v_0_2_1, v_0_2_3, v_0_2_4, v_0_2_5, v_0_2_6, v_0_2_7, v_0_2_8, v_0_2_9, v_0_2_10, v_0_2_11, v_0_2_12, v_0_2_13, v_0_2_14, v_0_2_15, v_0_2_16, v_0_2_17, v_0_2_18, v_0_2_19, v_0_2_20, v_0_2_21, v_0_2_22, v_0_2_23, v_0_2_24, v_0_2_25, v_0_2_26, v_0_2_27, v_0_2_28, v_0_2_29, v_0_2_30, v_0_2_31, v_0_2_32, v_0_2_33, v_0_2_34, v_0_2_35, v_0_2_36, v_0_2_37, v_0_2_38, v_0_2_39, v_0_2_40, v_0_2_41, v_0_2_42, v_0_2_43] diff --git a/deploy/startos/install/versions/v_0_2_44.ts b/deploy/startos/install/versions/v_0_2_44.ts new file mode 100644 index 0000000..63075c8 --- /dev/null +++ b/deploy/startos/install/versions/v_0_2_44.ts @@ -0,0 +1,18 @@ +import { VersionInfo } from '@start9labs/start-sdk' + +export const v_0_2_44 = VersionInfo.of({ + version: '0.2.44:0', + releaseNotes: { + en_US: + "Bitcoin-terms accuracy for funds with capital calls: paid-in capital is now " + + "converted to bitcoin call by call — the initial funding at the fund's close-date " + + "price and each later quarter's new contributions at that quarter's price — " + + "instead of marking every dollar at the close date. Distributions convert at the " + + "price when received. Requires the quarterly statement history (see the Import " + + "page's history backfill) for funds that called capital over time.", + }, + migrations: { + up: async ({ effects }) => {}, + down: async ({ effects }) => {}, + }, +}) diff --git a/frontend/public/sw.js b/frontend/public/sw.js index 09e377d..cfa1edf 100644 --- a/frontend/public/sw.js +++ b/frontend/public/sw.js @@ -3,7 +3,7 @@ // - content-hashed /assets/* are cache-first (immutable, safe forever) // - /api/* is never cached // Bump CACHE on each release so old entries are purged. -const CACHE = 'ten31-portal-0.2.43' +const CACHE = 'ten31-portal-0.2.44' self.addEventListener('install', () => self.skipWaiting()) diff --git a/frontend/src/portal/InvestorPortalView.tsx b/frontend/src/portal/InvestorPortalView.tsx index c2b9eb1..b1594ae 100644 --- a/frontend/src/portal/InvestorPortalView.tsx +++ b/frontend/src/portal/InvestorPortalView.tsx @@ -5,13 +5,16 @@ import CapitalChart, { type CapitalPoint } from "../components/CapitalChart"; const pct = (p: number) => `${p >= 0 ? "+" : "−"}${Math.abs(p).toFixed(1)}%`; -// Dollars-at-cents ÷ BTC-price-at-cents, formatted to a sensible precision for the size. -const formatBtc = (usdCents: number, priceCents: number) => { - const btc = usdCents / priceCents; +// A BTC amount formatted to a sensible precision for the size. +const formatBtcAmount = (btc: number) => { const dp = btc >= 10 ? 2 : btc >= 1 ? 3 : 4; return `₿${btc.toLocaleString(undefined, { minimumFractionDigits: dp, maximumFractionDigits: dp })}`; }; +// Dollars-at-cents ÷ BTC-price-at-cents. +const formatBtc = (usdCents: number, priceCents: number) => + formatBtcAmount(usdCents / priceCents); + // The investor-facing portal, rendered purely from data. Used by the investor's own home // (InvestorHome) and by the admin read-only Investor View, so both show exactly the same thing. export default function InvestorPortalView({ @@ -418,24 +421,44 @@ function CapitalBlock({
)} -