Commit graph

18226 commits

Author SHA1 Message Date
Ivan Kalashnikov
ea5eb6be7d fix: import TranslatePipe in dialog share component 2026-01-22 08:35:59 +07:00
Ivan Kalashnikov
5b070a395c fix: import translation constants in dialog share component 2026-01-22 08:23:55 +07:00
Ivan Kalashnikov
0c73198a71 fix: translate close button text in share and productivity breakdown dialogs 2026-01-22 08:10:03 +07:00
Johannes Millan
14f4ed233e
Merge pull request #6099 from super-productivity/claude/evaluate-actions-workflow-4c4ZB
fix(lighthouse): increase font budget for Material Symbols upgrade
2026-01-22 00:22:17 +01:00
Claude
47001a1228
fix(lighthouse): increase font budget for Material Symbols upgrade
The font budget was set to 260KB before the Material Icons to Material
Symbols upgrade. Material Symbols font is ~456KB, causing Lighthouse CI
to fail. Increase budget to 520KB to accommodate the larger font with
headroom for future updates.
2026-01-21 23:18:58 +00:00
Johannes Millan
0775650e6e 17.0.0-RC.13 2026-01-21 22:12:01 +01:00
Johannes Millan
86850c711a fix(sync): restore entity from DELETE payload when UPDATE wins LWW conflict
When a remote DELETE is applied before LWW resolution and the local UPDATE
wins (newer timestamp), extract the entity from the DELETE operation payload
to recreate it, preventing data loss from the race condition.
2026-01-21 21:36:26 +01:00
Johannes Millan
cfb1c656dd feat: change bottom nav order again 2026-01-21 21:19:56 +01:00
Johannes Millan
d13701e071 test(performance): add stress tests for bulk hydration and adjust timeout values 2026-01-21 21:06:19 +01:00
Johannes Millan
ff0acbdd37 fix(gitignore): correct screenshots directory path in .gitignore 2026-01-21 21:05:29 +01:00
Johannes Millan
a35331f4ff feat(schedule): restore always 7 days with horizontal scroll for week view 2026-01-21 21:00:37 +01:00
Johannes Millan
dee9faad4f fix(icons): add missing calendar icon for ICAL provider
- Created calendar.svg icon for ICAL issue provider
- Registered calendar icon in global theme service
- Updated ISSUE_PROVIDER_ICON_MAP to use 'calendar' instead of 'calendar_month'
- Fixes error: "Unable to find icon with the name :calendar_month"
2026-01-21 20:50:15 +01:00
Johannes Millan
d578beb52b style(electron): make custom window title bar fully transparent 2026-01-21 20:45:52 +01:00
Johannes Millan
cd5151f4f7 fix(ci): exclude WebDAV and SuperSync tests from build workflow
WebDAV and SuperSync E2E tests require dedicated server infrastructure
and should only run in the scheduled E2E workflow or manually. This
prevents build failures when the required servers are not available.

- Added @webdav tag to all WebDAV test files for consistent filtering
- Updated build.yml to exclude @webdav and @supersync tagged tests
2026-01-21 20:42:50 +01:00
Johannes Millan
94e1550227 fix(tasks): hide close button in bottom panel on mobile
Prevents the task close button from appearing on mobile screens (≤600px) where task details are shown in the bottom panel, improving UX by avoiding redundant UI elements.
2026-01-21 20:10:38 +01:00
Johannes Millan
3d430c154c docs(readme): update sponsor from LambdaTest to TestMu AI
Replace LambdaTest sponsor with TestMu AI in the sponsor section.
Add theme-aware logos using picture element for automatic dark/light mode support.
2026-01-21 19:54:47 +01:00
Johannes Millan
054acbdf63 fix(e2e): resolve test failures and improve encryption UX
- Fix snackbar selector in supersync edge cases test
- Add polling for plugin navigation stability
- Show error snackbar and status icon on decryption failure
- All 5 failing tests now passing consistently
2026-01-21 19:53:00 +01:00
Johannes Millan
337afed482 fix(task-view-customizer): persist sort, group, and filter settings to localStorage
Resolves issue #6095 where Task View Customizer settings (sort, group, filter)
were being reset on app restart or day change.

Changes:
- Add localStorage keys for sort/group/filter settings
- Initialize signals from localStorage with default fallbacks
- Add effects to auto-persist signal changes to localStorage
- Add 7 comprehensive unit tests for persistence behavior

