better-sqlite3-multiple-ciphers 9.2.2 → 9.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -17,10 +17,10 @@ The fastest and simplest library for SQLite3 in Node.js. This particular fork su
17
17
  ## Current versions
18
18
 
19
19
  - ### Stable
20
- - **better-sqlite3-multiple-ciphers** - [`9.2.2`](https://github.com/m4heshd/better-sqlite3-multiple-ciphers/releases/tag/v9.2.2)
21
- - **better-sqlite3** - [`9.2.2`](https://github.com/JoshuaWise/better-sqlite3/releases/tag/v9.2.2)
22
- - **SQLite** - [`3.44.2`](https://www.sqlite.org/releaselog/3_44_2.html)
23
- - **SQLite3 Multiple Ciphers** - [`1.8.1`](https://github.com/utelle/SQLite3MultipleCiphers/releases/tag/v1.8.1)
20
+ - **better-sqlite3-multiple-ciphers** - [`9.4.0`](https://github.com/m4heshd/better-sqlite3-multiple-ciphers/releases/tag/v9.4.0)
21
+ - **better-sqlite3** - [`9.4.0`](https://github.com/JoshuaWise/better-sqlite3/releases/tag/v9.4.0)
22
+ - **SQLite** - [`3.45.1`](https://www.sqlite.org/releaselog/3_45_1.html)
23
+ - **SQLite3 Multiple Ciphers** - [`1.8.3`](https://github.com/utelle/SQLite3MultipleCiphers/releases/tag/v1.8.3)
24
24
 
25
25
  - ### Beta
26
26
  - **better-sqlite3-multiple-ciphers** - [`v9.1.2-beta.0`](https://github.com/m4heshd/better-sqlite3-multiple-ciphers/releases/tag/v9.1.2-beta.0)
@@ -40,7 +40,9 @@ Also head over to [SQLite3MultipleCiphers](https://github.com/utelle/SQLite3Mult
40
40
 
41
41
  You can also support me (the maintainer of this fork) by buying me a coffee. 😊
42
42
 
43
- [![ko-fi](https://i.ibb.co/QmQknmc/ko-fi.png)](https://ko-fi.com/m4heshd)
43
+ [![ko-fi](https://i.ibb.co/QmQknmc/ko-fi.png)](https://ko-fi.variatix.net/)
44
+
45
+ [![Donate to m4heshd](https://i.ibb.co/8PgVcwK/Paypal.png)](https://paypal.variatix.net/)
44
46
 
45
47
  ## How other libraries compare
46
48
 
@@ -94,7 +96,7 @@ db.pragma('journal_mode = WAL');
94
96
 
95
97
  A database can be encrypted and decrypted simply using `key` and `rekey` `PRAGMA` statements.
96
98
 
97
- **Running this will encrypt the database using the default cipher:**
99
+ **Running this will encrypt the database using the default cipher (sqleet):**
98
100
 
99
101
  ```js
100
102
  const db = require('better-sqlite3-multiple-ciphers')('foobar.db', options);
package/deps/setup.ps1 CHANGED
@@ -2,7 +2,7 @@
2
2
  $ErrorActionPreference = "Stop"
3
3
 
4
4
  # SQLite Info
5
- $SQLITEMC_VER = "v1.8.1"
5
+ $SQLITEMC_VER = "v1.8.3"
6
6
  $API_URL = "https://api.github.com/repos/utelle/SQLite3MultipleCiphers/releases/tags/" + $SQLITEMC_VER
7
7
 
8
8
  # Paths