-
-
Notifications
You must be signed in to change notification settings - Fork 64
nelson-np: Add version 1.16.0.5575 #505
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
SorYoshino
merged 7 commits into
ScoopInstaller:master
from
Nelson-numerical-software:master
Jan 17, 2026
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
d8eb949
nelson-np: v1.15.0.5475
Nelson-numerical-software f03bb5d
fix: autoupdate url
Nelson-numerical-software cff2d9d
fix: version
Nelson-numerical-software 304e8b3
fix: update nelson-np to version 1.16.0.5575 and improve installer sc…
Nelson-numerical-software d903b9b
fix: correct URLs in nelson-np.json for ARM64 architecture and autoup…
Nelson-numerical-software a8c2f84
nelson-np: Fix checkver & autoupdate, Simplify script logic
SorYoshino 2467762
nelson-np: Refine the (un)installation script logic
SorYoshino File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,50 @@ | ||
| { | ||
| "version": "1.16.0.5575", | ||
| "homepage": "https://nelson-lang.github.io/nelson-website/", | ||
| "description": "An open-source numerical computing language that provides engineers, scientists, and students with a powerful yet intuitive environment for technical computing.", | ||
| "license": { | ||
| "identifier": "LGPL-3.0-or-later", | ||
| "url": "https://github.com/nelson-lang/nelson/blob/HEAD/LICENSE" | ||
| }, | ||
| "architecture": { | ||
| "64bit": { | ||
| "url": "https://github.com/nelson-lang/nelson/releases/download/v1.16.0/Nelson-1.16.0.5575-x86-64.exe", | ||
| "hash": "539e5dc2e357543733a1371ccaf3b2ca1d03b57fddc94ae9e66c7890850e02cc" | ||
| }, | ||
| "arm64": { | ||
| "url": "https://github.com/nelson-lang/nelson/releases/download/v1.16.0/Nelson-1.16.0.5575-ARM64.exe", | ||
| "hash": "ee1042346a3c1ac06003313b83e794180509067c19bec6681e71486fd19d539f" | ||
| } | ||
| }, | ||
| "pre_install": "if (-not (is_admin)) { abort \"`n[ERROR] $app requires admin rights to $cmd.\" }", | ||
| "installer": { | ||
| "script": [ | ||
| "$args_list = @('/SP-', \"/DIR=$dir\", '/VERYSILENT', '/SUPPRESSMSGBOXES')", | ||
| "Start-Process -FilePath \"$dir\\$fname\" -ArgumentList $args_list -WindowStyle 'Hidden' -Wait", | ||
| "Remove-Item -Path \"$dir\\$fname\" -Force -ErrorAction SilentlyContinue" | ||
| ] | ||
| }, | ||
| "pre_uninstall": "if (-not (is_admin)) { abort \"`n[ERROR] $app requires admin rights to $cmd.\" }", | ||
| "uninstaller": { | ||
| "script": [ | ||
| "$args_list = @('/VERYSILENT', '/SUPPRESSMSGBOXES')", | ||
| "Start-Process -FilePath \"$dir\\unins000.exe\" -ArgumentList $args_list -WindowStyle 'Hidden' -Wait", | ||
| "Start-Sleep -Seconds 3" | ||
| ] | ||
| }, | ||
| "checkver": { | ||
| "url": "https://api.github.com/repositories/77338134/releases/latest", | ||
| "jsonpath": "$.assets[?(@.name =~ /Nelson/i)].browser_download_url", | ||
| "regex": "(?i)download/(?<tag>[^/]+)/Nelson-([\\d.]+)" | ||
| }, | ||
SorYoshino marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| "autoupdate": { | ||
| "architecture": { | ||
| "64bit": { | ||
| "url": "https://github.com/nelson-lang/nelson/releases/download/$matchTag/Nelson-$version-x86-64.exe" | ||
| }, | ||
| "arm64": { | ||
| "url": "https://github.com/nelson-lang/nelson/releases/download/$matchTag/Nelson-$version-ARM64.exe" | ||
| } | ||
| } | ||
| } | ||
| } | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.