FSD Logo

Flight Check

Changelog

Keep track of what has changed.

1.3.5
2026-01-07
Layout & UI
  • added placeholder text for empty item names in various places
  • added dark mode for notifications
Bugfixes
  • fixed autocheck not being present in some legacy checklists freezing up the ui when trying to edit a check
Code & Backend
  • added playwright for end to end testing
  • refactored how notifications are delivered
1.3.4
2025-12-29
Changes
  • pocketbase no longer sends emails when logging in from a new device
Bugfixes
  • refreshing a schedule page no longer causes an error due to data fetching clashing with session expiration maintenance
  • fixed select and overlay components sometimes not rendering when using native svelte transitions by replacing them with pure css animations
Code & Backend
  • version migrations are now handled with pocketbase cronjobs
  • session expiration maintenance is now handled with pocketbase cronjobs
  • updated pocketbase to v0.35.0
  • pocketbase cronjobs are now automatically imported during the docker build process
  • select and overlay components no longer use the custom forcemount snippet structure
1.3.3
2025-12-23
Features
  • added dark mode
Changes
  • replaced 'cancel' with 'back' on many buttons to better reflect their function
  • improved the way you can add and remove users from user groups
Layout & UI
  • session purpose is now hightlighted in session history and schedules
  • schedule descriptions are now put in a scroll container
  • list items no longer get squished when there is a long title
  • long titles are no longer centered when they wrap to multiple lines
  • untitled checklists are now indicated as such
  • added missing icons to additional info checklist pills
  • replaced the addition info in schedule browser with pills for better readability
  • checkbox changes are now animated
  • fixed pill box slide animations sometimes displaying incorrectly
  • redesigned input components
  • dialogs now scale to smaller screens and include a scrollbar if their content is too large
  • long agent names and descriptions are now contained in scrollable aread for better visibility
Bugfixes
  • fixed being able to add dependencies to groups
  • fixed a bug where schedule database subscriptions could not be closed on leaving schedule page
Code & Backend
  • mobile view for session names in schedule now reuses code with svelte snippets
  • added components for entity lists, entity list items, seperators, titles, pagination, button groups, pills, pill groups
  • replaced deprecated navigating store with svelte 5 state
  • updated various classes to tailwind 4 syntax
  • added a lot of reusable tailwind presets for commonly used items
1.3.2
2025-12-07
Features
  • added ability to export checklists as json files
  • added ability to import checklists from json files
Layout & UI
  • top bar items now wrap on very small screens instead of overflowing
Bugfixes
  • workspaces changes are now applied immediately and do not require a page refresh
Code & Backend
  • code is now minified during build process to reduce final bundle size
1.3.1
2025-12-01
Features
  • added ability to switch workspaces for checklists and schedules
Layout & UI
  • session actions are now grouped by date
  • improved agent name line height in mini checklists
Bugfixes
  • deleting a user now also removes it from any user groups and schedule assignments
1.3.0
2025-11-28
Features
  • added workspaces
  • added user groups
  • added ability to restrict agents to specified user groups
  • added a confirmation popup for cascading unchecks
  • added option to show active sessions in session browser
  • added autosave option to checklists
  • added ability to change checklist owners
Changes
  • skipping a check no longer requires a reason
  • actions are now always verified on the server before they are applied to a local session instance. this will cause delays in high latency environments but will ensure data integrity in all cases
  • logging in & out now moves you to the landing page
  • deleting a session will now move you back to its schedule page if it has one, otherwise to the landing page
  • deleting a schedule will now move you back to the schedule browser
  • moved the logout button to user settings
  • user settings are now accessible by clicking your name in the top bar
Layout & UI
  • loading bars can now block inputs while not showing an overlay and vice verca
  • long descriptions are now scrollable in multiple places instead of taking up excessive space
  • autochecks are now colored the same as checked items when their dependencies are met
  • session history now displays creation date when sorted by date created
  • added a custom error page
  • closed session info is now more organized
  • checklist browser now shows hosts and access level
  • fixed session history dates being squished with long checklist names
Bugfixes
  • fixed a bug where the state version of a checklist body could somehow become desynced from the checklist parent object, leading to changes being lost when saving checklists
  • fixed checkbox indicators being misaligned when the checkbox had a description
  • fixed autochecks not working correctly in certain edge cases
  • fixed autochecks being triggered multiple times when actions were being caught up
  • fixed reopened sessions sometimes still retaining a close date
Database Changes
  • added new workspaces collection
  • added new user_groups collection
  • added new migrations collection
  • added new field 'workspace' to checklists, schedules and sessions collections
Code & Backend
  • added migration system for large volume single time data structure changes
  • restructured checklist, checklistpb and checklistbody types to be consistent with other object naming conventions
  • removed any redudant items in checklist body that are already stored in the parent checklist object
  • refactored entire uncheck cascade logic to allow for ui interruptions
  • inputs now support onchange events
  • replaced all types for inserting items into pocketbase with the appropriate Partial<> types
1.2.0
2025-10-23
Features
  • added ability to skip checks
  • added ability to add notes to a session, regardless of session state
Bugfixes
  • fixed a bug where the number of completed checks was incorrectly calculated when cascading unchecks were used
Database Changes
  • actions: new type 'skip' for skipping checkboxes
  • sessions: added new 'notes' json field
Code & Backend
  • added indicator to top bar when viewing a development build
1.1.0
2025-10-21
Features
  • added offline detection with alert banner
  • added optional cascading unchecks for checkboxes with chained dependencies
  • added ability to assign multiple users to an agent in schedules
Layout & UI
  • added animations to mini checklists to indicate checkbox state changes
  • when a checkbox is checked while spectating it will now be scrolled into view smoothly
  • added lock indicators to mini checklist
  • added autocheck indicator to mini checklist
  • added view transitions to all page navigations from the landing page
  • added small buffer zone at the bottom to prevent buttons clinging to the page end
Bugfixes
  • duplicate actions in a session are now detected and ignored
  • fixed host not being displayed correctly after closing a session
  • fixed dates being incorrectly formatted in chromium based browsers in the changelog
  • fixed dates being incorrectly formatted when using certain browers or os locales
  • the stop spectating button is no longer shown in closed sessions in certain cases
  • fixed a bug where the agent watchlist would linger after closing a session
  • fixed a bug where users were not able to access checklists shared with all users
  • fixed a bug where mini checklist highlight animations would trigger in closed sessions in certain cases
  • actions in reopened sessions now retain their original timestamps
Database Changes
  • actions: new type 'uncheck_cascade' for cascading unchecks of dependent checkboxes
  • actions: added new timestamp field because the existing created field cannot be modified and didnt allow for actions to be revived when reopening sessions
Code & Backend
  • internal database connections are now shared via locals on a per request basis instead of creating a new connection each time a new query is made
  • enabled support for svelte 5 remote actions
  • view transitions are now ignored if reduced motion preference is set
  • added reusable component for assigning view transition names and replaced all instances
  • added new layout & visuals category to changelog
  • improved how icons are displayed in the changelog
  • added migration functions for all data types that run upon saving and fetching entries to ensure data integrity
  • added new list model types for paged pocketbase lists
1.0.1
2025-10-14
Bugfixes
  • fixed incomplete changelog entry
Code & Backend
  • updated svelte, sveltekit and all packages to the newest compatible versions
  • undid the dynamic lucide icon imports because the compiler wouldnt register them as valid
1.0.0
2025-10-14
Announcements
  • version 1.0.0 released
Code & Backend
  • updated lucide icons to the svelte 5 version