Settings now persist across app restarts, work context changes, and day boundaries.
Invalid localStorage data gracefully falls back to defaults.
2026-01-21 19:41:43 +01:00
Johannes Millan
623971eacd fix(ci): allow external contributors to trigger Claude Code review workflow
Add allowed_non_write_users parameter to bypass actor permission check for PRs from external contributors. This enables automated code reviews for all PRs, including those from forks, while maintaining security through pull_request_target context.
2026-01-21 19:23:27 +01:00
Johannes Millan
4661b19f7a style(icons): change Material Icons to outlined style
Changes FILL variation setting from 1 (filled) to 0 (outlined) to render all Material Symbol icons in outlined style throughout the app.
2026-01-21 19:18:40 +01:00
Johannes Millan
867b708413 perf(e2e): cache WebDAV health checks at worker level
Optimize WebDAV E2E test startup by caching health checks at the
worker level instead of checking in each test file's beforeAll hook.

Changes:
- Create webdav.fixture.ts with worker-level health check caching
- Update 12 WebDAV test files to use new fixture
- Remove redundant beforeAll health check blocks

Impact:
- Reduces health check overhead from ~8s to ~2s when WebDAV unavailable
- Saves ~6 seconds on PR/build CI runs (combined with existing SuperSync optimization)
- Tests automatically skip when WebDAV server is not reachable
2026-01-21 19:16:58 +01:00
Johannes Millan
3a9d35149d feat(e2e): enable SuperSync tests in e2e:docker:all script
Modify e2e:docker:all to run all 360+ E2E tests including @supersync tests.

- Start all required services (app, webdav, db, supersync)
- Add wait-for-supersync.sh for SuperSync health check
- Execute tests in two phases:
  - Phase 1: Non-supersync tests (default workers)
  - Phase 2: SuperSync tests (3 workers to avoid server overload)
- Both phases run independently; exit code reflects first failure
- Previously skipped 131 @supersync tests now included

Resolves complete E2E test coverage for all sync providers.
2026-01-21 19:04:57 +01:00
Johannes Millan
73c1848ba9 fix(docs): resolve markdown linting errors in all wiki files
- Add top-level headings to all wiki files (MD041)
- Fix heading spacing and blank line issues (MD022, MD012)
- Convert HTML badges to markdown format (MD033)
- Add alt text to images (MD045)
- Fix list indentation and numbering (MD005, MD029, MD032)
- Remove trailing punctuation from headings (MD026)
- Convert emphasis to proper headings (MD036)
- Fix heading level increments (MD001)
- Add trailing newlines to all files (MD047)

This ensures the wiki-sync.yml GitHub Action will pass linting.
All changes maintain the same visual appearance and functionality.

Fixes the lint failures reported in GitHub Action run #21212863659
2026-01-21 18:03:05 +01:00
Johannes Millan
05bfd96e55 fix(e2e): add polling for window.ng to prevent intermittent test failures
The plugin-feature-check test was failing intermittently because window.ng
might not be available immediately after Angular bootstrap. Added polling
logic (5s timeout, 100ms intervals) to wait for window.ng to become available.
2026-01-21 17:53:40 +01:00
johannesjo
1421151724 fix(ios): prevent keyboard from overlapping inputs
Use Capacitor's native WebView resize mode on iOS instead of CSS-based
workarounds. When keyboard appears, the WebView itself shrinks so 100vh
automatically fits above the keyboard.

- Configure iOS to use `resize: 'native'` (Android keeps `resize: 'body'`)
- Add scrollIntoViewIfNeeded() to scroll focused inputs into view
- Add proper cleanup for keyboard event listeners
- Improve flexbox shrinking in fullscreen markdown dialog
2026-01-21 17:45:14 +01:00
johannesjo
806dbc2dc3 fix(share): prevent iOS share sheet from reopening on dismiss
On iOS, dismissing the native share sheet by tapping the background
would cause it to reopen immediately. Two issues were fixed:

1. The Capacitor Share plugin on iOS throws {errorMessage: "Share canceled"}
   but the code only checked for error.name === 'AbortError'. This caused
   the cancellation to not be detected, falling through to try the Web
   Share API as a fallback, opening a second share dialog.

2. Moved the iOS share guard from component level to ShareService. The
   component-level guard didn't work because WorkContextMenuComponent is
   inside ng-template matMenuContent, so it gets destroyed when the menu
   closes, losing the guard state.
2026-01-21 17:09:57 +01:00
johannesjo
09d86d8afb fix(electron): resolve macOS app quit not responding
- Replace deprecated `selector:` properties with proper Electron `role:` in macOS menu
- Add standard macOS menu items (hide, hideOthers, unhide)
- Ensure before-close handlers always call setDone() to prevent app hanging
- Change sync error dialog from confirm() to alert() since result was ignored
2026-01-21 16:54:11 +01:00
Johannes Millan
4317e6575d perf(icons): implement lazy loading for Material Icons to reduce bundle size
Implement lazy loading for material-icons.const.ts (69.5KB, 3800+ icons) to reduce initial bundle size by ~68KB.

