Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .act/events/push-dev.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"ref": "refs/heads/dev"
}
3 changes: 3 additions & 0 deletions .act/events/push-main.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"ref": "refs/heads/main"
}
6 changes: 6 additions & 0 deletions .act/run
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/sh
# Auto-detect Docker socket from active context, then delegate to act.
# Respects DOCKER_HOST if already set.
exec env \
DOCKER_HOST="${DOCKER_HOST:-$(docker context inspect -f '{{.Endpoints.docker.Host}}' 2>/dev/null)}" \
act "$@"
1 change: 1 addition & 0 deletions .act/secrets.example
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
GITHUB_TOKEN=ghp_your_personal_access_token_here
5 changes: 5 additions & 0 deletions .actrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
--container-daemon-socket /var/run/docker.sock
--env ELECTRON_SKIP_BINARY_DOWNLOAD=1
-P ubuntu-latest=catthehacker/ubuntu:act-latest
-P macos-14=catthehacker/ubuntu:act-latest
-P windows-latest=catthehacker/ubuntu:act-latest
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,6 @@ examples/chats/*.zip

# Playwright MCP screenshots
.playwright-mcp/

# Local GitHub Actions secrets
.act/secrets
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [1.30.2](https://github.com/rodrigogs/whats-reader/compare/v1.30.1...v1.30.2) (2026-04-03)


### Performance Improvements

* reduce Electron app bundle size ([bf6b3b1](https://github.com/rodrigogs/whats-reader/commit/bf6b3b102d6cb5fdb3f8a6e06fb9c5e0a9240fe4))

## [1.30.1](https://github.com/rodrigogs/whats-reader/compare/v1.30.0...v1.30.1) (2026-04-01)


Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

31 changes: 23 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "whats-reader",
"productName": "WhatsApp Backup Reader",
"version": "1.30.1",
"version": "1.30.2",
"description": "A desktop app to read and visualize WhatsApp chat exports",
"license": "AGPL-3.0",
"author": {
Expand Down Expand Up @@ -35,20 +35,26 @@
"electron:build:mac": "npm run build && electron-builder --mac",
"electron:build:win": "npm run build && electron-builder --win",
"electron:build:linux": "npm run build && electron-builder --linux",
"machine-translate": "inlang machine translate --project project.inlang"
"machine-translate": "inlang machine translate --project project.inlang",
"act:setup": "docker pull catthehacker/ubuntu:act-latest && test -f .act/secrets || cp .act/secrets.example .act/secrets",
"act:ci": "npm run act:ci:lint && npm run act:ci:typecheck && npm run act:ci:build",
"act:ci:lint": ".act/run push -W .github/workflows/ci.yml -e .act/events/push-dev.json -j lint",
"act:ci:typecheck": ".act/run push -W .github/workflows/ci.yml -e .act/events/push-dev.json -j typecheck",
"act:ci:build": ".act/run push -W .github/workflows/ci.yml -e .act/events/push-dev.json -j build",
"act:release": ".act/run push -W .github/workflows/release.yml --secret-file .act/secrets -e .act/events/push-main.json",
"act:build": ".act/run workflow_dispatch -W .github/workflows/build.yml --secret-file .act/secrets --input version=${VERSION:-0.0.0-local} --matrix platform:linux-x64",
"act:deploy": ".act/run workflow_dispatch -W .github/workflows/deploy.yml -j build"
},
"dependencies": {
"@floating-ui/dom": "^1.7.6",
"@huggingface/transformers": "^3.8.1",
"electron-updater": "^6.8.3",
"idb-keyval": "^6.2.2",
"jszip": "^3.10.1"
"electron-updater": "^6.8.3"
},
"overrides": {
"cookie": "^0.7.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.10",
"@floating-ui/dom": "^1.7.6",
"@huggingface/transformers": "^3.8.1",
"@inlang/cli": "^3.1.9",
"@inlang/paraglide-js": "2.15.1",
"@inlang/plugin-m-function-matcher": "^2.2.4",
Expand All @@ -63,6 +69,8 @@
"cross-env": "^10.1.0",
"electron": "^39.8.6",
"electron-builder": "~26.0.12",
"idb-keyval": "^6.2.2",
"jszip": "^3.10.1",
"semantic-release": "^25.0.3",
"svelte": "^5.55.1",
"svelte-check": "^4.4.6",
Expand All @@ -88,14 +96,21 @@
"electron/**/*",
"!**/*.map",
"!**/*.md",
"!**/*.ts",
"!**/*.d.mts",
"!**/tsconfig*",
"!**/LICENSE",
"!**/README",
"!**/.github",
"!**/test",
"!**/tests",
"!**/__tests__",
"!**/docs",
"!**/examples"
"!**/examples",
"!build/og-image*.png",
"!build/apple-touch-icon.png",
"!build/web-app-manifest-*.png",
"!build/site.webmanifest"
],
"asarUnpack": [
"**/*.{node,dll}"
Expand Down
1 change: 0 additions & 1 deletion src/app.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

<!-- Favicon -->
<link rel="icon" href="%sveltekit.assets%/favicon.ico" sizes="32x32" />
<link rel="icon" href="%sveltekit.assets%/favicon.svg" type="image/svg+xml" />
<link rel="apple-touch-icon" href="%sveltekit.assets%/apple-touch-icon.png" />
<link rel="manifest" href="%sveltekit.assets%/site.webmanifest" />

Expand Down
Binary file added src/lib/assets/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 0 additions & 3 deletions src/lib/assets/favicon.svg

This file was deleted.

2 changes: 1 addition & 1 deletion src/routes/+layout.svelte
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script lang="ts">
import favicon from '$lib/assets/favicon.svg';
import favicon from '$lib/assets/favicon.png';
import * as m from '$lib/paraglide/messages';
import '../app.css';

Expand Down
2 changes: 1 addition & 1 deletion src/routes/+page.svelte
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script lang="ts">
import { tick } from 'svelte';
import { browser } from '$app/environment';
import favicon from '$lib/assets/favicon.svg';
import favicon from '$lib/assets/favicon.png';
import { getAutoUpdaterState, initAutoUpdater } from '$lib/auto-updater.svelte';
import { bookmarksState } from '$lib/bookmarks.svelte';
import {
Expand Down
3 changes: 0 additions & 3 deletions static/favicon.svg

This file was deleted.

Loading