A Mac command-line tool that automatically downloads macOS Installers / Firmwares.

Related tags

Command Line Mist
Overview

MIST - macOS Installer Super Tool

A Mac command-line tool that automatically downloads macOS Installers / Firmwares:

Apple

Intel

Features

  • List all available macOS Installers / Firmwares available for download:
    • Display names, versions, builds, sizes and release dates
    • Optionally export list as CSV, JSON, Property List or YAML
  • Download an available macOS Installer / Firmware:
    • For Intel based Macs:
      • Generate an Application Bundle (.app)
      • Generate a Disk Image (.dmg)
      • Generate a macOS Installer Package (.pkg)
        • Supports macOS Big Sur packages with a massive 12GB+ payload!
      • Optionally codesign Disk Images and macOS Installer Packages
      • Check for free space before attempting any downloads or installations
      • Optionally specify a custom catalog URL, allowing you to list and download macOS Installers from the following:
        • Customer Seed - AppleSeed Program
        • Developer Seed - Apple Developer Program
        • Public Seed - Apple Beta Software Program
    • For Apple Silicon Macs:
      • Download a Firmware Restore file (.ipsw)
      • Validates the SHA-1 checksum upon download

Usage

OVERVIEW: macOS Installer Super Tool.

Automatically download macOS Installers / Firmwares.

USAGE: mist <subcommand>

OPTIONS:
  -h, --help              Show help information.

SUBCOMMANDS:
  list                    List all macOS Installers / Firmwares available to download.
  download                Download a macOS Installer / Firmware.
  version                 Display the version of mist.

  See 'mist help 
   
    '
    for detailed help.

Examples

# List all available macOS Firmwares for Apple Silicon Macs:
mist list --platform "apple"

# List all available macOS Installers for Intel Macs:
mist list --platform "intel"

# List only macOS Big Sur Installers for Intel Macs:
mist list "macOS Big Sur" --platform "intel"

# List only the latest macOS Big Sur Installer for Intel Macs:
mist list "macOS Big Sur" --platform "intel" --latest

# List + Export macOS Installers to a CSV file:
mist list --export "/path/to/export.csv"

# List + Export macOS Installers to a JSON file:
mist list --export "/path/to/export.json"

# List + Export macOS Installers to a Property List:
mist list --export "/path/to/export.plist"

# List + Export macOS Installers to a YAML file:
mist list --export "/path/to/export.yaml"

# Download the latest macOS Big Sur Firmware for
# Apple Silicon Macs, with a custom name:
mist download "Big Sur" --platform "apple" --firmware-name "Install %NAME %VERSION%-%BUILD%.ipsw"

# Download the latest macOS Big Sur Installer for Intel Macs:
mist download "Big Sur" --platform "intel" --application

# Download a specific macOS Installer version for Intel Macs:
mist download "11.4" --application

# Download a specific macOS Installer version for
# Intel Macs, with a custom name:
mist download "11.4" --application --application-name "Install %NAME %VERSION%-%BUILD%.app"

# Download a specific macOS Installer version
# and generate a Disk Image with a custom name:
mist download "11.4" --image --image-name "Install %NAME %VERSION%-%BUILD%.dmg"

# Download a specific macOS Installer build and generate
# a codesigned Disk Image output to a custom directory:
mist download "19H15" \
     --image \
     --image-signing-identity "Developer ID Application: Name (Team ID)" \
     --output-directory "/path/to/custom/directory"

# Download the latest macOS Big Sur Installer and generate
# an Installer Application bundle, a Disk Image and
# macOS Installer Package, both with custom names, codesigned,
# output to a custom directory:
mist download "Big Sur" \
     --application \
     --application-name "Install %NAME% %VERSION%-%BUILD%.app" \
     --image \
     --image-name "Install %NAME% %VERSION%-%BUILD%.dmg" \
     --image-signing-identity "Developer ID Application: Name (Team ID)" \
     --package \
     --package-name "Install %NAME% %VERSION%-%BUILD%.pkg" \
     --package-identifier "com.mycompany.pkg.install-%NAME%" \
     --package-signing-identity "Developer ID Installer: Name (Team ID)" \
     --output-directory "/path/to/custom/directory"

Build Requirements

  • Swift 5.4.
  • Runs on macOS Yosemite 10.10 and later.

Download

Grab the latest version of Mist from the releases page.

Credits / Thank You

Version History

  • 1.5

    • Added List search support
      • mist list to filter on results
      • --latest to filter the latest (first) match found
      • --quiet to suppress verbose output
      • --output-type to specify a custom output type
    • Added progress indicators
      • Displays current and total download amounts
      • Displays overal percentage downloaded
    • macOS Firmwares and Installers will fail to download if they already exist
      • Use --force to overwrite this behaviour
    • Faster macOS Firmwares list retrieval time
    • Faster macOS Installers list retrieval time
    • Replaced SANITY CHECKS headers with more inclusive INPUT VALIDATION
    • Fixed a bug with partial string matching when searching for downloads
    • Improved error handling and messaging
  • 1.4

    • Support for downloading macOS Firmware (IPSW) files
      • Shasum is validated upon download
    • Moved list, download and version options to subcommands:
      • mist --list is now mist list
      • mist --download is now mist download
      • mist --version is now mist version
      • See mist --help for detailed help
    • Renamed --list-export option to --export
    • Re-added --application output option, back by popular demand!
    • Removed short flags for output options due to naming collisions:
      • Removed -a for --application
      • Removed -i for --image
      • Removed -p for --package
    • Lists now display / export total size
    • More verbose output for input validation
  • 1.3.1

    • Fixed bug where SUCatalog files were not being parsed correctly
  • 1.3

    • Removed --name, --mac-os-version and --build options, --download now supports all three
    • Removed --list-format option and renamed --list-path to --list-export, file extension determines export type
    • Removed --application and --zip options
    • Added --catalogURL
    • Added --temporary-directory option
    • Added --keychain option
    • Added free space check before downloads are initiated
    • Support for building hardware specific installers on all Macs
    • macOS name is now determined from the distribution files, no longer hardcoded
    • CSV cells with spaces now display correctly
    • Better input validation before downloads are initiated
    • Cleanup of standard output messaging (less verbose)
    • Removed download progress output
    • General code refactoring
  • 1.2

    • Downloads now show progress: current + total download sizes and % completed
    • Mist will now create the --output directory if it does not exist
  • 1.1.1

    • --application and --zip flags are now detected correctly
  • 1.1

    • Specify custom catalog seeds: Customer, Developer and Public
      • This allows downloading macOS Install Betas
    • Output the macOS Installer application bundle to a custom directory
    • Generate a ZIP archive of the macOS Installer application bundle
    • Checks for free space before attempting any downloads and installations
    • Cleaned up CLI argument flags, options, and formatting
  • 1.0

    • Initial release

