Skip to content
This repository was archived by the owner on Feb 24, 2024. It is now read-only.

Commit ff9b17a

Browse files
committed
✨ StableBind v1.8.2
1 parent c33453a commit ff9b17a

5 files changed

Lines changed: 12 additions & 12 deletions

File tree

internal/announcement.json

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
11
{
2-
"number": "No.6 - UnstableBind",
2+
"number": "No.7 - UnstableBind",
33
"announcement": [
4-
"⚠️ Important",
5-
"UnstableBind will receive last update on Jan 1st 2023 UTC+0",
4+
"✨ StableBind - 1.8.2",
5+
"macOS ARM64 partial support (let the program run through Rosetta, but run the miner natively)",
6+
"",
7+
"✨ StableBind - 1.8.1",
8+
"Hotfixes",
69
"",
710
"✨ StableBind - 1.8.0",
811
"Switched to SSL connections for NiceHash pools. (not yet for Prohashing pools)",
912
"Added 3 new debug options. (Security protocol, UnstableBind Branch, Overview)",
1013
"Re-enabled Discord RPC.",
1114
"Better distinguish between SaladBind and UnstableBind/StableBind",
1215
"",
13-
"🔧 Under the hood",
14-
"DAG size will now regularly update weekly. See https://github.com/EvadeMaster/UnstableBind/wiki for update interval.",
15-
"SaladBind Wiki is now restored for historical purposes. See https://github.com/EvadeMaster/UnstableBind/wiki/FAQ now!",
16-
"",
1716
"✍️ Written by EvadeMaster, Repository maintained by EvadeMaster",
1817
"Branch: Vanilla (Short-Term-Support)"
1918
]

internal/changelog.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
"1.7.11 - UnstableBind, change the URL in FAQ/Troubleshooting guide to github",
1010
"1.7.12 - UnstableBind, Fix Updater on Linux, Fix annoucement fetching the wrong branch",
1111
"1.8.0 - UnstableBind, SSL Pools for NiceHash, 3 new debug options such as switching branch, legacy security connections.",
12-
"1.8.1 - UnstableBind, Hotfix No.1"
12+
"1.8.1 - UnstableBind, Hotfix No.1",
13+
"1.8.2 - UnstableBind, macOS ARM64 partial support (let the program run through Rosetta, but run the miner natively)"
1314
],
1415
"force": true,
1516
"next_version": "1.6.0",

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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "saladbind",
3-
"version": "1.8.1",
3+
"version": "1.8.2",
44
"description": "BIND-ing the good features from other projects together (and fucking nuking the bad ones)",
55
"main": "src/index.js",
66
"scripts": {

src/mining.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ async function continueMiner() {
134134
let temp2 = systemCache.graphics
135135
let userPlatform = temp.platform;
136136
if(userPlatform == "Windows") userPlatform = "win32";
137-
if(userPlatform == "darwin" && si.os(arch) == "arm64") userPlatform = "darwin-arm";
137+
if(userPlatform == "darwin" && si.os(arch) == "arm64") userPlatform = "darwin-arm64";
138138
let GPUs = [];
139139
for (let i = 0; i < temp2.controllers.length; i++) {
140140
let compatibleAlgos = []

0 commit comments

Comments
 (0)