Skip to content

Commit 81cc3a9

Browse files
authored
Merge pull request #4 from primno/dev
v1.1.1
2 parents 896e33a + ccf11d9 commit 81cc3a9

4 files changed

Lines changed: 23 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#### 1.1.1 (2023-03-25)
2+
3+
##### Chores
4+
5+
* Add test folder in package. Improve keyword. Change badge ([6ec96c42](https://github.com/primno/dpapi/commit/6ec96c4298fa8d3461eb122f388cf861bf627430))
6+
* Add code coverage ([fd31b1d6](https://github.com/primno/dpapi/commit/fd31b1d682c35289f77aed8a4c3e5ee8ca2ad317))
7+
8+
##### Documentation Changes
9+
10+
* Fix typo ([336f483f](https://github.com/primno/dpapi/commit/336f483f0a01ccce52cd58695bd787f23a9a385b))
11+

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,16 @@
22
[![npm](https://img.shields.io/npm/v/@primno/dpapi.svg)](https://www.npmjs.com/package/@primno/dpapi)
33
[![npm](https://img.shields.io/npm/l/@primno/dpapi.svg)](https://github.com/primno/dpapi/blob/main/LICENSE)
44
![build](https://img.shields.io/github/actions/workflow/status/primno/dpapi/test.yml)
5-
![codecov](https://img.shields.io/codecov/c/github/primno/dpapi)
5+
[![coverage](https://codecov.io/gh/primno/dpapi/branch/main/graph/badge.svg?token=J4AVWIOR9F)](https://codecov.io/gh/primno/dpapi)
66

77
Native module to encrypt/decrypt data on Windows with DPAPI.
88

99
This native module is **prebuilt** for Node.JS running on Windows. It provides the win32-x64 N-API module.
1010

1111
Based on the port to N-API made by [Microsoft](https://github.com/AzureAD/microsoft-authentication-library-for-js/tree/dev/extensions/msal-node-extensions/src/dpapi-addon) in @msal-node-extension from the work of [Brad Hughes](https://github.com/bradhugh/node-dpapi).
1212

13+
> This package is part of the [Primno](https://primno.io) framework.
14+
1315
## Why this package?
1416

1517
Other similar packages require to build the native module on the target machine during the installation.

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
{
22
"name": "@primno/dpapi",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"description": "Pre-built version of DPAPI (Data Protection API of Windows). Encrypt and decrypt data.",
55
"main": "dist/index.js",
66
"files": [
77
"dist",
88
"src",
99
"prebuilds",
10-
"binding.gyp"
10+
"binding.gyp",
11+
"test"
1112
],
1213
"gypfile": true,
1314
"scripts": {
@@ -25,9 +26,10 @@
2526
"url": "git+https://github.com/primno/dpapi.git"
2627
},
2728
"keywords": [
28-
"dpapi",
29-
"pre-built",
30-
"encrypt"
29+
"Dpapi",
30+
"Prebuilt",
31+
"Encrypt",
32+
"Crypt"
3133
],
3234
"license": "MIT",
3335
"bugs": {

0 commit comments

Comments
 (0)