License

Copyright © 2021 Nindi Gill

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Comments
  • Add option to choose Cache directory

    Add option to choose Cache directory

    Running macOS 12.3.1 on Macbook Pro 14 M1, already had earlier version of CLI-Mist installed. When I tried to download 12.5 using GUI Mist received an error that Cache folder could not be created. Was running GUI-Mist 0.2. Quit, deleted app, downloaded CLI-Mist 1.8 and installed, 0.2 GUI-Mist again and installed, now working. I assume the older CLI version was messing things up. It works now. Thanks for this excellent and extremely useful app!

    enhancement 
    opened by RedCSol 8
  • Detect invalid cache directory permissions + notify / rectify

    Detect invalid cache directory permissions + notify / rectify

    I just downloaded Mist for the first time to try it out, and I'm having issues when the app is trying to configure the cache directory.

    I get this error message whenever I start a download:

    Screenshot 2022-12-05 at 2 35 48 PM

    Error text:

    An error has occurred!

    Error: You don't have permission to save the file "061-26589" in the folder "Cache".

    I tried giving Mist full disk access, but the issue persists.

    Is there something I can do to resolve this on my end?

    Info:

    • Mist version: 0.3
    • macOS Version: 13.0.1 (22A400)
    • Processor: Apple Silicon M1
    enhancement question 
    opened by hisaac 7
  • Trying to scroll while its downloading makes the app crash

    Trying to scroll while its downloading makes the app crash

    I'm trying to download the macOS Ventura 13.0 Beta (22A5295i) exported as an ISO file. When I'm trying to scroll (two fingers on the trackpad moving up/down) the list of things its building/downloading the app crashes. This happens to me every time I did this (4 times in a row). Attached a screenshot of the window I'm trying to scroll: Bildschirmfoto 2022-07-14 um 18 54 51

    I'm on MacBook Air m1 running macOS 12.4.

    If you need additional information let me know.

    bug 
    opened by vordenken 4
  • Why is this a .pkg installer instead of an .app?

    Why is this a .pkg installer instead of an .app?

    Is there any technical reason for this?

    I myself like normal apps (the ones you have to drop into the programs folder) way more because it makes the app look "lighter"? I don't know how to describe it but maybe you know what I mean. Also things with an installer often can't be (fully) removed by dragging the app into the bin which adds confusion to it.

    Other than that great app and keep it up!

    question 
    opened by vordenken 4
  • macos 12.6 monterey download invalid shasum error

    macos 12.6 monterey download invalid shasum error

    While downloading MacOS 12.6 Monterey (the 14GB firmware version, not the 12GB download), I got:

    An error has occurred!
    Invalid Shasum: '3bae26d997c8ad246bb6ca4bd85bb8498f0680e9', should be: ''
    

    Date/Time:        2022-09-21 07:39:19.617 +0100
    End time:         2022-09-21 07:47:22.054 +0100
    OS Version:       macOS 12.5.1 (Build 21G83)
    Architecture:     arm64e
    Report Version:   35.1
    Incident Identifier: F7902552-B5F0-4253-A1DB-39348AEDDD50
    
    Data Source:      Microstackshots
    Shared Cache:     F8AB76FB-504C-32DD-A5DB-15A1F2F028F8 slid base address 0x1b8428000, slide 0x38428000
    
    Command:          Mist
    Path:             /Applications/Mist.app/Contents/MacOS/Mist
    Identifier:       com.ninxsoft.mist
    Version:          0.2 (0.2)
    Team ID:          7K3HVCLV7Z
    Architecture:     arm64
    Parent:           UNKNOWN [1]
    PID:              30585
    
    Event:            disk writes
    Action taken:     none
    Writes:           8589.95 MB of file backed memory dirtied over 482 seconds (17.81 MB per second average), exceeding limit of 99.42 KB per second over 86400 seconds
    Writes limit:     8589.93 MB
    Limit duration:   86400s
    Writes caused:    8589.95 MB
    Writes duration:  482s
    Duration:         482.44s
    Duration Sampled: 481.94s
    Steps:            814 ( (10.49 MB/step))
    
    Hardware model:   MacBookPro18,2
    Active cpus:      10
    HW page size:     16384
    VM page size:     16384
    
    Advisory levels:  Battery -> 2, User -> 2, ThermalPressure -> 0, Combined -> 2
    Free disk space:  1161.52 GB/1858.19 GB, low space threshold 3072 MB
    
    Heaviest stack for the target process:
      814  start_wqthread + 8 (libsystem_pthread.dylib + 8320) [0x1b874f080]
      814  _pthread_wqthread + 228 (libsystem_pthread.dylib + 13092) [0x1b8750324]
      814  _dispatch_worker_thread2 + 164 (libdispatch.dylib + 90372) [0x1b85a2104]
      814  _dispatch_root_queue_drain + 396 (libdispatch.dylib + 88296) [0x1b85a18e8]
      814  _dispatch_queue_override_invoke + 784 (libdispatch.dylib + 29384) [0x1b85932c8]
      814  _dispatch_client_callout + 20 (libdispatch.dylib + 16820) [0x1b85901b4]
      814  _dispatch_disk_perform + 512 (libdispatch.dylib + 211920) [0x1b85bfbd0]
      814  __write_nocancel + 8 (libsystem_kernel.dylib + 23184) [0x1b871aa90]
    
    
    Powerstats for:   Mist [30585]
    UUID:             8DEF3962-1987-339D-973E-65E3CEC548A5
    Path:             /Applications/Mist.app/Contents/MacOS/Mist
    Identifier:       com.ninxsoft.mist
    Version:          0.2 (0.2)
    Team ID:          7K3HVCLV7Z
    Architecture:     arm64
    Parent:           UNKNOWN [1]
    UID:              501
    Footprint:        83.20 MB -> 87.05 MB (+3936 KB) (max 87.72 MB )
    Start time:       2022-09-21 07:39:19.666 +0100
    End time:         2022-09-21 07:47:21.603 +0100
    Num samples:      814 (100%)
    Primary state:    814 samples Non-Frontmost App, Suppressed, Kernel mode, Effective Thread QoS User Initiated, Requested Thread QoS User Initiated, Override Thread QoS Unspecified
    User Activity:    0 samples Idle, 814 samples Active
    Power Source:     814 samples on Battery, 0 samples on AC
      814  start_wqthread + 8 (libsystem_pthread.dylib + 8320) [0x1b874f080]
        814  _pthread_wqthread + 228 (libsystem_pthread.dylib + 13092) [0x1b8750324]
          814  _dispatch_worker_thread2 + 164 (libdispatch.dylib + 90372) [0x1b85a2104]
            814  _dispatch_root_queue_drain + 396 (libdispatch.dylib + 88296) [0x1b85a18e8]
              814  _dispatch_queue_override_invoke + 784 (libdispatch.dylib + 29384) [0x1b85932c8]
                814  _dispatch_client_callout + 20 (libdispatch.dylib + 16820) [0x1b85901b4]
                  814  _dispatch_disk_perform + 512 (libdispatch.dylib + 211920) [0x1b85bfbd0]
                    814  __write_nocancel + 8 (libsystem_kernel.dylib + 23184) [0x1b871aa90]
    
      Binary Images:
               0x100e80000 -                ???  com.ninxsoft.mist 0.2 (0.2)          <8DEF3962-1987-339D-973E-65E3CEC548A5>  /Applications/Mist.app/Contents/MacOS/Mist
               0x1b858c000 -        0x1b85d2fff  libdispatch.dylib (1325.120.2)       <035D23D9-4CB5-3759-9059-1F7878F89FEE>  /usr/lib/system/libdispatch.dylib
               0x1b8715000 -        0x1b874cfff  libsystem_kernel.dylib (8020.141.5)  <D5CDDE7E-7037-3A70-9CE4-9E3847DA6CE0>  /usr/lib/system/libsystem_kernel.dylib
               0x1b874d000 -        0x1b8759fff  libsystem_pthread.dylib (486.100.11) <F32FF902-BA43-30B0-AD43-A2A8A9FF69FE>  /usr/lib/system/libsystem_pthread.dylib
    
    bug 
    opened by ssbarnea 3
  • Mist and mist-cli packages have identical pkgid

    Mist and mist-cli packages have identical pkgid

    Hi guys,

    as can be seen in the Info.plist for the Mist.pkg (v0.2) and the mist-cli.pkg(v1.8), both packages have the identical pkg identifier com.ninxsoft.mist. Due to this, software deployment frameworks like Munki exhibit unwanted behaviour (i.e. uninstalling both when only one is supposed to be uninstalled) since it can effectively not distinguish both from each other due to their identical If you could change the pkgid for either of the packages, that would be very appreciated!

    Thanks in advance Screenshot 2022-08-14 at 22 09 51 Screenshot 2022-08-14 at 22 11 38

    enhancement 
    opened by oliverweinm 3
  • An error has occurred!

    An error has occurred!

    Bildschirm­foto 2022-07-11 um 13 59 49

    Hi, nice work, thanks so far. While trying it, I always get this error:

    Invalid Termination Status '1': ditto: /Volumes/012-26510 Temp/Applications/Install macOS Monterey.app/Contents/SharedSupport: Operation not permitted

    I'm on an Apple Silicon, but need to create an iso for ESXi.

    Thanks

    question 
    opened by diBarolo 3
  • CLI and GUI packages have same bundle ID

    CLI and GUI packages have same bundle ID

    Both packages have the bundle ID com.ninxsoft.pkg.mist I noticed this when I downloaded the GUI package which has version 0.2 and the receipts on my Mac said I already had installed version 1.6.1.

    Each package should have a unique bundle ID, which will also help with tools that manage installations and use the bundle ID and version to determine whether an update needs to be installed

    bug 
    opened by nider 2
  • macOS 13.0 beta installer download failed with error

    macOS 13.0 beta installer download failed with error

    I am trying to download macOS 13.0 beta with Mist v0.2 and got following error: Invalid Termination Status '246': /Volumes/Install macOS Ventura beta is not large enough for install media. An additional 213.2 MB is needed. error_mist

    bug 
    opened by iresh-filewave 2
  • Crashing at download

    Crashing at download

    My colleague is getting a crash when she tries downloading IPSW or other formats. Crash report below


    Translated Report (Full Report Below)

    Process: Mist [82064] Path: /Applications/Mist.app/Contents/MacOS/Mist Identifier: com.ninxsoft.mist Version: 0.2 (0.2) Code Type: ARM-64 (Native) Parent Process: launchd [1] User ID: 502

    Date/Time: 2022-08-12 15:20:12.8051 -0700 OS Version: macOS 12.2.1 (21D62) Report Version: 12 Anonymous UUID: B51BBE54-EF2C-4A14-A267-476EC564F945

    Sleep/Wake UUID: 1CD7F04D-ABA6-4CA9-A9E5-03034A322870

    Time Awake Since Boot: 550000 seconds Time Since Wake: 2721 seconds

    System Integrity Protection: enabled

    Crashed Thread: 0 Dispatch queue: com.apple.main-thread

    Exception Type: EXC_BREAKPOINT (SIGTRAP) Exception Codes: 0x0000000000000001, 0x0000000197afda18 Exception Note: EXC_CORPSE_NOTIFY

    Termination Reason: Namespace SIGNAL, Code 5 Trace/BPT trap: 5 Terminating Process: exc handler [82064]

    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread 0 libunwind.dylib 0x197afda18 libunwind::UnwindCursor<libunwind::LocalAddressSpace, libunwind::Registers_arm64>::step() + 680 1 libunwind.dylib 0x197afd7a0 libunwind::UnwindCursor<libunwind::LocalAddressSpace, libunwind::Registers_arm64>::step() + 48 2 libobjc.A.dylib 0x18cf7362c objc_addExceptionHandler + 68 3 AppKit 0x18ffa21c0 -[NSApplication _commonBeginModalSessionForWindow:relativeToWindow:modalDelegate:didEndSelector:contextInfo:] + 912 4 AppKit 0x18ffa1d90 __35-[NSApplication runModalForWindow:]_block_invoke_2 + 44 5 AppKit 0x18ffa1d48 __35-[NSApplication runModalForWindow:]_block_invoke + 112 6 AppKit 0x18ffa14d8 _NSTryRunModal + 128 7 AppKit 0x18ffa1388 -[NSApplication runModalForWindow:] + 148 8 AppKit 0x190721058 -[NSSavePanel runModal] + 552 9 Mist 0x1028f4a84 0x102890000 + 412292 10 Mist 0x1028f5955 0x102890000 + 416085 11 libswift_Concurrency.dylib 0x20b050959 completeTaskWithClosure(swift::AsyncContext*, swift::SwiftError*) + 1

    Thread 1: 0 libsystem_pthread.dylib 0x18d0cc010 start_wqthread + 0

    Thread 2:: com.apple.NSEventThread 0 libsystem_kernel.dylib 0x18d095954 mach_msg_trap + 8 1 libsystem_kernel.dylib 0x18d095d00 mach_msg + 76 2 CoreFoundation 0x18d19ced8 __CFRunLoopServiceMachPort + 372 3 CoreFoundation 0x18d19b390 __CFRunLoopRun + 1212 4 CoreFoundation 0x18d19a734 CFRunLoopRunSpecific + 600 5 AppKit 0x18fe5dfb0 _NSEventThread + 196 6 libsystem_pthread.dylib 0x18d0d1240 _pthread_start + 148 7 libsystem_pthread.dylib 0x18d0cc024 thread_start + 8

    Thread 3: 0 libsystem_pthread.dylib 0x18d0cc010 start_wqthread + 0

    Thread 4: 0 libsystem_pthread.dylib 0x18d0cc010 start_wqthread + 0

    Thread 5: 0 libsystem_pthread.dylib 0x18d0cc010 start_wqthread + 0

    Thread 6: 0 libsystem_pthread.dylib 0x18d0cc010 start_wqthread + 0

    Thread 7: 0 libsystem_pthread.dylib 0x18d0cc010 start_wqthread + 0

    Thread 8: 0 libsystem_pthread.dylib 0x18d0cc010 start_wqthread + 0

    Thread 0 crashed with ARM Thread State (64-bit): x0: 0x000000016d56d240 x1: 0x0000000197afd770 x2: 0x00000001e8031f30 x3: 0x000000000000003c x4: 0x000000000000290c x5: 0x0000000000000000 x6: 0x6e69746c6975625f x7: 0x0000000000000b50 x8: 0x000000016d56d350 x9: 0x100000016d56e0d0 x10: 0xd21f00020b04b7b0 x11: 0x100000016d56e088 x12: 0x000000014703cc60 x13: 0x000000020b04ada0 x14: 0x000000020b04ac54 x15: 0x0000000004000007 x16: 0x400000020b04b7b0 x17: 0x000000020b04b7b0 x18: 0x000000014880b940 x19: 0x000000016d56d240 x20: 0xdd2b000190721057 x21: 0x0000000000000001 x22: 0x00000000000003b4 x23: 0x0000000000000000 x24: 0x0000000000000028 x25: 0x0000000190927d15 x26: 0x000000019072120c x27: 0x00000001907211e4 x28: 0x0000000190927d5e fp: 0x000000016d56d180 lr: 0x0000000197afd7a0 sp: 0x000000016d56bc70 pc: 0x0000000197afda18 cpsr: 0x20001000 far: 0x0000000102a3e878 esr: 0xf200c471 (Breakpoint) pointer authentication trap IB

    Binary Images: 0x197af6000 - 0x197b00fff libunwind.dylib () /usr/lib/system/libunwind.dylib 0x18cf56000 - 0x18cf91fff libobjc.A.dylib () <2eb32e1d-90cb-3256-8681-9034085a06a6> /usr/lib/libobjc.A.dylib 0x18fcaf000 - 0x190b65fff com.apple.AppKit (6.9) <8701760d-31b6-37eb-be77-ffb39921dd22> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit 0x102890000 - 0x102a4bfff com.ninxsoft.mist (0.2) <8def3962-1987-339d-973e-65e3cec548a5> /Applications/Mist.app/Contents/MacOS/Mist 0x20b00d000 - 0x20b060fff libswift_Concurrency.dylib () <50b9f80c-f39b-3792-b642-1ff1684a50b3> /usr/lib/swift/libswift_Concurrency.dylib 0x18d0ca000 - 0x18d0d6fff libsystem_pthread.dylib () /usr/lib/system/libsystem_pthread.dylib 0x18d094000 - 0x18d0c9fff libsystem_kernel.dylib (*) <384945e6-dd71-37e5-9a3d-84fff14a1e60> /usr/lib/system/libsystem_kernel.dylib 0x18d118000 - 0x18d65bfff com.apple.CoreFoundation (6.9) <35473de6-c433-332c-aee0-013fd5f6d4fd> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation

    External Modification Summary: Calls made by other processes targeting this process: task_for_pid: 0 thread_create: 0 thread_set_state: 0 Calls made by this process: task_for_pid: 0 thread_create: 0 thread_set_state: 0 Calls made by all processes on this machine: task_for_pid: 0 thread_create: 0 thread_set_state: 0

    VM Region Summary: ReadOnly portion of Libraries: Total=1.0G resident=0K(0%) swapped_out_or_unallocated=1.0G(100%) Writable regions: Total=334.9M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=334.9M(100%)

                                VIRTUAL   REGION 
    

    REGION TYPE SIZE COUNT (non-coalesced) =========== ======= ======= Accelerate framework 384K 3 Activity Tracing 256K 1 CG backing stores 3136K 8 CG image 400K 21 ColorSync 640K 28 CoreAnimation 2720K 165 CoreGraphics 48K 3 CoreUI image data 3072K 40 Dispatch continuations 64.0M 1 Foundation 16K 1 Kernel Alloc Once 32K 1 MALLOC 187.5M 85 MALLOC guard page 288K 16 MALLOC_MEDIUM (reserved) 56.0M 1 reserved VM address space (unallocated) SQLite page cache 320K 5 STACK GUARD 56.1M 9 Stack 12.2M 9 VM_ALLOCATE 1.0G 28 __AUTH 2668K 315 __AUTH_CONST 19.9M 501 __DATA 15.6M 488 __DATA_CONST 17.4M 507 __DATA_DIRTY 1799K 206 __FONT_DATA 4K 1 __LINKEDIT 576.4M 5 __OBJC_CONST 3328K 268 __OBJC_RO 82.1M 1 __OBJC_RW 3104K 1 __TEXT 477.0M 525 __UNICODE 588K 1 dyld private memory 1024K 1 libnetwork 5760K 32 mapped file 166.2M 32 shared memory 3408K 14 =========== ======= ======= TOTAL 2.7G 3323 TOTAL, minus reserved VM space 2.7G 3323


    Full Report

    {"app_name":"Mist","timestamp":"2022-08-12 15:20:13.00 -0700","app_version":"0.2","slice_uuid":"8def3962-1987-339d-973e-65e3cec548a5","build_version":"0.2","platform":1,"bundleID":"com.ninxsoft.mist","share_with_app_devs":0,"is_first_party":0,"bug_type":"309","os_version":"macOS 12.2.1 (21D62)","incident_id":"04322CE9-4DF3-44E3-966A-1F30AFA488DF","name":"Mist"} { "uptime" : 550000, "procLaunch" : "2022-08-12 15:19:53.4631 -0700", "procRole" : "Foreground", "version" : 2, "userID" : 502, "deployVersion" : 210, "modelCode" : "MacBookAir10,1", "procStartAbsTime" : 13364799540739, "coalitionID" : 49893, "osVersion" : { "train" : "macOS 12.2.1", "build" : "21D62", "releaseType" : "User" }, "captureTime" : "2022-08-12 15:20:12.8051 -0700", "incident" : "04322CE9-4DF3-44E3-966A-1F30AFA488DF", "bug_type" : "309", "pid" : 82064, "procExitAbsTime" : 13365263716751, "translated" : false, "cpuType" : "ARM-64", "procName" : "Mist", "procPath" : "/Applications/Mist.app/Contents/MacOS/Mist", "bundleInfo" : {"CFBundleShortVersionString":"0.2","CFBundleVersion":"0.2","CFBundleIdentifier":"com.ninxsoft.mist"}, "storeInfo" : {"deviceIdentifierForVendor":"6E26C384-AE2D-510C-A934-9EBAEAF176F9","thirdParty":true}, "parentProc" : "launchd", "parentPid" : 1, "coalitionName" : "com.ninxsoft.mist", "crashReporterKey" : "B51BBE54-EF2C-4A14-A267-476EC564F945", "wakeTime" : 2721, "sleepWakeUUID" : "1CD7F04D-ABA6-4CA9-A9E5-03034A322870", "sip" : "enabled", "isCorpse" : 1, "exception" : {"codes":"0x0000000000000001, 0x0000000197afda18","rawCodes":[1,6839851544],"type":"EXC_BREAKPOINT","signal":"SIGTRAP"}, "termination" : {"flags":0,"code":5,"namespace":"SIGNAL","indicator":"Trace/BPT trap: 5","byProc":"exc handler","byPid":82064}, "extMods" : {"caller":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"system":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"targeted":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"warnings":0}, "faultingThread" : 0, "threads" : [{"triggered":true,"id":5298599,"threadState":{"x":[{"value":6129373760},{"value":6839850864,"symbolLocation":0,"symbol":"libunwind::UnwindCursor<libunwind::LocalAddressSpace, libunwind::Registers_arm64>::step()"},{"value":8187486000,"symbolLocation":80,"symbol":"vtable for libunwind::UnwindCursor<libunwind::LocalAddressSpace, libunwind::Registers_arm64>"},{"value":60},{"value":10508},{"value":0},{"value":7956018225701282399},{"value":2896},{"value":6129374032},{"value":1152921510736224464},{"value":15140820481017690032,"symbolLocation":15140820472242896972,"symbol":"swift_job_runImpl(swift::Job*, swift::ExecutorRef)"},{"value":1152921510736224392},{"value":5486398560},{"value":8774790560,"symbolLocation":0,"symbol":"swift::AsyncTask::flagAsRunning()"},{"value":8774790228,"symbolLocation":0,"symbol":"swift::runJobInEstablishedExecutorContext(swift::Job*)"},{"value":67108871},{"value":4611686027202181040,"symbolLocation":4611686018427387980,"symbol":"swift_job_runImpl(swift::Job*, swift::ExecutorRef)"},{"value":8774793136,"symbolLocation":76,"symbol":"swift_job_runImpl(swift::Job*, swift::ExecutorRef)"},{"value":5511362880},{"value":6129373760},{"value":15936831713098993751,"symbolLocation":15936831706380632615,"symbol":"-[NSSavePanel runModal]"},{"value":1},{"value":948},{"value":0},{"value":40},{"value":6720486677,"symbolLocation":5,"symbol":"GCC_except_table140"},{"value":6718362124,"symbolLocation":0,"symbol":"__23-[NSSavePanel runModal]_block_invoke"},{"value":6718362084,"symbolLocation":948,"symbol":"-[NSSavePanel runModal]"},{"value":6720486750,"symbolLocation":78,"symbol":"GCC_except_table140"}],"flavor":"ARM_THREAD_STATE64","lr":{"value":6839850912},"cpsr":{"value":536875008},"fp":{"value":6129373568},"sp":{"value":6129368176},"esr":{"value":4060136561,"description":"(Breakpoint) pointer authentication trap IB"},"pc":{"value":6839851544,"matchesCrashFrame":1},"far":{"value":4339263608}},"queue":"com.apple.main-thread","frames":[{"imageOffset":31256,"symbol":"libunwind::UnwindCursor<libunwind::LocalAddressSpace, libunwind::Registers_arm64>::step()","symbolLocation":680,"imageIndex":0},{"imageOffset":30624,"symbol":"libunwind::UnwindCursor<libunwind::LocalAddressSpace, libunwind::Registers_arm64>::step()","symbolLocation":48,"imageIndex":0},{"imageOffset":120364,"symbol":"objc_addExceptionHandler","symbolLocation":68,"imageIndex":1},{"imageOffset":3092928,"symbol":"-[NSApplication _commonBeginModalSessionForWindow:relativeToWindow:modalDelegate:didEndSelector:contextInfo:]","symbolLocation":912,"imageIndex":2},{"imageOffset":3091856,"symbol":"__35-[NSApplication runModalForWindow:]_block_invoke_2","symbolLocation":44,"imageIndex":2},{"imageOffset":3091784,"symbol":"__35-[NSApplication runModalForWindow:]_block_invoke","symbolLocation":112,"imageIndex":2},{"imageOffset":3089624,"symbol":"_NSTryRunModal","symbolLocation":128,"imageIndex":2},{"imageOffset":3089288,"symbol":"-[NSApplication runModalForWindow:]","symbolLocation":148,"imageIndex":2},{"imageOffset":10952792,"symbol":"-[NSSavePanel runModal]","symbolLocation":552,"imageIndex":2},{"imageOffset":412292,"imageIndex":3},{"imageOffset":416085,"imageIndex":3},{"imageOffset":276825,"symbol":"completeTaskWithClosure(swift::AsyncContext*, swift::SwiftError*)","symbolLocation":1,"imageIndex":4}]},{"id":5298681,"frames":[{"imageOffset":8208,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":5}]},{"id":5298684,"name":"com.apple.NSEventThread","frames":[{"imageOffset":6484,"symbol":"mach_msg_trap","symbolLocation":8,"imageIndex":6},{"imageOffset":7424,"symbol":"mach_msg","symbolLocation":76,"imageIndex":6},{"imageOffset":544472,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":372,"imageIndex":7},{"imageOffset":537488,"symbol":"__CFRunLoopRun","symbolLocation":1212,"imageIndex":7},{"imageOffset":534324,"symbol":"CFRunLoopRunSpecific","symbolLocation":600,"imageIndex":7},{"imageOffset":1765296,"symbol":"_NSEventThread","symbolLocation":196,"imageIndex":2},{"imageOffset":29248,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":5},{"imageOffset":8228,"symbol":"thread_start","symbolLocation":8,"imageIndex":5}]},{"id":5298685,"frames":[{"imageOffset":8208,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":5}]},{"id":5298688,"frames":[{"imageOffset":8208,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":5}]},{"id":5298838,"frames":[{"imageOffset":8208,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":5}]},{"id":5298839,"frames":[{"imageOffset":8208,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":5}]},{"id":5298900,"frames":[{"imageOffset":8208,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":5}]},{"id":5298901,"frames":[{"imageOffset":8208,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":5}]}], "usedImages" : [ { "source" : "P", "arch" : "arm64e", "base" : 6839820288, "size" : 45056, "uuid" : "cf584b24-4773-3e77-9aec-8dde83a3c376", "path" : "/usr/lib/system/libunwind.dylib", "name" : "libunwind.dylib" }, { "source" : "P", "arch" : "arm64e", "base" : 6659858432, "size" : 245760, "uuid" : "2eb32e1d-90cb-3256-8681-9034085a06a6", "path" : "/usr/lib/libobjc.A.dylib", "name" : "libobjc.A.dylib" }, { "source" : "P", "arch" : "arm64e", "base" : 6707408896, "CFBundleShortVersionString" : "6.9", "CFBundleIdentifier" : "com.apple.AppKit", "size" : 15429632, "uuid" : "8701760d-31b6-37eb-be77-ffb39921dd22", "path" : "/System/Library/Frameworks/AppKit.framework/Versions/C/AppKit", "name" : "AppKit", "CFBundleVersion" : "2113.30.116" }, { "source" : "P", "arch" : "arm64", "base" : 4337500160, "CFBundleShortVersionString" : "0.2", "CFBundleIdentifier" : "com.ninxsoft.mist", "size" : 1818624, "uuid" : "8def3962-1987-339d-973e-65e3cec548a5", "path" : "/Applications/Mist.app/Contents/MacOS/Mist", "name" : "Mist", "CFBundleVersion" : "0.2" }, { "source" : "P", "arch" : "arm64e", "base" : 8774537216, "size" : 344064, "uuid" : "50b9f80c-f39b-3792-b642-1ff1684a50b3", "path" : "/usr/lib/swift/libswift_Concurrency.dylib", "name" : "libswift_Concurrency.dylib" }, { "source" : "P", "arch" : "arm64e", "base" : 6661382144, "size" : 53248, "uuid" : "f7b2eccf-e6f1-3109-ae81-9028c0b8332a", "path" : "/usr/lib/system/libsystem_pthread.dylib", "name" : "libsystem_pthread.dylib" }, { "source" : "P", "arch" : "arm64e", "base" : 6661160960, "size" : 221184, "uuid" : "384945e6-dd71-37e5-9a3d-84fff14a1e60", "path" : "/usr/lib/system/libsystem_kernel.dylib", "name" : "libsystem_kernel.dylib" }, { "source" : "P", "arch" : "arm64e", "base" : 6661701632, "CFBundleShortVersionString" : "6.9", "CFBundleIdentifier" : "com.apple.CoreFoundation", "size" : 5521408, "uuid" : "35473de6-c433-332c-aee0-013fd5f6d4fd", "path" : "/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation", "name" : "CoreFoundation", "CFBundleVersion" : "1856.107" } ], "sharedCache" : { "base" : 6658211840, "size" : 3091218432, "uuid" : "296eb28e-6aeb-3129-8fa6-feb92261a4eb" }, "vmSummary" : "ReadOnly portion of Libraries: Total=1.0G resident=0K(0%) swapped_out_or_unallocated=1.0G(100%)\nWritable regions: Total=334.9M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=334.9M(100%)\n\n VIRTUAL REGION \nREGION TYPE SIZE COUNT (non-coalesced) \n=========== ======= ======= \nAccelerate framework 384K 3 \nActivity Tracing 256K 1 \nCG backing stores 3136K 8 \nCG image 400K 21 \nColorSync 640K 28 \nCoreAnimation 2720K 165 \nCoreGraphics 48K 3 \nCoreUI image data 3072K 40 \nDispatch continuations 64.0M 1 \nFoundation 16K 1 \nKernel Alloc Once 32K 1 \nMALLOC 187.5M 85 \nMALLOC guard page 288K 16 \nMALLOC_MEDIUM (reserved) 56.0M 1 reserved VM address space (unallocated)\nSQLite page cache 320K 5 \nSTACK GUARD 56.1M 9 \nStack 12.2M 9 \nVM_ALLOCATE 1.0G 28 \n__AUTH 2668K 315 \n__AUTH_CONST 19.9M 501 \n__DATA 15.6M 488 \n__DATA_CONST 17.4M 507 \n__DATA_DIRTY 1799K 206 \n__FONT_DATA 4K 1 \n__LINKEDIT 576.4M 5 \n__OBJC_CONST 3328K 268 \n__OBJC_RO 82.1M 1 \n__OBJC_RW 3104K 1 \n__TEXT 477.0M 525 \n__UNICODE 588K 1 \ndyld private memory 1024K 1 \nlibnetwork 5760K 32 \nmapped file 166.2M 32 \nshared memory 3408K 14 \n=========== ======= ======= \nTOTAL 2.7G 3323 \nTOTAL, minus reserved VM space 2.7G 3323 \n", "legacyInfo" : { "threadTriggered" : { "queue" : "com.apple.main-thread" } }, "trialInfo" : { "rollouts" : [ { "rolloutId" : "60da5e84ab0ca017dace9abf", "factorPackIds" : {

      },
      "deploymentId" : 240000008
    },
    {
      "rolloutId" : "607844aa04477260f58a8077",
      "factorPackIds" : {
        "SIRI_MORPHUN_ASSETS" : "6103050cbfe6dc472e1c982a"
      },
      "deploymentId" : 240000066
    },
    {
      "rolloutId" : "602ad4dac86151000cf27e46",
      "factorPackIds" : {
        "SIRI_DICTATION_ASSETS" : "61fb0e87c773c43cde3bb80e"
      },
      "deploymentId" : 240000303
    },
    {
      "rolloutId" : "601d9415f79519000ccd4b69",
      "factorPackIds" : {
        "SIRI_TEXT_TO_SPEECH" : "622657ce37186c771d5404ad"
      },
      "deploymentId" : 240000414
    },
    {
      "rolloutId" : "5fb4245a1bbfe8005e33a1e1",
      "factorPackIds" : {
    
      },
      "deploymentId" : 240000015
    },
    {
      "rolloutId" : "5ffde50ce2aacd000d47a95f",
      "factorPackIds" : {
    
      },
      "deploymentId" : 240000179
    },
    {
      "rolloutId" : "60186475825c62000ccf5450",
      "factorPackIds" : {
    
      },
      "deploymentId" : 240000025
    },
    {
      "rolloutId" : "5fc94383418129005b4e9ae0",
      "factorPackIds" : {
    
      },
      "deploymentId" : 240000441
    }
    

    ], "experiments" : [

    ] } }

    Model: MacBookAir10,1, BootROM 7429.81.3, proc 8:4:4 processors, 16 GB, SMC Graphics: Apple M1, Apple M1, Built-In Display: DELL UP3017, 2560 x 1600, Main, MirrorOff, Online Display: Color LCD, 2560 x 1600 Retina, MirrorOff, Online Memory Module: LPDDR4 AirPort: Wi-Fi, wl0: Oct 26 2021 16:10:41 version 18.20.310.15.7.8.120 FWID 01-5d6c3867 Bluetooth: Version (null), 0 services, 0 devices, 0 incoming serial ports Network Service: AX88179A, Ethernet, en7 Network Service: Wi-Fi, AirPort, en0 USB Device: USB31Bus USB Device: USB3.0 Hub USB Device: NS1081 USB Device: AX88179A USB Device: USB2.0 Hub USB Device: Keychron C2 USB Device: Anker USB-C Hub Device USB Device: USB31Bus USB Device: billboard Thunderbolt Bus: MacBook Air, Apple Inc. Thunderbolt Bus: MacBook Air, Apple Inc.

    bug 
    opened by RedCSol 2
  • Export list to CSV

    Export list to CSV

    opened by JoGilb 1
  • Cache directory permissions error

    Cache directory permissions error

    Hi trying to get the latest 13.1 installer (application) on my Apple silicon, but i'm getting the following error (unchecked uncompatible versions already) :

    Error: You don’t have permission to save the file “012-60271” in the folder “Cache”.

    bug 
    opened by ihubgit 9