Changes:
- Create MaterialIconsLoaderService with promise caching to prevent concurrent loads
- Update DialogCreateTagComponent to use lazy loader service
- Update IconInputComponent to use lazy loader service
- Add comprehensive unit tests for MaterialIconsLoaderService
- Convert icon input methods to async for lazy loading support

Expected impact: Main bundle reduced by ~69KB, icons loaded on-demand when user focuses icon input fields.
2026-01-21 15:52:00 +01:00
Johannes Millan
9e1116555c refactor(icons): use drag_indicator instead of drag_handle for better visual 2026-01-21 15:51:29 +01:00
Johannes Millan
c0fbf5ddd8 fix(icons): update schedule nav icon from early_on SVG to schedule Material Symbol 2026-01-21 15:47:59 +01:00
Johannes Millan
7329c1cf1e refactor(icons): replace SVG icons with Material Symbols
Replace custom SVG icons with Material Symbols equivalents:
- play.svg → play_arrow icon
- drag-handle.svg → drag_handle icon
- early-on.svg → schedule icon
- estimate-remaining.svg → hourglass_empty icon
- calendar.svg → (unused, removed)
- keep.svg → bookmark_add icon (unpinned state)
- keep-filled.svg → bookmark icon (pinned state)
- bottom-panel-open.svg → (unused, removed)

This reduces custom SVG assets and leverages the Material Symbols font
for consistent icon rendering across the application.
2026-01-21 15:37:59 +01:00
Johannes Millan
709e688d6d feat(icons): upgrade from Material Icons to Material Symbols
- Replace legacy Material Icons (2,008 icons) with Material Symbols (3,798 icons)
- Adds missing icons reported in issue #6079: robot_2, manufacturing, cognition, cognition_2, neurology
- Update font: MaterialIcons-Regular.ttf (349KB) -> material-symbols-outlined.woff2 (456KB)
- Update icon names constant with 1,790 additional icons (+89% increase)
- Create extraction script for future icon updates
- Configure filled style to match previous appearance

Resolves #6079
2026-01-21 15:30:19 +01:00
Johannes Millan
01f8c6cd5f fix(ci): allow Dependabot PRs to trigger code review workflow 2026-01-21 15:30:18 +01:00
Johannes Millan
2392ecb091 feat(schedule): make week view navigation responsive to viewport width
- Replace hardcoded 7-day navigation with responsive day counts
- Desktop (≥1200px): 7 days (full week)
- Tablet (768-1199px): 5 days
- Mobile (480-767px): 3 days
- Small mobile (<480px): 2 days
- Navigation now moves by the number of days currently shown
- Remove horizontal scroll (no longer needed with responsive day count)

