- Added `nodemon` and `wait-on` as dependencies in the electron example's package.json for better development experience.
- Updated the `dev` script to utilize `wait-on` for ensuring the Vite server is running before starting Electron.
- Enhanced the README.md with clearer instructions and examples for configuring the adapter and its options.
- Removed the `functions` option from the TypeScript definition to simplify the interface.
- Cleaned up unused imports in setupHandler.js to streamline the code.
- Added a new section for Adapters with subsections for Appwrite and Electron adapters.
- Improved navigation by including links to examples and package details for each adapter.
- Clarified the descriptions for both Appwrite and Electron adapters to enhance user understanding.
- Updated the description to highlight native protocol handling and Vite integration.
- Added key features of the adapter, including development integration and production readiness.
- Clarified example app usage and provided detailed setup instructions for better user guidance.
- Modified the file existence check in the GitHub Actions workflow to validate the presence of main/index.cjs, reflecting recent changes in the build output structure.
- Modified tests to expect a 400 response with a clear message for unsupported HTTP requests instead of throwing an assertion error.
- Enhanced clarity in error handling for external HTTP requests in the protocol handler.
- Added @rollup/plugin-typescript as a dependency in package.json for TypeScript integration.
- Updated index.js to include typescript in the Rollup build process.
- Reflected the new dependency in pnpm-lock.yaml to ensure proper versioning and compatibility.
- Added @rollup/plugin-commonjs, @rollup/plugin-json, and @rollup/plugin-node-resolve as dependencies in package.json.
- Updated pnpm-lock.yaml to reflect the new dependencies and their versions.
- Removed unused import from index.js to streamline the code.
- Removed duplicate electron entry from pnpm-lock.yaml to streamline dependency management.
- Ensured that the correct version specifications are maintained for other dependencies.
- Modified the dependency installation step in the CI workflow to remove the frozen lockfile option, allowing for more flexibility during installations.
- Upgraded rollup to version 4.45.1 and turbo to version 2.5.5 in pnpm-lock.yaml.
- Modified GitHub Actions workflow to install dependencies without the frozen lockfile option for better flexibility.
- Updated package.json in adapter-electron to include rollup as a dependency and adjusted devDependencies for consistency.
- Replaced npm commands with pnpm in the dev and build scripts.
- Added a sync script to ensure proper synchronization before starting the development server or building the project.
- Replaced the Node.js setup step to use version 22 for improved compatibility.
- Updated pnpm version in both CI and test workflows to 10 for consistency and performance.
- Removed redundant pnpm installation step in the CI workflow.
- Replaced assertions with explicit error throwing for missing mainWindow and session.
- Updated protocol handler to return a 400 response for unsupported HTTP requests, enhancing security and clarity.
- Improved internal server error response formatting.
- Renamed job from 'Run workspace tests' to 'run-workspace-tests' for consistency with naming conventions.
- Updated step name from 'Type check adapter-electron' to 'Run workspace tests' to better reflect its purpose.
- Updated GitHub Actions workflow to streamline testing and type checking processes.
- Consolidated test steps and improved error handling for better clarity.
- Enhanced protocol handler functions in setupHandler.js to support additional features and security measures.
- Added new utility functions for file handling and path validation to improve robustness.
- Updated integration tests to cover new functionality and ensure proper request handling.
- Upgraded pnpm action version in the CI workflow.
- Enhanced error messages for missing test and typecheck scripts in adapter-appwrite and examples.
- Cleaned up conditional checks for better readability.
- Added placeholders.d.ts to the files list.
- Updated dependencies for electron and cookie.
- Introduced new scripts for testing and type checking.
- Adjusted devDependencies for compatibility with TypeScript and testing tools.
- Removed package manager and engines from package.json.
- Updated pnpm-lock.yaml to reflect new versions of dependencies.
- Modified pnpm-workspace.yaml to include only built dependencies for Electron.
- Adjusted electron-builder.yaml to exclude unnecessary files and added output directory.
- Deleted obsolete electron.vite.config.ts file.
- Updated main entry point in examples/electron/package.json to use CommonJS format.
- Refactored scripts in examples/electron/package.json for better development experience.
- Enhanced error handling and logging in game logic within examples/electron/src/routes/sverdle/+page.server.ts.
- Updated adapter-electron to support new protocol handling and build processes.