forked from sindresorhus/create-dmg
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
6.0.1
- Loading branch information
Showing
30 changed files
with
447 additions
and
130 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: CI | ||
on: | ||
- push | ||
- pull_request | ||
jobs: | ||
test: | ||
name: Node.js ${{ matrix.node-version }} | ||
runs-on: macos-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
node-version: | ||
- 18 | ||
- 16 | ||
- 14 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- run: npm install | ||
- run: npm test |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
data 'TMPL' (128, "LPic") { | ||
$"1344 6566 6175 6C74 204C 616E 6775 6167" /* .Default Languag */ | ||
$"6520 4944 4457 5244 0543 6F75 6E74 4F43" /* e IDDWRD.CountOC */ | ||
$"4E54 042A 2A2A 2A4C 5354 430B 7379 7320" /* NT.****LSTC.sys */ | ||
$"6C61 6E67 2049 4444 5752 441E 6C6F 6361" /* lang IDDWRD.loca */ | ||
$"6C20 7265 7320 4944 2028 6F66 6673 6574" /* l res ID (offset */ | ||
$"2066 726F 6D20 3530 3030 4457 5244 1032" /* from 5000DWRD.2 */ | ||
$"2D62 7974 6520 6C61 6E67 7561 6765 3F44" /* -byte language?D */ | ||
$"5752 4404 2A2A 2A2A 4C53 5445" /* WRD.****LSTE */ | ||
}; | ||
|
||
data 'LPic' (5000) { | ||
$"0000 0001 0000 0000 0000" | ||
}; | ||
|
||
data 'STR#' (5000, "English") { | ||
$"0006 0745 6E67 6C69 7368 0541 6772 6565" /* ...English.Agree */ | ||
$"0844 6973 6167 7265 6505 5072 696E 7407" /* .Disagree.Print. */ | ||
$"5361 7665 2E2E 2E7B 4966 2079 6F75 2061" /* Save...{If you a */ | ||
$"6772 6565 2077 6974 6820 7468 6520 7465" /* gree with the te */ | ||
$"726D 7320 6F66 2074 6869 7320 6C69 6365" /* rms of this lice */ | ||
$"6E73 652C 2070 7265 7373 2022 4167 7265" /* nse, press "Agre */ | ||
$"6522 2074 6F20 696E 7374 616C 6C20 7468" /* e" to install th */ | ||
$"6520 736F 6674 7761 7265 2E20 2049 6620" /* e software. If */ | ||
$"796F 7520 646F 206E 6F74 2061 6772 6565" /* you do not agree */ | ||
$"2C20 7072 6573 7320 2244 6973 6167 7265" /* , press "Disagre */ | ||
$"6522 2E" /* e". */ | ||
}; | ||
|
||
data 'styl' (5000, "English") { | ||
$"0001 0000 0000 000E 0011 0015 0000 000C" | ||
$"0000 0000 0000" | ||
}; |
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
Oops, something went wrong.