mirror of
https://github.com/actualbudget/actual.git
synced 2026-08-02 21:56:50 -05:00
* 🔖 (26.8.0) * Generate release notes for v26.8.0 * Add release notes for version 26.8.0, highlighting new stable features, mobile banking improvements, and day-level date range selection in reports. * Update authorship in release notes for version 26.8.0 to reflect MatissJanis as the author. * [AI] Apply review feedback to 26.8.0 release notes: clarify onboarding/mobile bank sync wording and note per-file credentials are Pluggy.ai only * [AI] Copy review-feedback wording fixes into releases.md for 26.8.0 Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> --------- Co-authored-by: github-merge-queue <118344674+github-merge-queue@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <matiss@mja.lv> Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
134 lines
3.7 KiB
JSON
134 lines
3.7 KiB
JSON
{
|
|
"name": "desktop-electron",
|
|
"version": "26.8.0",
|
|
"description": "A simple and powerful personal finance system",
|
|
"author": "Actual",
|
|
"main": "build/desktop-electron/index.js",
|
|
"scripts": {
|
|
"clean": "rm -rf dist",
|
|
"update-client": "bin/update-client",
|
|
"build": "yarn build:dist && electron-builder",
|
|
"build:dist": "tsgo && yarn copy-static-assets",
|
|
"typecheck": "tsgo -b && tsc-strict",
|
|
"copy-static-assets": "copyfiles --exclude 'build/**/*' **/*.html icons/**/* build/desktop-electron",
|
|
"watch": "yarn build:dist && cross-env ACTUAL_DOCUMENT_DIR=\"../../data\" ACTUAL_DATA_DIR=\"../../data\" electron .",
|
|
"e2e": "npx playwright test"
|
|
},
|
|
"dependencies": {
|
|
"@actual-app/sync-server": "workspace:*",
|
|
"better-sqlite3": "^12.11.1"
|
|
},
|
|
"devDependencies": {
|
|
"@actual-app/core": "workspace:*",
|
|
"@actual-app/web": "workspace:*",
|
|
"@electron/rebuild": "^4.0.3",
|
|
"@playwright/test": "1.61.1",
|
|
"@types/copyfiles": "^2",
|
|
"@typescript/native-preview": "beta",
|
|
"copyfiles": "^2.4.1",
|
|
"cross-env": "^10.1.0",
|
|
"electron": "41.7.1",
|
|
"electron-builder": "26.8.1",
|
|
"typescript-strict-plugin": "^2.4.4"
|
|
},
|
|
"build": {
|
|
"appId": "com.actualbudget.actual",
|
|
"files": [
|
|
"build",
|
|
"!node_modules/@actual-app/web",
|
|
"node_modules/@actual-app/web/build",
|
|
"node_modules/@actual-app/web/package.json",
|
|
"!node_modules/better-sqlite3/{benchmark,src,bin,docs,deps,build/Release/obj,build/Release/sqlite3.a,build/Release/test_extension.node}",
|
|
"!**/*.js.map",
|
|
"!**/stats.json",
|
|
"!build/client-build/sql-wasm.wasm",
|
|
"!build/loot-core/lib-dist/electron/{browser,bundle.mobile*}"
|
|
],
|
|
"beforePack": "./build/desktop-electron/beforePackHook.js",
|
|
"afterSign": "./build/desktop-electron/afterSignHook.js",
|
|
"electronFuses": {
|
|
"runAsNode": false,
|
|
"enableNodeOptionsEnvironmentVariable": true,
|
|
"enableNodeCliInspectArguments": false
|
|
},
|
|
"mac": {
|
|
"category": "public.app-category.finance",
|
|
"icon": "icons/icon.icns",
|
|
"hardenedRuntime": true,
|
|
"gatekeeperAssess": false,
|
|
"artifactName": "${productName}-mac-${arch}.${ext}",
|
|
"target": [
|
|
{
|
|
"target": "dmg",
|
|
"arch": [
|
|
"x64",
|
|
"arm64"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"linux": {
|
|
"target": [
|
|
{
|
|
"target": "flatpak",
|
|
"arch": [
|
|
"x64"
|
|
]
|
|
},
|
|
{
|
|
"target": "AppImage",
|
|
"arch": [
|
|
"x64",
|
|
"arm64"
|
|
]
|
|
}
|
|
],
|
|
"artifactName": "${productName}-linux-${arch}.${ext}",
|
|
"extraResources": [
|
|
"extra-resources/linux"
|
|
],
|
|
"desktop": {
|
|
"entry": {
|
|
"Categories": "Finance;Office",
|
|
"Keywords": "Budget;Finance;Money;Expenses;Savings;"
|
|
}
|
|
},
|
|
"executableName": "actual"
|
|
},
|
|
"flatpak": {
|
|
"runtimeVersion": "24.08",
|
|
"baseVersion": "24.08"
|
|
},
|
|
"win": {
|
|
"target": [
|
|
{
|
|
"target": "appx",
|
|
"arch": [
|
|
"ia32",
|
|
"x64",
|
|
"arm64"
|
|
]
|
|
},
|
|
{
|
|
"target": "nsis",
|
|
"arch": [
|
|
"ia32",
|
|
"x64",
|
|
"arm64"
|
|
]
|
|
}
|
|
],
|
|
"icon": "icons/icon.png",
|
|
"artifactName": "${productName}-windows-${arch}.${ext}"
|
|
},
|
|
"appx": {
|
|
"identityName": "actualbudget.org.ActualBudget",
|
|
"publisherDisplayName": "actualbudget.org",
|
|
"displayName": "Actual Budget",
|
|
"publisher": "CN=19454997-90E1-4473-879D-96D6A77A6056"
|
|
},
|
|
"npmRebuild": false
|
|
},
|
|
"productName": "Actual"
|
|
}
|