Releases(v0.5)
  • v0.5(Dec 29, 2022)

    • The macOS Installer cache can now be emptied even if Cache downloads is disabled - thanks Pico Mitchell (PicoMitchell)!
    • Window tabs are now disabled - thanks Pico Mitchell (PicoMitchell)!
    • The Close Window (⌘-W) keyboard shortcut is now available once again - thanks Pico Mitchell (PicoMitchell)!
    • CSV exports are now working correctly again - thanks JoGlib (JoGlib)!
    • Removed unused declarations and imports (ie. dead code)
    • Bumped Sparkle version to 2.3.1
    • Minor cosmetic fixes
    Source code(tar.gz)
    Source code(zip)
    Mist.0.5.dmg(5.74 MB)
    Mist.0.5.pkg(6.51 MB)
  • v0.4(Dec 10, 2022)

    • Building a package for macOS Big Sur or newer is now much faster, as the Apple-provided package is just re-used
    • Custom Catalog URLs have been replaced with a default set of Apple-provided Software Update Catalogs in the app preferences
      • The standard catalog that ships with macOS is enabled by default
      • Additional Seed Program catalogs can be enabled
      • Note: Catalogs from the Seed Programs may contain beta / unreleased versions of macOS. Ensure you are a member of these programs before proceeding
    • Users are now notified when the macOS Installer cache directory has incorrect ownership / permissions, and are given the option to repair
    • Cache directories for specific macOS Installers with incorrect ownership / permissions will attempt to repair on-the-fly
    Source code(tar.gz)
    Source code(zip)
    Mist.0.4.dmg(5.74 MB)
    Mist.0.4.pkg(6.51 MB)
  • v0.3(Sep 26, 2022)

    • The macOS Installer cache directory can now be customised in the app preferences
    • Calculating ISO image sizes is slightly more dynamic (to better support macOS Ventura ISOs)
    • macOS Installer SHA-1 checksums are now only validated when they are present
    • Minor cosmetic tweaks
    Source code(tar.gz)
    Source code(zip)
    Mist.0.3.pkg(6.55 MB)
  • v0.2(Jul 15, 2022)

    • Users are now notified of incompatible macOS Firmwares / Installers before downloading
    • Placeholder icons for macOS Ventura have been updated with the real deal
    • Custom Catalog URLs are no longer being ignored
    • The Catalog URLs heading is now aligned correctly under Preferences
    Source code(tar.gz)
    Source code(zip)
    Mist.0.2.pkg(6.26 MB)
  • v0.1.1(Jul 1, 2022)

  • v0.1(Jul 1, 2022)

