Skip to content

Releases: reZach/secure-electron-store

v4.0.2

30 Jun 20:56
Compare
Choose a tag to compare

Changes

v4.0.1

29 Jun 20:54
Compare
Choose a tag to compare

Changes

  • Removed console.log line that wasn't needed

v4.0.0

29 Jun 20:53
Compare
Choose a tag to compare

Changes

  • You need to use .sanitizePath in order to use secure-electron-store v4+ in versions of Electron 14+. The documentation has been updated to reflect what is needed. This is a breaking change because .sanitizePath replaces any \ with ||. (additionalArguments in versions of Electron v14+ no longer work if you pass in a \ character in them.

before

    /* create BrowserWindow here */
    additionalArguments: [`storePath:${app.getPath("userData")}`],

now

const store = new Store({
    path: app.getPath("userData")
});

    /* create BrowserWindow here */
    additionalArguments: [`--storePath=${store.sanitizePath(app.getPath("userData"))}`],

v3.0.4

27 Jun 21:27
Compare
Choose a tag to compare

Changes

  • Bumped dependencies

v3.0.3

10 Sep 01:23
Compare
Choose a tag to compare

Changes

  • Bump dependencies

v3.0.2

23 Jul 20:57
Compare
Choose a tag to compare

Changes

  • Bumped dependencies

v3.0.1

01 May 03:56
Compare
Choose a tag to compare

Changes

  • Fixed bug when not finding any file for the unprotected store

v3.0.0

22 Apr 04:03
Compare
Choose a tag to compare

Notes

  • Revert algorithm change (needs more thought)

v2.0.0

22 Apr 02:27
Compare
Choose a tag to compare

Notes

  • Changed encryption algorithm (breaking change)
  • Sonarcube recommendations

v1.4.0

22 Apr 02:26
Compare
Choose a tag to compare

Bump packages