Releases: preshan/SkyTask
Release list
SkyTask 1.4.0
Changes
- Export a full backup from Settings → Data (compressed; optional password)
- Import from Files, or restore from Google Drive (SkyTask Backups folder)
- Share / save locally after export, or upload straight to Drive
- Private text travels with the backup; your app PIN stays on the device
Download
Debug-signed for sideload testing (not a Play Store build).
SkyTask 1.3.1
Fixes
- Enabling calendar sync now requests calendar permission correctly
- Error messages show the real cause (permission vs no calendars) instead of always saying to add a Google account
Download
SkyTask 1.3.0
Changes
- Long-press the SkyTask icon for New Task / Reminder / Idea
- PIN create → confirm flow works reliably; backspace icon corrected
- App lock switch updates correctly; turning it off asks for PIN / biometrics
- Overdue reminders are re-armed after reboot
- Stronger PIN hashing (salted PBKDF2)
Download
SkyTask-1.3.0.apk (~70 MB, debug-signed for sideload)
Full history: CHANGELOG.md
SkyTask 1.2.0
Changes
- Day / night sky background and frosted surfaces on home and navigation
- Today: tasks and reminders due today; Recent reminders for the next 7 days
- Home shortcut badges with live counts
- About screen uses the app icon and centered credits
- Dark mode: PIN setup, lock screen, and onboarding are easier to read
Download
SkyTask-1.2.0.apk (~66 MB, debug-signed for sideload)
Full history: CHANGELOG.md
SkyTask 1.1.3
Fixes
- Crash when creating a reminder in release builds (ProGuard / Gson keep rules for local notifications)
Note
Voice reminders are not written to the device calendar (same as private reminders). That is by design, not related to the crash above.
Download
SkyTask 1.1.2
What's new
- Home shortcuts: pinned tasks, pending tasks, private ideas, private reminders
- Today tiles: Tasks / Ideas / Notes with amber count badges
- This week: Mon–Sun reminder counts open that day’s agenda
- Hugeicons everywhere: Material icons replaced with SkyIcon
- About: centered credits with LinkedIn and mail icons
- Voice UX: skip description autofocus when you mostly save with voice
- Calendar: clearer selected Agenda / Week / Month contrast
- Amber secondary accent for badges and highlights
Screenshots
| Home | Tasks | Create |
|---|---|---|
![]() |
![]() |
![]() |
| New Task | New Reminder | Settings |
|---|---|---|
![]() |
![]() |
![]() |
Download
SkyTask-1.1.2.apk (debug-signed for sideload)
SkyTask 1.1.1
What's new
- Dark theme: sky blue brand accent for readable contrast (navy kept in light mode)
- About: live app version from the build, developer name, LinkedIn, and email
- Task categories: Work & Personal by default; add your own; most-used first
Download
SkyTask-1.1.1.apk (~66 MB, debug-signed for sideload)
SkyTask 1.1.0
SkyTask 1.1.0 — Release Notes
Released: 2026-08-02 · Version: 1.1.0+2
SkyTask 1.1 focuses on faster capture (inline Create + voice memos), a navy brand refresh, and encrypting private text at rest.
Download
- SkyTask-1.1.0.apk (Android, ~66 MB)
- Signed with the debug keystore for sideload testing (not Play Store distribution)
Highlights
- Inline Create in the bottom bar — no floating FAB
- Voice memos on every item type, with play controls on lists
- Private text encryption (AES-256-CBC) with secure key storage
- Navy brand (
#000080) and Hugeicons throughout
Screenshots
| Home | Tasks | Create |
|---|---|---|
![]() |
![]() |
![]() |
| Calendar | Ideas |
|---|---|
![]() |
![]() |
Captured on Android emulator (
emulator-5554). Browser automation is not used for the Flutter UI; screenshots were taken viaadb screencap.
Architecture diagrams
Navigation shell
flowchart LR
subgraph BottomNav["App shell"]
H[Home]
T[Tasks]
C[Create]
Cal[Calendar]
I[Ideas]
end
C --> Sheet{Create sheet}
Sheet --> Task[New Task]
Sheet --> Rem[New Reminder]
Sheet --> Idea[New Idea]
Sheet --> Note[New Note]Reminder pipeline
sequenceDiagram
participant UI as Form sheet
participant Repo as Reminder repository
participant Isar as Isar DB
participant Notif as NotificationService
participant Alarm as AlarmManager
participant Cal as Device calendar
UI->>Repo: save reminder
Repo->>Isar: persist (encrypt if private)
Repo->>Notif: schedule / show
Repo->>Alarm: exact alarm
alt not private and not voice-only skip
Repo->>Cal: optional calendar event
else private
Note over Cal: calendar sync skipped
endPrivate content encryption
flowchart TD
A[User marks item private] --> B[Mapper toIsar]
B --> C{isPrivate?}
C -->|yes| D[PrivateCryptoService.encrypt]
D --> E["Store enc:v1:… in Isar"]
C -->|no| F[Store plaintext]
E --> G[Read path]
F --> G
G --> H[Mapper fromIsar]
H --> I{enc:v1: prefix?}
I -->|yes| J[decrypt with AES key from SecureStorage]
I -->|no| K[return as-is]
J --> L[UI / PrivateContentGate]
K --> LVoice memo lifecycle
stateDiagram-v2
[*] --> Idle
Idle --> Recording: tap mic
Recording --> Idle: stop / PopScope finalize
Idle --> Ready: file saved
Ready --> Playing: play
Playing --> Ready: pause / complete
Ready --> Idle: clear
note right of Recording
First back/dismiss stops
recording instead of closing
end noteWhat’s new (detail)
Capture & navigation
- Bottom nav: Home · Tasks · Create · Calendar · Ideas
- Create opens a sheet for Task / Reminder / Idea / Note
- Forms: description autofocus, category/priority chips, private eye-toggle, voice row
Voice
- AAC
.m4amemos viarecord+audioplayers - Empty titles become
MMM d, yyyy · h:mm a - Play buttons on home, calendar, and ideas lists
Privacy & security
PrivateCryptoService: AES-256-CBC, key inFlutterSecureStorage- Encrypted fields: titles, descriptions/content, tags (when private)
- Notifications for private reminders never show the real title
- Calendar sync skipped for private items; agenda tiles gated
Brand
- Primary
#000080, secondary#191970, background#F4F6F9
Known limitations
| Area | Limitation |
|---|---|
| Voice | Private voice files remain plaintext on disk |
| Notes | Attachment path strings are not encrypted when private |
| Android 16 KB | Emulator may warn about native lib alignment (Isar/Flutter) |
Upgrade notes
- Update to
1.1.0+2and run a normal install/upgrade. - Existing private items are encrypted on the next write through mappers.
- Grant microphone permission to use voice memos.
Code review (pre-release)
Bugbot reviewed uncommitted changes before this release. Findings addressed in-tree:
| Severity | Finding | Action |
|---|---|---|
| High | Cleartext private voice on disk | Documented limitation (v1.2 candidate) |
| High | Recording lost on sheet dismiss | PopScope + safe teardown |
| Medium | Voice title rewritten on edit | Use createdAt when regenerating |
| Low | Settings back always → home | Prefer context.pop() |
Remaining medium items (duplicate past-due notification paths; note attachments) tracked for follow-up.







