darwin-arm refresh

This commit is contained in:
SheetJS 2024-05-23 02:09:51 -04:00
parent 349cc16819
commit 6e7c3e85dc
3 changed files with 16 additions and 6 deletions

@ -409,7 +409,9 @@ This demo was tested in the following environments:
|:-------------|:----------|:-----------|
| `darwin-x64` | `2.1.1` | 2024-03-15 |
| `win10-x64` | `2.1.1` | 2024-03-24 |
| `win11-x64` | `2.1.1` | 2024-05-22 |
| `linux-x64` | `2.1.1` | 2024-04-25 |
:::
1) [Download and extract PhantomJS](https://phantomjs.org/download.html)

@ -160,6 +160,7 @@ This demo was tested in the following deployments:
|:-------------|:----------|:-----------|
| `darwin-x64` | `20.11.1` | 2024-03-17 |
| `win10-x64` | `20.12.0` | 2024-03-26 |
| `win11-x64` | `20.13.1` | 2024-05-22 |
| `linux-x64` | `20.11.1` | 2024-03-18 |
:::
@ -290,7 +291,7 @@ Application node.exe 20.12.0.0 C:
Copy the program (listed in the "Source" column) to `sheet2csv.exe`:
```powershell
PS C:\sheetjs-sea> copy "C:\Program Files\nodejs\node.exe" sheet2csv.exe
copy "C:\Program Files\nodejs\node.exe" sheet2csv.exe
```
9) Remove the code signature.
@ -299,6 +300,12 @@ PS C:\sheetjs-sea> copy "C:\Program Files\nodejs\node.exe" sheet2csv.exe
signtool remove /s .\sheet2csv.exe
```
:::info pass
`signtool` is included in the Windows SDK[^4].
:::
</TabItem>
<TabItem value="linux-x64" label="Linux">
@ -416,3 +423,4 @@ This error is expected.
[^1]: See ["Single Executable Applications"](https://nodejs.org/api/single-executable-applications.html) in the NodeJS documentation.
[^2]: See [`readFile` in "Reading Files"](/docs/api/parse-options)
[^3]: See [`sheet_to_csv` in "CSV and Text"](/docs/api/utilities/csv#delimiter-separated-output)
[^4]: See [Windows SDK](https://developer.microsoft.com/en-us/windows/downloads/windows-sdk/) in the Windows Dev Center documentation.

@ -44,7 +44,7 @@ These instructions were tested on the following platforms:
| Linux (Steam Deck Holo x64) | `linux-x64` | 2024-04-01 |
| Linux (Arch Linux AArch64) | `linux-arm` | 2024-05-10 |
| MacOS 14.4 (x64) | `darwin-x64` | 2024-04-04 |
| MacOS 14.1.2 (ARM64) | `darwin-arm` | 2023-12-01 |
| MacOS 14.5 (ARM64) | `darwin-arm` | 2024-05-23 |
| Windows 10 (x64) + WSL Ubuntu | `win10-x64` | 2024-04-04 |
| Windows 11 (x64) + WSL Ubuntu | `win11-x64` | 2024-05-10 |
| Windows 11 (ARM) + WSL Ubuntu | `win11-arm` | 2023-09-18 |
@ -409,10 +409,10 @@ sudo npm i -g mocha@2.5.3 voc @sheetjs/uglify-js
:::note Older Versions of Dependencies
Some of the dependencies are wildly out of date. While SheetJS aims to run in
older versions of NodeJS and browsers, some libraries have chosen to break
backwards compatibility. The specific versions are used because they are known
to work and known to produce consistent results.
Some of the dependencies are wildly out of date. While SheetJS libraries aim to
run in older versions of NodeJS and browsers, some libraries have opted to break
backwards compatibility. The specific versions are used because they are known
to work and known to produce consistent and reproducible results.
:::