This fixes the mobile navigation bug where users saw 3 days but
navigation skipped by 7 days, causing 4 days to be hidden between
each navigation action.
2026-01-21 15:30:18 +01:00
Johannes Millan
2c429d77b9
Merge pull request #6087 from super-productivity/dependabot/npm_and_yarn/multi-982254d4fd
chore(deps): bump nodemailer and @types/nodemailer
2026-01-21 15:26:53 +01:00
Johannes Millan
634cfa94a8
Merge pull request #6082 from super-productivity/dependabot/npm_and_yarn/zod-4.3.5
chore(deps): bump zod from 4.1.13 to 4.3.5
2026-01-21 15:26:34 +01:00
Johannes Millan
373ba4cf13
Merge pull request #6088 from super-productivity/dependabot/npm_and_yarn/rollup/rollup-linux-x64-gnu-4.55.3
chore(deps): bump @rollup/rollup-linux-x64-gnu from 4.27.4 to 4.55.3
2026-01-21 15:26:20 +01:00
Johannes Millan
d73ba67489
Merge pull request #6090 from super-productivity/dependabot/github_actions/github-actions-minor-05604d7d6b
chore(deps)(deps): bump easingthemes/ssh-deploy from 5.0.3 to 5.1.1 in the github-actions-minor group
2026-01-21 15:26:13 +01:00
Johannes Millan
c74cc61866
Merge pull request #6091 from super-productivity/dependabot/github_actions/docker/login-action-3.6.0
chore(deps)(deps): bump docker/login-action from 2.2.0 to 3.6.0
2026-01-21 15:26:03 +01:00
Johannes Millan
ee135f28ab
Merge pull request #6092 from super-productivity/dependabot/github_actions/github/codeql-action-4.31.10
chore(deps)(deps): bump github/codeql-action from 3.31.10 to 4.31.10
2026-01-21 15:25:55 +01:00
Johannes Millan
88354a4bee
Merge pull request #6084 from super-productivity/dependabot/npm_and_yarn/angular-material-css-vars-10.0.0
chore(deps): bump angular-material-css-vars from 9.1.1 to 10.0.0
2026-01-21 15:25:25 +01:00
Johannes Millan
afd9f7b061
Merge pull request #6093 from super-productivity/dependabot/github_actions/actions/checkout-6.0.1
chore(deps)(deps): bump actions/checkout from 4.3.1 to 6.0.1
2026-01-21 15:15:17 +01:00
dependabot[bot]
5ef7fbfb0f
chore(deps)(deps): bump actions/checkout from 4.3.1 to 6.0.1
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.3.1 to 6.0.1.
- [Release notes](https://github.com/actions/checkout/releases)
- [Commits](https://github.com/actions/checkout/compare/v4.3.1...v6.0.1)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: 6.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-01-21 13:45:27 +00:00
dependabot[bot]
58be8c5b07
chore(deps)(deps): bump github/codeql-action from 3.31.10 to 4.31.10
Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.31.10 to 4.31.10.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](4bdb89f480...cdefb33c0f)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-version: 4.31.10
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-01-21 13:45:05 +00:00
dependabot[bot]
793a14a010
chore(deps)(deps): bump docker/login-action from 2.2.0 to 3.6.0
Bumps [docker/login-action](https://github.com/docker/login-action) from 2.2.0 to 3.6.0.
- [Release notes](https://github.com/docker/login-action/releases)
- [Commits](465a07811f...5e57cd1181)

---
updated-dependencies:
- dependency-name: docker/login-action
  dependency-version: 3.6.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-01-21 13:44:49 +00:00
dependabot[bot]
06ddb727eb
chore(deps)(deps): bump easingthemes/ssh-deploy
Bumps the github-actions-minor group with 1 update: [easingthemes/ssh-deploy](https://github.com/easingthemes/ssh-deploy).


Updates `easingthemes/ssh-deploy` from 5.0.3 to 5.1.1
- [Release notes](https://github.com/easingthemes/ssh-deploy/releases)
- [Changelog](https://github.com/easingthemes/ssh-deploy/blob/main/docs/CHANGELOG.md)
- [Commits](01a39e3348...a1aa0b6cf9)

---
updated-dependencies:
- dependency-name: easingthemes/ssh-deploy
  dependency-version: 5.1.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github-actions-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-01-21 13:44:43 +00:00
dependabot[bot]
00f3b78dde
chore(deps): bump @rollup/rollup-linux-x64-gnu from 4.27.4 to 4.55.3
Bumps [@rollup/rollup-linux-x64-gnu](https://github.com/rollup/rollup) from 4.27.4 to 4.55.3.
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rollup/rollup/compare/v4.27.4...v4.55.3)

---
updated-dependencies:
- dependency-name: "@rollup/rollup-linux-x64-gnu"
  dependency-version: 4.55.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-01-21 13:43:49 +00:00
dependabot[bot]
8c64f6099f
chore(deps): bump nodemailer and @types/nodemailer
Bumps [nodemailer](https://github.com/nodemailer/nodemailer) and [@types/nodemailer](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/nodemailer). These dependencies needed to be updated together.

Updates `nodemailer` from 7.0.11 to 7.0.12
- [Release notes](https://github.com/nodemailer/nodemailer/releases)
- [Changelog](https://github.com/nodemailer/nodemailer/blob/master/CHANGELOG.md)
- [Commits](https://github.com/nodemailer/nodemailer/compare/v7.0.11...v7.0.12)

Updates `@types/nodemailer` from 7.0.4 to 7.0.5
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/nodemailer)

---
updated-dependencies:
- dependency-name: nodemailer
  dependency-version: 7.0.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: "@types/nodemailer"
  dependency-version: 7.0.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-01-21 13:43:30 +00:00
dependabot[bot]
a6957bcd52
chore(deps): bump angular-material-css-vars from 9.1.1 to 10.0.0
Bumps [angular-material-css-vars](https://github.com/johannesjo/angular-material-css-vars) from 9.1.1 to 10.0.0.
- [Release notes](https://github.com/johannesjo/angular-material-css-vars/releases)
- [Commits](https://github.com/johannesjo/angular-material-css-vars/compare/v9.1.1...v10.0.0)

---
updated-dependencies:
- dependency-name: angular-material-css-vars
  dependency-version: 10.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-01-21 13:42:23 +00:00
dependabot[bot]
45265f915a
chore(deps): bump zod from 4.1.13 to 4.3.5
Bumps [zod](https://github.com/colinhacks/zod) from 4.1.13 to 4.3.5.
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Commits](https://github.com/colinhacks/zod/compare/v4.1.13...v4.3.5)

---
updated-dependencies:
- dependency-name: zod
  dependency-version: 4.3.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-01-21 13:41:42 +00:00