Zerene Stacker

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
stacker:softwaredownloads:currentbeta [2020/05/23 16:07]
rjlittlefield T2020-05-22-1330-beta
stacker:softwaredownloads:currentbeta [2026/03/01 23:29] (current)
rjlittlefield
Line 7: Line 7:
 If you have other security concerns about the beta installers, please see **[[stacker:​softwaredownloads:​howtovalidateadownload|How To Validate A Download]]**. If you have other security concerns about the beta installers, please see **[[stacker:​softwaredownloads:​howtovalidateadownload|How To Validate A Download]]**.
  
-Current beta is:+<​html>​ 
 +<​body>​
  
-  * **[[https://zerenesystems.com/stacker/​downloads/​betas/ZS-Win64-fullsetup-T2020-05-22-1330-beta.exe|64-bit Windows 10, 8, 7, Vista, or XP: ZS-Win64-fullsetup-T2020-05-22-1330-beta.exe]]** ​ \\ //Length 33,938,584 bytes \\ MD5 checksum 04edf0793c7e4933f2187d170a8397b6 \\ SHA-1 checksum 87bb055b455c0278de3fd085cd2e23b5adf013fc//+<div class="​card">​ 
 +    <​b>​System Compatibility Checks</​b>​ <​br>​ 
 +    <div class="​details"​ style="​padding-left20px;">​ 
 +        OS: <span id="​os-val">​...<​/span><​br>​ 
 +        Arch: <span id="​arch-val">​...<​/span><​br>​ 
 +        Bitness: <span id="​bit-val">​...</span><​br>​ 
 +        Renderer: <span id="​renderer">​...<​/span> 
 +        <div id="​status-badge" class="​bit-badge">​Detecting...</div> 
 +    </div> 
 +    <p id="​message"><​/p> 
 +</div>
  
-  * **[[https://​zerenesystems.com/​stacker/​downloads/​betas/​ZS-Win32-fullsetup-T2020-05-22-1330-beta.exe|32-bit Windows 10, 8, 7, Vista, or XP: ZS-Win32-fullsetup-T2020-05-22-1330-beta.exe]]** \\ //Length 30,903,976 bytes \\ MD5 checksum a4493ecff09d203c88127261e0c2ca97 \\ SHA-1 checksum 692d4e21b2f88d1cd0d10d97e3eeb378859d117d//​+<​script>​ 
 +async function detectSystem() { 
 +    let os = "​unknown";​ 
 +    let arch = "​unknown";​ 
 +    let bitness = "​unknown";​
  
-  * **[[https://​zerenesystems.com/​stacker/​downloads/​betas/​ZS-MacOSX-SA-T2020-05-22-1330-beta.zip|Mac OS X (newest): ​ ZS-MacOSX-SA-T2020-05-22-1330-beta.zip]]**,​ downloads as a .zip file that automatically expands into an application bundle named ZereneStacker (.app). ​ \\ This is the recommended bundle for modern Macs running macOS 10.14 or above. ​ It is self-contained and includes its own Java 12 runtime environment. \\ //Length 52,887,129 bytes \\ MD5 checksum 5b957e109cb83bbbfa16c165f65588d2 \\ SHA-1 checksum 08c22ac226d282d192307891a043e9e7ddd9f6ce//​+    const uad = navigator.userAgentData;​
  
-  * **[[https://zerenesystems.com/​stacker/​downloads/​betas/​ZS-MacOSXinterim-SA-T2020-05-22-1330-beta.zip|Mac OS X (interim):  ZS-MacOSXinterim-SA-T2020-05-22-1330-beta.zip]]**, downloads as a .zip file that automatically expands into an application bundle named ZereneStacker ​(.app).  \\ This bundle is suitable for Macs running macOS 10.9 through 10.14 It is self-contained and includes its own Java 12 runtime environment\\ //Length 52,332,232 bytes \\ MD5 checksum 328ea3c844729dcac90de4a7b541a3ff \\ SHA-1 checksum 5a06ca93ba43e51c06785c85469cc7edc929b7c0//​+    ​// --- STEP 1: Attempt Modern API --- 
 +    if (uad
 +        // High entropy request 
 +        try { 
 +            const hints = await uad.getHighEntropyValues(["​architecture",​ "​bitness",​ "​platform"​]); 
 +            os = (hints.platform || ""​).toLowerCase();​ 
 +            arch = (hints.architecture || ""​).toLowerCase();​ 
 +            bitness = (hints.bitness || ""​).toLowerCase();​ 
 +        } catch (e) { 
 +            ​// If the promise failswe fall through to STEP 2 
 +        }
  
-  * **[[https://zerenesystems.com/​stacker/​downloads/​betas/​ZS-MacOSXold-SA-T2020-05-22-1330-beta.zip|Mac ​OS (old):  ZS-MacOSXold-SA-T2020-05-22-1330-beta.zip]]**,​ downloads as an application bundle named ZereneStacker ​(.app).  \\ This bundle is not self-contained. ​ It requires a Java runtime environment installed by Apple, and will prompt for installation of Java if one is not already installed. ​ It runs as 64-bit where the processor and operating system support it, and as 32-bit otherwise. \\ //Length 8,604,745 bytes \\ MD5 checksum adb8165f81b18f8780ebea15f2542ea2 \\ SHA-1 checksum 9a689529f774cb1c26ffcc3c520c7852681b3157//​+        ​// Basic platform check if the promise didn't give us the OS 
 +        if (os === "​unknown"​ || os === ""​
 +            os = (uad.platform || ""​).toLowerCase();​ 
 +        } 
 +    }
  
-  * **[[https://​zerenesystems.com/​stacker/​downloads/betas/ZS-Linux-Intel-64bit-T2020-05-22-1330-beta.zip|64-bit Linux (Intel): ZS-Linux-Intel-64bit-T2020-05-22-1330-beta.zip]]** ​ \\ See [[:​stacker:​docs:​Linux Installation Instructions|Linux Installation Instructions]] for details \\ //Length 56,303,234 bytes \\ MD5 checksum aebca7a5d94db6c6f198002440ad3d40 \\ SHA-1 checksum c37449f32306f0c5a0acbcc394d4fadf36a7c7ee//​+    ​// --- STEP 2: The "​Waterfall"​ Fallback (Safari, Firefox, or API Failure) ​--- 
 +    const ua = navigator.userAgent.toLowerCase()
 +    const platform = navigator.platform.toLowerCase();​
  
-  * **[[https://zerenesystems.com/​stacker/​downloads/​betas/​ZS-Linux-i386-32bit-T2020-05-22-1330-beta.zip|32-bit Linux (Intel): ZS-Linux-i386-32bit-T2020-05-22-1330-beta.zip]]** ​ \\ See [[:​stacker:​docs:​Linux Installation Instructions|Linux Installation Instructions]] for details. ​ \\ //Length 87,610,760 bytes \\ MD5 checksum c9a336409839c1ec227a433f9bea9bdb \\ SHA-1 checksum 1d1234d8198a877fb7e13a42b95d7b5fbefe7bcc//​+    ​// Fix OS if still unknown 
 +    if (os === "​unknown"​ || os === ""​) { 
 +        if (ua.includes("​win"​)) os = "​windows";​ 
 +        else if (ua.includes("​mac"​)) os = "​macos";​ 
 +        else if (ua.includes("​linux"​)) os = "​linux";​ 
 +    }
  
 +    // Fix Bitness & Arch if still unknown
 +    if (bitness === "​unknown"​ || bitness === ""​) {
 +        // 64-bit markers
 +        if (/​\b(x86_64|x64|amd64|win64|wow64|arm64|aarch64)\b/​.test(ua) ||
 +            platform.includes("​win64"​) || platform.includes("​x64"​)) {
 +            bitness = "​64";​
 +            arch = (ua.includes("​arm"​) || ua.includes("​aarch64"​)) ? "​arm"​ : "​x86";​
 +        }
 +        // 32-bit markers
 +        else if (/​\b(i386|i686|win32)\b/​.test(ua) || platform.includes("​win32"​)) {
 +            bitness = "​32";​
 +            arch = "​x86";​
 +        }
 +    }
  
-**Note:** On Macintosh and Linux, if you already have Zerene Stacker installed and are downloading a new version to update it, then you need to manually move the old version to trash, and move or rename ​the new version to replace itOtherwise both versions will continue to be available, and you will run whichever one you happen to click on For further information,​ see the **[[stacker:​docs:​faqlist|FAQS]]** on "Installing and Updating"​. ​ On Macwhen trashing out the old version, do __**NOT**__ allow any third party uninstaller ​or cleanup applications like "AppCleaner" to run.  In their enthusiasm to eliminate files that they think are not used, they'​re likely to also delete files you really do need, like your license key and Zerene Stacker configuration files.+    // High-accuracy fallback for Safari on M-series: 
 +    // We check for the presence of the M-series GPU "​fingerprint"​ 
 +    // by creating a tiny WebGL context. 
 +    try { 
 +        const canvas = document.createElement('​canvas'​);​ 
 +        const gl = canvas.getContext('​webgl'​);​ 
 +        const debugInfo = gl.getExtension('​WEBGL_debug_renderer_info'​);​ 
 +        const renderer = gl.getParameter(debugInfo.UNMASKED_RENDERER_WEBGL);​ 
 +        document.getElementById('​renderer'​).innerText = "" ​+ renderer; 
 +        if (renderer.includes('​Apple'​)) { 
 +            bitness = "​64";​ 
 +            arch = "​arm";​ 
 +        } 
 +    } catch (e) { 
 +        // If WebGL failswe default to Intel for safety ​or show a choice 
 +    } 
 +     
 +        // --- STEP 3: Final Normalization --- 
 +    // Map "windows"​ or "win32" to your "​windows"​ flavor 
 +    if (os.includes("​win"​)) os = "​windows";​ 
 +    if (os.includes("​mac"​)) os = "​macos";​
  
-**Improvements**+    // Defaulting logic for your "Crazy Edge Case" (32-bit Linux on 64-bit hardware) 
 +    // If the UA says i386/i686 and NOT x86_64, force 32-bit. 
 +    if (os === "​linux"​ && /​i386|i686/​.test(ua) && !/​x86_64|amd64/​.test(ua)) { 
 +        bitness = "​32";​ 
 +    }
  
-Compared to the previous beta T2020-04-04-1104-betathis T2020-05-22-1330-beta contains the following improvements:​+    return { osarch, bitness }; 
 +
 +async function run() { 
 +    const sys = await detectSystem();​ 
 +    const badge = document.getElementById('​status-badge'​);​ 
 +    const msg = document.getElementById('​message'​);​
  
-  * Added ability to rename entries in the Input Files and Output Images lists (via right-click or alt-click on list entry) +    document.getElementById('os-val').innerText = sys.os.toUpperCase();​ 
-  * Batch mode +    ​document.getElementById('​arch-val'​).innerText = sys.arch; 
-    * Sort folders & projects by name when dragged or pasted into Batch Queue dialog. +    ​document.getElementById('​bit-val'​).innerText = sys.bitness + "​-bit";​
-    * Added explanatory comment at Options > Preferences > Slabbing+
-    ​* Added explicit Align All Frames as first task when slabbing+
-    ​* Keep "Save in designated folder"​ options enabled even when no folder specified yet. +
-  * Bug fix: Options > Preferences > Resets > "to factory settings"​ would sometimes fail to remove the configuration file. +
-  * License agreement: shortened and simplified treatment of embedded components.+
  
 +    ​
 +    ​
 +    if (sys.bitness === "​64"​) {
 +        badge.innerText = "​COMPATIBLE";​
 +        badge.className = "​bit-badge valid";​
 +        msg.innerText = `You can download the 64-bit ${sys.os} installer.`;​
 +    } else if (sys.bitness === "​32"​) {
 +        badge.innerText = "NOT COMPATIBLE";​
 +        badge.className = "​bit-badge invalid";​
 +        msg.innerText = "​Sorry,​ this software requires a 64-bit operating system.";​
 +    } else {
 +        badge.innerText = "​UNKNOWN";​
 +        badge.className = "​bit-badge";​
 +        msg.innerText = "We couldn'​t verify your system bitness. Please choose manually.";​
 +    }
 +    ​
 +    if (sys.os === "​windows"​ && sys.arch === "​arm"​ && sys.bitness === "​64"​) {
 +        msg.innerHTML = "You can download the <​b>​64-bit ARM Windows</​b>​ installer.";​
 +    }
 +    if (sys.os === "​windows"​ && sys.arch === "​x86"​ && sys.bitness === "​64"​) {
 +        msg.innerHTML = "You can download the <​b>​64-bit Windows</​b>​ installer.";​
 +    }
 +    if (sys.os === "​macos"​ && sys.arch === "​x86"​ && sys.bitness === "​64"​) {
 +        msg.innerHTML = "You can download the <​b>​macOS (Intel cpu)</​b>​ installer.";​
 +    }
 +    if (sys.os === "​macos"​ && sys.arch === "​arm"​ && sys.bitness === "​64"​) {
 +        msg.innerHTML = "You can download the <​b>​macOS (M-series cpu)</​b>​ installer.";​
 +    }
 +    if (sys.os === "​linux"​ && sys.arch === "​arm"​ && sys.bitness === "​64"​) {
 +        msg.innerHTML = "You can download the <​b>​64-bit Linux (ARM architecture)</​b>​ installer.";​
 +    }
 +    if (sys.os === "​linux"​ && sys.arch === "​x86"​ && sys.bitness === "​64"​) {
 +        msg.innerHTML = "You can download the <​b>​64-bit Linux (Intel compatible)</​b>​ installer.";​
 +    }
  
-Compared to the most recent production version T2019-10-07-1410,​ this T2020-05-22-1330-beta contains the following improvements:​+}
  
-  * Added ability to have dust/defect mask during stacking. ​(Specify at Options > Preferences > Preprocessing. \\ For more info see [[https://www.photomacrography.net/forum/​viewtopic.php?​t=41343]] .+run()
 +</script>​ 
 +</body> 
 +</html>
  
-  * Added Batch > Slabbing... capability. \\ For more info see [[https://​www.photomacrography.net/​forum/​viewtopic.php?​t=41356]] . 
-    ​ 
-  * Added "​Resets"​ panel to Options > Preferences. 
  
-  * Changed default memory allocation to use up to 1/2 of physical memory.+Current beta is:
  
-  * User interface +  * **[[https://​zerenesystems.com/​stacker/​downloads/​betas/​ZS-Win64-fullsetup-T2026-02-27-1525-beta.exe|64-bit Windows 1110: ZS-Win64-fullsetup-T2026-02-27-1525-beta.exe]]**  \\ This installer is for most Windows computerswhich still run Intel and AMD processors (actually anything Intel-compatible) It will also run on Windows 11 ARM computers in emulation mode.\\ //Length 34621544 bytes \\ MD5 checksum a24a224c59f9e329bf18127ebdef4011 \\ SHA-1 checksum aa0c61420cccb5371ec6bb0e5e24cadf8ab08ed0//​
-    ​Added {numinp} tag in file save templatenumber of input files selected for stack output. +
-    ​Added {fntodot} tag in file save template, file name of first file selectedto first dot. +
-    * Reordered main menu bar to better match workflow: File, Stack, Edit versus File, Edit, Stack.+
  
-  * Configuration +  * **[[https://​zerenesystems.com/​stacker/​downloads/​betas/​ZS-WinARM64-fullsetup-T2026-02-27-1525-beta.exe|64-bit ARM Windows 11: ZS-WinARM64-fullsetup-T2026-02-27-1525-beta.exe]]** ​ \\ This installer is specific for Windows 11 computers with ARM processors, such as Qualcomm Snapdragon. ​ It runs in ARM-native mode and will not run on Intel and AMD processors With ARM processors, this version is significantly faster than running the Intel version in emulation mode.\\ //Length 33250160 bytes \\ MD5 checksum 0d64e124d72e0b290aa0de7dc8fdb4d7 \\ SHA-1 checksum e0ba92192afbf7a8d10350c50bab6b31596c5f98//​
-    ​Setting for Options > Preferences > Multiprocessing > number of cores/processors is now preserved from exit to next launch. +
-    * Added command line option "-suppressSaveProperties"​ to prevent writing of zerenstk.cfg on exit.+
  
-  * StackShot +  * **[[https://​zerenesystems.com/​stacker/​downloads/​betas/​ZS-macOS-AppleSilicon-SA-T2026-02-27-1525-beta.zip|macOS (M-series cpu):  ZS-macOS-AppleSilicon-SA-T2026-02-27-1525-beta.zip]]**downloads as a .zip file that automatically expands into an application bundle named ZereneStacker (.app). ​ \\ This is the recommended bundle for modern Macs with an "Apple silicon"​ M-series cpu (ARM architecture) It is self-contained and includes its own ARM-native Java 25 runtime environment ​Rosetta is required for the launch program and a few helper programs -- so macOS will report the package as "​Intel"​ -- but all the heavy computation runs ARM-native.\\ //Length 48,889,306 bytes \\ MD5 checksum 05ccf24c34684cac8274e6927b2a7fcc \\ SHA-1 checksum d1151cd4ba263eca4bd3fc0a0cf59504dc61e3f3//​
-    ​added configuration file parameters AcquisitionSequencer.HoldingTorque{Low,High}Precision,​ each with legal values 0-10. +
-    * StackShot controller window bounds are now retained across exit/​relaunch.+
  
-Compared to the still heavily used production version T2018-07-19-1515, this beta also contains the following improvements:+  * **[[https://​zerenesystems.com/​stacker/​downloads/​betas/​ZS-macOS-Intel-SA-T2026-02-27-1525-beta.zip|macOS (Intel cpu) ​ZS-macOS-Intel-SA-T2026-02-27-1525-beta.zip]]**,​ downloads as a .zip file that automatically expands into an application bundle named ZereneStacker (.app). ​ \\ This is the recommended bundle for modern Intel Macs running macOS 10.14 or above. ​ It is self-contained and includes its own Java 25 runtime environment. \\ //Length 50,312,091 bytes \\ MD5 checksum 51fab45578f685c27a247251dbf8191f \\ SHA-1 checksum c6aee919e67837c4eecf49122f9239780735e449//​
  
-  * User interfaceAdded {project} tag in depth maps folder path to allow project-relative placement. +  * **[[https://​zerenesystems.com/​stacker/​downloads/​betas/​ZS-Linux-Intel-64bit-T2026-02-27-1525-beta.zip|64-bit Linux (Intel compatible):​ ZS-Linux-Intel-64bit-T2026-02-27-1525-beta.zip]]**  \\ See [[:stacker:​docs:​Linux Installation Instructions|Linux Installation Instructions]] for details \\ //Length 53,362,937 bytes \\ MD5 checksum 4f33fe82abe26bbbebb84626d1997d75 \\ SHA-1 checksum e3b4fcb40f37bd08d3a3a6d3d8836379ac1d7502//​
-     +
-  ​Bug fix"Fit window"​ was not being preserved as an image scale from exit to next launch.+
  
-  * Macintosh  +  * **[[https://​zerenesystems.com/​stacker/​downloads/​betas/​ZS-Linux-ARM-64bit-T2026-02-27-1525-beta.zip|64-bit Linux (ARM architecture): ZS-Linux-ARM-64bit-T2026-02-27-1525-beta.zip]]** ​ \\ See [[:​stacker:​docs:​Linux Installation Instructions|Linux Installation Instructions]] ​for details \\ //Length 52,792,657 bytes \\ MD5 checksum 89f081830939edde735443cbf071ef97 \\ SHA-1 checksum b62a4496138562c4417fd528650fd145082b959d//​
-    ​Compatibility with macOS 10.15 "​Catalina"​ +
-      ​Notarized the standard ​.zip bundle so as to avoid issues with Gatekeeper. +
-      * Built a notarized .pkg installer to automatically install in Applications ​(available only by request) +
-    * Switched to Java Cross-Platform look-and-feel, for improved performance.+
  
-  * User interface 
-    * Allow .zsy files to appear in Input Files list. 
-    * Added configuration file option to suppress warning about "not yet completely aligned",​ \\ UIStyle.SuppressNotCompletelyAlignedWarning=true 
  
-  * Bug fixes 
-    * Avoid invalid index using Nearest Neighbor interpolator in "edge streak"​ areas. 
-    * Automatically fall back to external TIFF reader in case of "​Unexpected count..."​ and related javax.imageio.IIOExceptions. 
-    * Attempt to prevent host operating system from deleting "​temp"​ projects that are actually in use. 
-    * Avoid exceptions caused by switching source files while canceling or committing retouching. 
-    * Avoid exception caused by edit-undo while canceling or committing retouching. 
-    * StackShot 3x, activate Shutter 2 in addition to Shutter 1. 
  
-  ​Embedded ​JRE +**Note 1:** This and all future versions of Zerene Stacker will require a 64-bit processor and relatively modern operating system. ​ Support has been dropped for 32-bit processors, for Windows XP, 7, and 8, and for MacOS 13 and lower. 
-    * Upgraded ​to AdoptOpenJDK ​JRE 12.0.1+12 on all 64-bit ​platforms ​and 32-bit Windows.+ 
 +**Note 2:** On Macintosh and Linux, if you already have Zerene Stacker installed and are downloading a new version to update it, then you need to manually move the old version to trash, and move or rename the new version to replace it. Otherwise both versions will continue to be available, and you will run whichever one you happen to click on.  For further information,​ see the **[[stacker:​docs:​faqlist|FAQS]]** on "​Installing and Updating"​. ​ On Mac, when trashing out the old version, do __**NOT**__ allow any third party uninstaller or cleanup applications like "​AppCleaner"​ to run.  In their enthusiasm to eliminate files that they think are not used, they'​re likely to also delete files you really do need, like your license key and Zerene Stacker configuration files. 
 + 
 +**Improvements** 
 + 
 +Compared to the current production version T2024-11-18-1210 and its corresponding T2024-11-18-1210-beta,​ this new T2026-02-27-1525-beta incorporates the following improvements:​ 
 + 
 +  * Optimization:​ Align All Frames is now very fast if no adjustments are selected. 
 +  * Lightroom plugin: allow user selection of any color profile in Lightroom. 
 +  * Windows on ARM, added installer to provide native ARM JRE
 +  * Screen preview caching, added options to allow TIFF, high quality JPEG, and deletion of screen preview cache files. 
 +  * Debugging: ​ 
 +    * Force JVM crash logs into application data folder (hs_err_pid*.log). 
 +  * GUI conventions:​  
 +    * Batch dialog, apply changes of output image disposition ​to all tasks in the batch. 
 +    * Registration dialog, automatically resize to fit wide license keys. 
 +    * Stereo calculator: keep angle and shift consistent (recalculate when other is changed). 
 +  * Bug fixes: 
 +    * Allow Windows abcdef~1 short form of long pathname component, when copying metadata. 
 +    * Lightroom plugin manager, consistently diagnose failure to update script files. 
 +    * Be sure warning dialog is visible, even if opened during StackShot initialization. 
 +    * Avoid exception due to empty string in calculator fields on save/​load. 
 +    * Properly handle file saving parameters on explicit save/load of preferences.  
 +    * Interpret values > 10 for pixel and font scaling as percentage. 
 +    * Log detailed diagnostics when project save by copying fails. 
 +  * JRE and libraries:​ 
 +    * Updated to Java 25.0.1 on all platforms
 +    * No further use of Java Advanced Imaging library. ​ All image I/O is now done with built-in JRE methods. 
 +    * Updated to current metadata-extractor (2.19.0). 
 +    * Updated to current jdom (2.0.6.1) 
 +  ​
     ​     ​
 +\\
 **Please immediately inform [[support@zerenesystems.com]] if you encounter any difficulties or odd behavior with this beta version. ​ Be sure to send a console log if appropriate -- instructions for that are provided __[[:​stacker:​docs:​faqlist#​i_need_to_report_a_problem_are_there_log_files_i_can_send_you|HERE]]__.** **Please immediately inform [[support@zerenesystems.com]] if you encounter any difficulties or odd behavior with this beta version. ​ Be sure to send a console log if appropriate -- instructions for that are provided __[[:​stacker:​docs:​faqlist#​i_need_to_report_a_problem_are_there_log_files_i_can_send_you|HERE]]__.**
  
-A complete list of modifications can be read in the **[[:​stacker:​docs:​modificationhistory|Modification History]]**.+Previous public beta was: 
 + 
 +  * **[[https://​zerenesystems.com/​stacker/​downloads/​betas/​ZS-Win64-fullsetup-T2024-11-18-1210-beta.exe|64-bit Windows 11, 10, 8, 7: ZS-Win64-fullsetup-T2024-11-18-1210-beta.exe]]**  \\ //Length 37662312 bytes \\ MD5 checksum c024fca70c72e5794ff69f5229ed3050 \\ SHA-1 checksum e06fb789923d192848ef0d90f41d7b56948a0e5c//​
  
-Previous ​beta was:+  * **[[https://​zerenesystems.com/​stacker/​downloads/​betas/​ZS-Win32-fullsetup-T2024-11-18-1210-beta.exe|32-bit Windows 11, 10, 8, 7ZS-Win32-fullsetup-T2024-11-18-1210-beta.exe]]** \\ //Length 53357232 bytes \\ MD5 checksum bc747d36819feb28360bc68a07a554b6 \\ SHA-1 checksum 4270410b76a8fd8f31908f1386b5ff5437e2abec//​
  
-  * **[[https://​zerenesystems.com/​stacker/​downloads/​betas/​ZS-Win64-fullsetup-T2020-04-04-1104-beta.exe|64-bit Windows 10, 8, 7, Vista, or XP: ZS-Win64-fullsetup-T2020-04-04-1104-beta.exe]]**  \\ //​Length ​33,966,712 bytes \\ MD5 checksum ​5ca229f836f56d1dcea562e3805c550e ​\\ SHA-1 checksum ​8f0ea79d2a293579d01d0db4445b06021a5ceb38//+  * **[[https://​zerenesystems.com/​stacker/​downloads/​betas/​ZS-MacOSX-SA-T2024-11-18-1210-beta.zip|macOS (Intel cpu) ZS-MacOSX-SA-T2024-11-18-1210-beta.zip]]**, downloads as a .zip file that automatically expands into an application bundle named ZereneStacker (.app). ​ \\ This is the recommended bundle for modern Intel Macs running macOS 10.14 or above. ​ It is self-contained and includes its own Java 17 runtime environment. ​\\ //​Length ​49,000,398 bytes \\ MD5 checksum ​154cc9fae174f9a7a1ec706273123ac1 ​\\ SHA-1 checksum ​4b5d3f0f68a077367f15d25661e2a7d347649be6//
  
-  * **[[https://​zerenesystems.com/​stacker/​downloads/​betas/​ZS-Win32-fullsetup-T2020-04-04-1104-beta.exe|32-bit Windows 10, 8, 7, Vista, or XP: ZS-Win32-fullsetup-T2020-04-04-1104-beta.exe]]** \\ //​Length ​30,929,544 bytes \\ MD5 checksum ​3f60966fe19f4519808772991ade3896 ​\\ SHA-1 checksum ​5e7f76768967662b69b0c20d276116f5a557a39c//+  * **[[https://​zerenesystems.com/​stacker/​downloads/​betas/​ZS-MacOSX-ARM-SA-T2024-11-18-1210-beta.zip|macOS (M-series ARM cpu) ZS-MacOSX-ARM-SA-T2024-11-18-1210-beta.zip]]**, downloads as a .zip file that automatically expands into an application bundle named ZereneStacker (.app). ​ \\ This is the recommended bundle for modern Macs with an "Apple silicon"​ M-series cpu (ARM architecture). ​ It is self-contained and includes its own ARM-native Java 17 runtime environment. ​ Rosetta is required for the launch program and a few helper programs -- so macOS will report the package as "​Intel"​ -- but all the heavy computation runs ARM-native.\\ //​Length ​47,802,494 bytes \\ MD5 checksum ​ec597dc8c6be5be3d147a3f8b8c9eb32 ​\\ SHA-1 checksum ​04fd1cd8e1d15f1cb4ea48c03d44e1ca600b33b6//
  
-  * **[[https://​zerenesystems.com/​stacker/​downloads/​betas/​ZS-MacOSX-SA-T2020-04-04-1104-beta.zip|Mac OS X (newest):  ZS-MacOSX-SA-T2020-04-04-1104-beta.zip]]** \\ //​Length ​52,893,567 bytes \\ MD5 checksum ​3d7ab767f7d50f90f959557267127851 ​\\ SHA-1 checksum ​a110f1209e91b1e4a6a0de5739c9d66bb653fe39//+  * **[[https://​zerenesystems.com/​stacker/​downloads/​betas/​ZS-MacOSXinterim-SA-T2024-11-18-1210-beta.zip|macOS (interim):  ZS-MacOSXinterim-SA-T2024-11-18-1210-beta.zip]]**, downloads as a .zip file that automatically expands into an application bundle named ZereneStacker (.app). ​ \\ This bundle is suitable for Macs running macOS 10.9 through 10.14. ​ It is self-contained and includes its own Java runtime environment. ​\\ //​Length ​53,141,913 bytes \\ MD5 checksum ​6498d30e9dc6d2d2aa64e8296acecf72 ​\\ SHA-1 checksum ​7776d741c470df89dcba17a51134b4fec40e19d6//
  
-  * **[[https://​zerenesystems.com/​stacker/​downloads/​betas/​ZS-MacOSXinterim-SA-T2020-04-04-1104-beta.zip|Mac OS X (interim):  ZS-MacOSXinterim-SA-T2020-04-04-1104-beta.zip]]** \\ //​Length ​52,338,802 bytes \\ MD5 checksum ​c95e482fd33f341063c08970d5ba9456 ​\\ SHA-1 checksum ​f48252b6030572a3cef9967a3a47df6971720724//+  * **[[https://​zerenesystems.com/​stacker/​downloads/​betas/​ZS-MacOSXold-SA-T2024-11-18-1210-beta.zip|Mac OS X (old):  ZS-MacOSXold-SA-T2024-11-18-1210-beta.zip]]**, downloads as an application bundle named ZereneStacker (.app). ​ \\ This bundle is not self-contained. ​ It requires a Java runtime environment installed by Apple, and will prompt for installation of Java if one is not already installed. ​ It runs as 64-bit where the processor and operating system support it, and as 32-bit otherwise. ​\\ //​Length ​9,263,520 bytes \\ MD5 checksum ​1be0c1b7817829df4cc2d0741cd1f6ee ​\\ SHA-1 checksum ​150722b9330be5b8a6daed9988c8b61835b24c4c//
  
-  * **[[https://​zerenesystems.com/​stacker/​downloads/​betas/​ZS-MacOSXold-SA-T2020-04-04-1104-beta.zip|Mac OS X (old):  ZS-MacOSXold-SA-T2020-04-04-1104-beta.zip]]**, downloads as an application bundle named ZereneStacker (.app). ​ ​\\ ​This bundle is not self-contained. ​ It requires a Java runtime environment installed by Apple, and will prompt ​for installation of Java if one is not already installed.  ​It runs as 64-bit where the processor and operating system support it, and as 32-bit otherwise. ​\\ //​Length ​8,611,275 bytes \\ MD5 checksum ​4003d81b71af97242084898cbb39e084 ​\\ SHA-1 checksum ​969a596be3622570147f34adf095ed4791309bc5//+  * **[[https://​zerenesystems.com/​stacker/​downloads/​betas/​ZS-Linux-Intel-64bit-T2024-11-18-1210-beta.zip|64-bit Linux (Intel compatible): ZS-Linux-Intel-64bit-T2024-11-18-1210-beta.zip]]** ​ \\ See [[:​stacker:​docs:​Linux Installation Instructions|Linux Installation Instructions]] ​for details.  \\ //​Length ​53,192,661 bytes \\ MD5 checksum ​8164888d40b3ca141e59fd61c1723a3c ​\\ SHA-1 checksum ​2216537b588a9208200d22cad2113a525492534e//
  
-  * **[[https://​zerenesystems.com/​stacker/​downloads/​betas/​ZS-Linux-Intel-64bit-T2020-04-04-1104-beta.zip|64-bit Linux (Intel): ZS-Linux-Intel-64bit-T2020-04-04-1104-beta.zip]]** ​ \\ //​Length ​56,309,824 bytes \\ MD5 checksum ​1b0789551dfc309b90e10b1577f44567 ​\\ SHA-1 checksum ​1d7f18c001171490f4422049c321cd68dd232035//+  * **[[https://​zerenesystems.com/​stacker/​downloads/​betas/​ZS-Linux-i386-32bit-T2024-11-18-1210-beta.zip|32-bit Linux (Intel ​compatible): ZS-Linux-i386-32bit-T2024-11-18-1210-beta.zip]]** ​ \\ See [[:​stacker:​docs:​Linux Installation Instructions|Linux Installation Instructions]] for details. ​ \\ //​Length ​48,448,762 bytes \\ MD5 checksum ​bcf4c563953dcf0ae4a03513bf93b204 ​\\ SHA-1 checksum ​50fe0fdb746ec235d247745001738d02e00e7e52//
  
-  * **[[https://​zerenesystems.com/​stacker/​downloads/​betas/​ZS-Linux-i386-32bit-T2020-04-04-1104-beta.zip|32-bit Linux (Intel): ZS-Linux-i386-32bit-T2020-04-04-1104-beta.zip]]** ​ \\ //Length 87,617,350 bytes \\ MD5 checksum 77ad752dd18d7b35552bcd321b6e97e6 \\ SHA-1 checksum df9785c6d3ba57087a3935caeedce651d0e6cfea//​ 
  
  
stacker/softwaredownloads/currentbeta.1590250064.txt.gz · Last modified: 2020/05/23 16:07 by rjlittlefield
Copyright 2009-2026, Zerene Systems LLC, all rights reserved.