-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Fix an issue that IP assignment event is not fired when NotifyIpInt…
…erfaceChange only notifies with link-local address. - In standalone mode, stop the monitor upon receiving SIGINT. - Also, bump up dependencies and remove the yam resolution of forcing minimist as the upgrade of node-windows makes it obsolete
- Loading branch information
Showing
16 changed files
with
781 additions
and
745 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Git diff Check | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: [main] | ||
pull_request: | ||
types: [opened, synchronize, reopened] | ||
branches: [main] | ||
|
||
jobs: | ||
Analyze: | ||
runs-on: windows-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 2 | ||
|
||
- name: Run git diff check | ||
run: | | ||
git config --global core.whitespace cr-at-eol,tab-in-indent | ||
git diff --check HEAD^ |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,25 @@ | ||
{ | ||
"name": "update-dynamic-dns-with-vpn", | ||
"version": "1.0.0", | ||
"version": "1.1.0", | ||
"description": "Automatically update a dynamic DNS registration based on a given network interface, such as VPN", | ||
"main": "src/app.js", | ||
"scripts": { | ||
"start": "node src/app.js", | ||
"install": "node src/install-service.js", | ||
"postinstall": "node src/install-service.js", | ||
"uninstall": "node src/uninstall-service.js", | ||
"show": "node src/show-interfaces.js" | ||
}, | ||
"bin": { | ||
"showip": "src/show-interfaces.js" | ||
}, | ||
"keywords": [ | ||
"dynamic", | ||
"dns", | ||
"dynamic-dns", | ||
"network-interface", | ||
"vpn" | ||
"dynamic dns", | ||
"vpn", | ||
"network", | ||
"network interface", | ||
"network interface monitor", | ||
"windows" | ||
], | ||
"author": "blu3mania <[email protected]>", | ||
"license": "Apache-2.0", | ||
|
@@ -33,13 +35,10 @@ | |
"win32" | ||
], | ||
"dependencies": { | ||
"chalk": "^4.1.0", | ||
"ffi-napi": "^3.1.0", | ||
"node-notifier": "^9.0.0", | ||
"node-windows": "^1.0.0-beta.5" | ||
"chalk": "^4.1.2", | ||
"ffi-napi": "^4.0.3", | ||
"node-notifier": "^10.0.1", | ||
"node-windows": "^1.0.0-beta.8" | ||
}, | ||
"devDependencies": {}, | ||
"resolutions": { | ||
"**/minimist": "^1.2.5" | ||
} | ||
"devDependencies": {} | ||
} |
Oops, something went wrong.