Skip to content

Releases: itsMapleLeaf/remix-electron

Release 2.0.2

04 Feb 20:32
Compare
Choose a tag to compare

Release 2.0.1

19 Dec 08:44
Compare
Choose a tag to compare
  • fix: use decodeURIComponent to allow fetching public filenames that contain whitespaces (177587e)

2.0.0

22 Oct 23:20
Compare
Choose a tag to compare

Updated for Remix v2, some small template improvements, etc.

1.3.0

31 May 02:54
Compare
Choose a tag to compare

Adds support for server-sent events, thanks @jakoblorz!

1.2.2

15 Apr 20:07
Compare
Choose a tag to compare

Bugfix: resolves non-absolute paths relative to the app folder. Should fix cases where assets like css files aren't resolved

Also updated the template to use the latest Remix version

1.2.1

24 Feb 22:47
Compare
Choose a tag to compare

Improves request performance in dev, thanks @Aexylus!

1.2.0

24 Feb 04:33
Compare
Choose a tag to compare

Adds support for the Referer header

1.1.0

20 Feb 22:58
Compare
Choose a tag to compare

Supports seeing changes on reload again. See #9 for details

1.0.0

18 Feb 23:43
Compare
Choose a tag to compare

Breaking: The initRemix() function now accepts the server build instead of the remix config. This update allows using Remix's server build feature with the virtual import; you can now more easily write the electron entry in TS!

// desktop/main.ts
import * as serverBuild from "@remix-run/dev/server-build"
import { initRemix } from "remix-electron"

// ...

    const url = await initRemix({ serverBuild })
    await createWindow(url)
// remix.config.js
/**
 * @type {import('@remix-run/dev/config').AppConfig}
 */
module.exports = {
  appDirectory: "app",
  assetsBuildDirectory: "public/build",
  publicPath: "/build/",
  server: "desktop/main.ts",
  serverBuildPath: "desktop/build/index.js",
  devServerPort: 8002,
  ignoredRouteFiles: [".*"],
}

0.3.1

17 Feb 22:02
Compare
Choose a tag to compare

Fixes asset path on Windows #6