Owner
Nindi Gill
Client Platform Engineer @ Dropbox
Nindi Gill
A Mac command-line tool that generates kick-ass Jamf Pro reports.

KMART - Kick-Ass Mac Admin Reporting Tool A command-line utility generating kick-ass Jamf Pro reports: Features Reporting on the following Jamf Pro ob

Nindi Gill 86 Dec 15, 2022
Mac App Store: Embedding a Command Line tool using paths as arguments

Mac App Store: Embedding a Command Line tool using paths as arguments Code snippets to embed a Command Line tool using paths as arguments on the Mac A

Alexandre Colucci 10 Aug 20, 2022
A nifty command-line tool to customize macOS icons

iconset A nifty command line tool to manage macOS icons iconset is a new command line tool for macOS that allows you to change icons for macOS apps (e

aarnav tale 32 Nov 17, 2022
macOS command line tool to return the available disk space on APFS volumes

diskspace Returns available disk space With the various APFS features the value for free disk space returned from tools such as du or df will not be a

Armin Briegel 131 Nov 14, 2022
RsyncOSX and RsyncUI are GUI´s on the Apple macOS plattform for the command line tool rsync

Hi there ?? RsyncOSX and RsyncUI are GUI´s on the Apple macOS plattform for the command line tool rsync. It is rsync which executes the synchronize ta

Thomas Evensen 1.1k Dec 23, 2022
ipatool is a command line tool that allows you to search for iOS apps on the App Store and download a copy of the app package, known as an ipa file.

ipatool is a command line tool that allows you to search for iOS apps on the App Store and download a copy of the app package, known as an ipa file.

Majd Alfhaily 3k Dec 30, 2022
iOS command-line tool that allows searching and downloading ipa files from the iOS App Store

ipatool for iOS This is a port of Majd Alfhaily's ipatool adapted to run on iOS Build / Installation To build this, make sure you have AppSync install

dan 21 Sep 13, 2022
🕳 A simple command line tool to punch hole to reduce disk usage on APFS volume for such as a raw disk image.

HolePunch NAME holepunch -- A simple command line tool to punch hole to reduce disk usage on APFS volume for such as a raw disk image. SYNOPSIS holepu

Yoshimasa Niwa 15 Nov 24, 2022
The best command-line tool to install and switch between multiple versions of Xcode.

The best command-line tool to install and switch between multiple versions of Xcode.

Robots and Pencils 2.3k Jan 9, 2023
Command Line Tool for interacting with MachO binaries on OSX/iOS

inject inject is a tool which interfaces with MachO binaries in order to insert load commands. Below is its help. ➜ ./inject -h OVERVIEW: inject v1.0.

<script>alert('1')</script> 36 Dec 23, 2022
CookCLI is provided as a command-line tool to make Cook recipe management easier

CookCLI is provided as a command-line tool to make Cook recipe management easier, and enable automation and scripting workflows for the CookLa

null 523 Dec 29, 2022
A command-line tool to generate a JSON-list of all used SPM-dependencies of an Xcode-project.

SwiftPackageList A command-line tool to generate a JSON-list of all used SPM-dependencies of an Xcode-project. This includes all the Package.resolved

Felix Herrmann 14 Jan 8, 2023
A powerful command line tool for performing stoichiometry calculations on checmicals and chemical equations.

Stoichiometry Stoichiometry is a powerful command line tool for preforming stoichiometry chemicals and chemical equations. Its subcommands are listed

null 3 Jul 15, 2022
A command-line tool to sort Xcode's `.xcodeproj` file.

XcodeProjSorter A command-line tool to sort Xcode's .xcodeproj file. It sorts following sessions: PBXGroup PBXResourcesBuildPhase PBXSourcesBuildPhase

Nelson 7 Apr 27, 2022
A command line tool to easily install and browse Xcode templates

?? XTrail A command line tool to easily install and browse Xcode templates. Usage The general invocation syntax for xtrail is as follows: xtrail <subc

Shogo Sakaue 3 Dec 16, 2021
Josephus - A command line tool to solve Josephus problem in Swift

josephus A command line tool to solve Josephus problem in Swift

Masahiro Oono 0 Jan 25, 2022
A command line tool to parse pricing from a pdf and generate an updated csv file for House Call Pro

A command line tool to parse pricing from a pdf and generate an updated csv file for House Call Pro

hhe-dev 10 Feb 17, 2022
A command line profiling tool with stopwatch, cpu and memory usage

timeui A command line profiling tool with stopwatch, cpu and memory usage. Usage ./timeui path/to/app-to-profile runs the stopwatch and signpost regio

Marin Todorov 107 Dec 10, 2022
ips2crash is a macOS command line too to convert a .ips file to a legacy .crash log file.

Synopsis ips2crash is a macOS command line too to convert a .ips file to a legacy .crash log file. Motivation It should be possible to read .ips file

null 36 Nov 25, 2022