### README (README.md) # VirtualBuddy VirtualBuddy can virtualize macOS 12 and later on Apple Silicon, with the goal of offering features that are useful to developers who need to test their apps on multiple versions of macOS, especially betas. ## System Requirements - **Apple Silicon Mac** - macOS 13 or later ### Installing macOS To install a macOS virtual machine, you can select from a list of macOS versions provided by VirtualBuddy, which will automatically download and install the selected version. You may also provide your own IPSW link or select from an IPSW you have already downloaded. ### ⚠️ Important Note About macOS Golden Gate To install macOS Golden Gate beta on a macOS 26 host, make sure you are running [VirtualBuddy 2.2 beta 2](https://github.com/insidegui/VirtualBuddy/releases/tag/2.2-b2) or later and that you have downloaded and installed the [latest device support files](https://developer.apple.com/services-account/download?path=/Developer_Tools/RaveMobileDeviceSeed2050A3n/DeviceSupport_macOS_27_beta.dmg) from Apple. If you already have the Xcode 27 beta installed, then you don't need to install the device support files separately. ### Installing macOS Betas If you’d like to run a virtual machine with a macOS beta that’s more recent than the one you’re currently running, such as a macOS 15 virtual machine running in a macOS 14 host, then you’ll need the latest device support package from Apple. Device support packages are sometimes made available by Apple directly, but they’re always included and installed automatically with the latest Xcode beta. These can be obtained from the [Apple Developer portal](https://developer.apple.com/download). ## Download VirtualBuddy is free and open-source. If you’d like to support its development, [you may purchase it on Gumroad](https://insidegui.gumroad.com/l/virtualbuddy) or [sponsor my work on GitHub](https://github.com/sponsors/insidegui). If you’d just like to download the latest version, [go to GitHub releases](https://github.com/insidegui/VirtualBuddy/releases/latest). ### Feature Checklist - [x] Ability to boot any version of macOS 12 or macOS 13, including betas - [x] Ability to boot some ARM-based Linux distros (tested with Ubuntu Server and Ubuntu Desktop) - [x] Built-in installation wizard - [x] Select from a collection of restore images available on Apple’s servers - [x] Install the latest stable version of macOS - [x] Local restore image IPSW file - [x] Custom restore image URL - [x] Install a Linux distro from a local .iso file - [x] Select from a collection of Linux distros - [x] Install Linux from URL - [x] Boot into recovery mode (in order to disable SIP, for example) - [x] Networking and file sharing support - [x] Clipboard sharing - [x] Customize virtual machine hardware configuration - [x] Save and restore macOS virtual machine state ### Tips and Tricks #### VirtualBuddyGuest app VirtualBuddy automatically mounts a disk image with the VirtualBuddyGuest app when you boot up a virtual machine running macOS. To install the VirtualBuddyGuest app, just select the “Guest” disk on Finder’s side bar then double-click the “VirtualBuddyGuest” app icon. VirtualBuddyGuest enables clipboard sharing between host and guest and automatic mounting of the shared folders configured for the virtual machine. #### Taking Advantage of APFS Sometimes when trying things out in the OS installed in one of the virtual machines, things might break, requiring a full install of the guest operating system again, which is a pain. Thanks to APFS cloning though, you can just duplicate a virtual machine within your library folder (using Command + D in Finder), and the copy will take almost no additional disk space. This way you can have a “clean” copy of your VM, do whatever you want with a duplicate of it, and then throw the copy away and re-duplicate the clean version if things break. #### Sharing Folders Between Host and Virtual Machine You can share folders from your Mac to the Virtual Machine and vice-versa using regular macOS file sharing that can be configured in System Preferences/Settings. When both the Virtual Machine and the host are running macOS 13 or later, it’s possible to share folders directly by configuring them in the VM settings within VirtualBuddy before booting up the VM. To mount shared folders in the VM, run the following command in the VM’s Terminal: ```bash mkdir -p ~/Desktop/VirtualBuddyShared && mount -t virtiofs VirtualBuddyShared ~/Desktop/VirtualBuddyShared ``` ## Building **Xcode 16** is required for building on `main`. - Open the `VirtualBuddy/Config/Signing.xcconfig` file - Set the `VB_BUNDLE_ID_PREFIX` variable to something unique like `com.yourname.` - Select the VirtualBuddy project in the Xcode sidebar - Under "Targets", select "VirtualBuddy" - Go to the Signing & Capabilities tab and select your development team under Signing > Team - Repeat the same process for the "VirtualBuddyGuest" target - Build the `VirtualBuddy` scheme (the one that **doesn't** have `(Managed)` in its name) --- ### AGENTS (AGENTS.md) - Always use Xcode MCP tools for building the project, DO NOT use xcodebuild unless explicitly instructed to do so - Always write production-quality code, hacks and shortcuts are not allowed unless explicitly requested - Private API usage is allowed in this project when necessary since it is a Mac app that's not distributed in the App Store, but avoid it if at all possible - Some files in the project have the traditional Xcode copyright header comment, but any new files you create should have no file header comment --- ### CODE OF CONDUCT (CODE_OF_CONDUCT.md) # Contributor Covenant Code of Conduct ## Our Pledge In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation. ## Our Standards Examples of behavior that contributes to creating a positive environment include: * Using welcoming and inclusive language * Being respectful of differing viewpoints and experiences * Gracefully accepting constructive criticism * Focusing on what is best for the community * Showing empathy towards other community members Examples of unacceptable behavior by participants include: * The use of sexualized language or imagery and unwelcome sexual attention or advances * Trolling, insulting/derogatory comments, and personal or political attacks * Public or private harassment * Publishing others' private information, such as a physical or electronic address, without explicit permission * Other conduct which could reasonably be considered inappropriate in a professional setting ## Our Responsibilities Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. ## Scope This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. ## Enforcement Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the [project maintainer](https://github.com/insidegui). All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project maintainer is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. ## Attribution This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html [homepage]: https://www.contributor-covenant.org --- ### CONTRIBUTING (CONTRIBUTING.md) # Contributing to the VirtualBuddy Project Thanks for your interest in contributing to the project. Please make sure you follow the guidelines to maximize the chances of your contribution being accepted. ## 1. LLM Usage Policy **Before contributing to the project in any way**, be sure to read and understand the [LLM Usage Policy](./LLM_POLICY.md), which applies to all participation related to the project, including discussions and pull requests. ## 2. Discussions This project doesn't use GitHub issues, but the discussions page is open for general Q&A, bug reports, and feature suggestions. Before starting a new discussion, use the search to check if there are no other discussions that already address your question or issue. Here are the main reasons you might want to start a new discussion: ### I. Bugs When the app behaves in an unexpected way or simply breaks, please file a bug report and describe what you were doing when the problem occurred, what was the expected result and what was the actual result. Remember to include the version of the operating system you're running on your Mac and the virtual machines involved and the model of your Mac (ex: MacBook Pro 16-inch M4 Max). ### II. Crashes If you get a crash please open a discussion and explain what you were trying to do when the crash happened, include a video or screenshots of the problem if possible. Attach the crash report generated by macOS to your post. ### III. Feature Suggestions If you want a new feature to be implemented, you can open a discussion explaining why the feature would be useful to you and to other people. Whilst I want feature requests and suggestions to be as ambitious as possible, keep in mind that I try to keep the app focused, and niche features or features which would add a lot of complexity to the codebase may be rejected. If in doubt, it's better to suggest it than stay silent! ## 3. Code (Pull Requests) **Important: pull requests that only contain refactoring of existing code without fixing any bugs, improving performance, or implementing a new feature will not be accepted.** Don't forget to read the [LLM Usage Policy](./LLM_POLICY.md) before opening a pull request. In general, pull requests that have been created by an AI agent will be rejected, especially if the pull request description itself is clearly AI-generated. ### I. Ask before you code If you'd like to work on a bug fix or new feature, it's a good idea to open a discussion describing what you plan on doing before opening a pull request. This avoids duplicated work in case the thing you're planning on doing is already being worked on by someone else, or wasting time in case the feature you'd like to implement is outside the scope of the project and unlikely to be accepted. ### II. Keep indentation and style consistent And yes, this means spaces instead of tabs. 😉 It's not worth starting a war over this -- I'm not strongly opinionated about it -- but that's what this project uses. ### III. Test your code thoroughly When you think you're done with your contribution, try to break your code in as many different ways as possible to make sure your implementation is solid: - If you change something related to the handling of user or application data (model layer) make sure to test the migration of data from a previous release version of the app to your modified version. - If you change a component related to networking, use Apple's Network Link Conditioner and test with a slow/bad connection to see how the app behaves. - If you change something related to UI, try resizing the containing window and looking at different content to make sure it can adapt well to different environments. - Make sure your implementation works in all versions of the OS supported by the app. - Make sure your changes are not breaking existing features or user workflows. - Make sure your code is not introducing any new build warnings. ### IV. Dependencies Do not add external dependencies to the project. Do not bring in assets (icons, images) for which you don't have an appropriate license. Use SF Symbols when possible. ## 4. Conduct The project has a [code of conduct](./CODE_OF_CONDUCT.md) that should be kept in mind when contributing -- whether that contribution is in the form of discussions, comments, documentation, or code. Try to keep documentation and messages free of phrases that assume knowledge. If you're resorting to phrases like "obviously", "everyone knows" and "just", there's probably some context you're excluding. Not only does this help us be friendlier and more approachable for newcomers, but it will probably help any programmer -- even you! -- who comes back to look at your code in months/years. ## 5. Conclusion These are just some suggestions for common scenarios, if you need help with your contribution you can always open a discussion to ask any questions. Have fun 🎉 --- ### LLM POLICY (LLM_POLICY.md) # LLM Usage Policy This is a policy for how LLMs can (and can't) be used in the development of VirtualBuddy. It’s based on the policy [adopted by the Rust project](https://github.com/rust-lang/rust-forge/blob/master/src/policies/llm-usage.md). ## Overview Using LLMs while contributing to VirtualBuddy is conditionally allowed, when done with care. LLMs are not a substitute for thought, and I do not allow them to be used in ways that risk losing our shared social and technical understanding of the project. The policy's guidelines are roughly as follows: 1 - It's fine to use LLMs to answer questions, analyze, distill, refine, check, suggest, review. But not to **create**. 2 - LLMs work best when used as a tool to write *better*, not *faster*. ## Rules ### Legend - ✅ Allowed. - ❌ Banned. - ⚠️ Allowed with caveats. Must disclose that an LLM was used. - ℹ️ Adds additional detail to the policy. These bullets are normative. ### Summary - ✅ Allowed: Private use. - ❌ Banned: LLM-created comments, docs, or diagnostics. Replacing human judgement with LLM judgement. Requiring people to use an LLM to contribute. - ⚠️ Conditionally allowed: Trivial changes, machine translation. ### Non-exhaustive policy This policy does not aim to be exhaustive. If you have a use of LLMs in mind that isn't on this list, talk about it in the discussions, and judge it in the spirit of this overview: - Using an LLM for your own personal use is likely allowed ✅ - Showing LLM output to another human without solicitation is likely banned ❌ - Making a decision that affects others based on LLM output requires disclosure ⚠️ ### ✅ Allowed The following are allowed: - ✅ Any use of an LLM where **you are the only one who sees the output**. For example: - Asking an LLM questions about the existing codebase. - Asking an LLM to summarize comments on a discussion or pull request. - ℹ️ This does not allow reposting the summary publicly. This only includes your own personal use. - Asking an LLM to privately review your code or prose. - Writing tools for your own personal use using an LLM. - Using an LLM to generate possible solutions to an issue, learning from them, and then writing something from scratch in your own style. ### ❌ Banned The following are banned: - ❌ Comments from a personal user account that are originally created by an LLM. - ℹ️ This also applies to pull request descriptions and posts/comments in discussions. - ℹ️ This does not apply if the LLM content is clearly quoted and marked; you can post that. However, the content of the comment must stand on its own even without the LLM content; it's not a substitute for your own words. - ℹ️ See also "machine-translation" in ⚠️ below. - ❌ Documentation that is originally created by an LLM. - ℹ️ This includes non-trivial source comments, such as doc-comments, safety comments, or multiple paragraphs of non-doc-comments. - ℹ️ This does not include "trivial" changes (see ⚠️ below). - ❌ Treating an LLM review as a sufficient condition to merge a change. LLM reviews **must** be advisory-only. - ℹ️ An LLM review does not substitute for self-review. Authors are expected to review their own code before posting and after each change. ### ⚠️ Allowed with caveats These uses are allowed on a case-by-case basis, under the rules below. If you are a new contributor, you should expect to be scrutinized more heavily than existing contributors, since you haven't yet established trust with your reviewers. All uses under "⚠️ Allowed with caveats" **must** disclose that an LLM was used. - ⚠️ Using machine-translation (e.g. Google Translate) from your native language without posting your original message is allowed but discouraged. Doing so can introduce new miscommunications that weren't there originally, and prevents someone who speaks the language from providing a better translation. - ℹ️ Posting both your original message and the translated version is always ok, but you must still disclose that machine-translation was used. - ⚠️ "Trivial" code or prose changes. - ℹ️ Changes are trivial if there is no other way to write them, or the other ways to write them are nearly identical. For example, the following are all trivial: - Typo fixes - Markdown links - Changing a word to a synonym - Type signatures for a trait implementation - ℹ️ Be cautious about PRs that consist solely of trivial changes. - ⚠️ Using an LLM to discover bugs, as long as you personally verify the bug. - ℹ️ This also includes reviewers who use LLMs to discover flaws in unmerged code. - ℹ️ See also "Comments from a personal user account" under ❌ above. ## Appendix ### Responsibility Your contributions are your responsibility; you cannot place any blame on an LLM. ### The meaning of "originally created by an LLM" This document uses the phrase "originally created by an LLM" to mean "text that was generated by an LLM (and then possibly edited by a human)". No amount of editing can change how it was originally created; the origin sets the initial style, and that style is very hard to change once it's set. This policy makes no distinction between LLM output that comes from a chat interface and output that comes from editor auto-completion. In most cases the output is "trivial" (see above under ⚠️), but regardless, it is not treated specially by this policy. --- ### Data/Ipsws V1.Json (data/ipsws_v1.json) { "apiVersion": 1, "channels": [ { "id": "regular", "name": "Release", "note": "Public, stable releases.", "icon": "checkmark.seal" }, { "id": "devbeta", "name": "Developer Beta", "note": "Betas meant for developer testing.", "icon": "wrench.and.screwdriver", "authentication": { "name": "Developer Portal", "url": "https://developer.apple.com/download", "note": "Perform the authentication using the web view that will be opened. Your credentials will be sent directly to Apple and will not be stored locally or on any servers." } }, { "id": "pubbeta", "name": "Public Beta", "note": "Betas meant for customer testing.", "icon": "sun.and.horizon" }, { "id": "seed", "name": "Apple Seed", "note": "Private betas for select customers.", "icon": "tree", "authentication": { "name": "AppleSeed Portal", "url": "https://appleseed.apple.com/", "note": "Perform the authentication using the web view that will be opened. Your credentials will be sent directly to Apple and will not be stored locally or on any servers." } } ], "groups": [ { "id": "sequoia", "name": "macOS Sequoia", "majorVersion": "15.0", "minHostVersion": "14.0" }, { "id": "sonoma", "name": "macOS Sonoma", "majorVersion": "14.0", "minHostVersion": "13.0" }, { "id": "ventura", "name": "macOS Ventura", "majorVersion": "13.0", "minHostVersion": "12.0" }, { "id": "monterey", "name": "macOS Monterey", "majorVersion": "12.0", "minHostVersion": "12.3" } ], "restoreImages": [ { "group": "sequoia", "name": "macOS 15.5", "build": "24F74", "url": "https://updates.cdn-apple.com/2025SpringFCS/fullrestores/082-44534/CE6C1054-99A3-4F67-A823-3EE9E6510CDE/UniversalMac_15.5_24F74_Restore.ipsw", "channel": "regular", "needsCookie": false }, { "group": "sequoia", "name": "macOS 15.5 Developer Beta 4", "build": "24F5068b", "url": "https://updates.cdn-apple.com/2025SpringSeed/fullrestores/082-42002/44CF75E3-7765-4356-A88C-5EEEC4471CA4/UniversalMac_15.5_24F5068b_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sequoia", "name": "macOS 15.5 Developer Beta 3", "build": "24F5053j", "url": "https://updates.cdn-apple.com/2025SpringSeed/fullrestores/072-92980/8E6DFD3B-8438-423F-8FFE-A95234775E84/UniversalMac_15.5_24F5053j_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sequoia", "name": "macOS 15.5 Developer Beta 2", "build": "24F5053f", "url": "https://updates.cdn-apple.com/2025SpringSeed/fullrestores/082-24561/B199D1B2-296D-43E5-A29A-5FC27796F36D/UniversalMac_15.5_24F5053f_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sequoia", "name": "macOS 15.5 Developer Beta 1", "build": "24F5042g", "url": "https://updates.cdn-apple.com/2025SpringSeed/fullrestores/072-94893/B85463BB-3ED6-4A5A-BE78-92AD86B531D7/UniversalMac_15.5_24F5042g_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sequoia", "name": "macOS 15.4.1", "build": "24E263", "url": "https://updates.cdn-apple.com/2025SpringFCS/fullrestores/082-23340/61923341-EE73-4C6E-BB3E-DAB3069548BF/UniversalMac_15.4.1_24E263_Restore.ipsw", "channel": "regular", "needsCookie": false }, { "group": "sequoia", "name": "macOS 15.4", "build": "24E248", "url": "https://updates.cdn-apple.com/2025SpringFCS/fullrestores/082-16517/AACDDC33-9683-4431-98AF-F04EF7C15EE3/UniversalMac_15.4_24E248_Restore.ipsw", "channel": "regular", "needsCookie": false }, { "group": "sequoia", "name": "macOS 15.4 RC 2", "build": "24E247", "url": "https://updates.cdn-apple.com/2025SpringFCS/fullrestores/082-13483/7D547A66-A1A6-48C1-A8E1-FE78559BDD34/UniversalMac_15.4_24E247_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sequoia", "name": "macOS 15.4 RC", "build": "24E246", "url": "https://updates.cdn-apple.com/2025SpringFCS/fullrestores/082-13013/C3CAC9AF-B139-4924-BE1B-10ED6EF931A4/UniversalMac_15.4_24E246_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sequoia", "name": "macOS 15.4 Developer Beta 4", "build": "24E5238a", "url": "https://updates.cdn-apple.com/2025WinterSeed/fullrestores/082-08323/FD7D7539-514F-4F2E-AD3B-4D6D0D248706/UniversalMac_15.4_24E5238a_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sequoia", "name": "macOS 15.4 Developer Beta 3", "build": "24E5228e", "url": "https://updates.cdn-apple.com/2025WinterSeed/fullrestores/072-96972/D76A7AE6-3A35-4295-B102-E5FC5C84B4DC/UniversalMac_15.4_24E5228e_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sequoia", "name": "macOS 15.4 Developer Beta 2", "build": "24E5222f", "url": "https://updates.cdn-apple.com/2025WinterSeed/fullrestores/072-90273/76B9EE73-0836-47FB-8CBA-E3E902ACD21A/UniversalMac_15.4_24E5222f_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sequoia", "name": "macOS 15.4 Developer Beta 1", "build": "24E5206s", "url": "https://updates.cdn-apple.com/2025WinterSeed/fullrestores/072-92205/1FCDCB29-B8A3-4461-A98A-270F1D1121C8/UniversalMac_15.4_24E5206s_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sequoia", "name": "macOS 15.3.2", "build": "24D81", "url": "https://updates.cdn-apple.com/2025WinterFCS/fullrestores/082-01504/828B8EF9-8134-49D5-B24A-0BA504FC5ECC/UniversalMac_15.3.2_24D81_Restore.ipsw", "channel": "regular", "needsCookie": false }, { "group": "sequoia", "name": "macOS 15.3.1", "build": "24D70", "url": "https://updates.cdn-apple.com/2025WinterFCS/fullrestores/072-70618/42F1A8CC-7E07-4329-958A-757FF600C303/UniversalMac_15.3.1_24D70_Restore.ipsw", "channel": "regular", "needsCookie": false }, { "group": "sequoia", "name": "macOS 15.3", "build": "24D60", "url": "https://updates.cdn-apple.com/2025WinterFCS/fullrestores/072-08269/7CAAB9F7-E970-428D-8764-4CD7BCD105CD/UniversalMac_15.3_24D60_Restore.ipsw", "channel": "regular", "needsCookie": false }, { "group": "sequoia", "name": "macOS 15.3 Developer Beta 3", "build": "24D5055b", "url": "https://updates.cdn-apple.com/2025WinterSeed/fullrestores/072-61910/64022727-D907-4A4F-963E-CADF5C74E1A7/UniversalMac_15.3_24D5055b_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sequoia", "name": "macOS 15.3 Developer Beta 2", "build": "24D5040f", "url": "https://updates.cdn-apple.com/2025WinterSeed/fullrestores/072-51416/CB0B4DD0-1512-47FF-91B8-862ECB6CD2CF/UniversalMac_15.3_24D5040f_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sequoia", "name": "macOS 15.3 Developer Beta 1", "build": "24D5034f", "url": "https://updates.cdn-apple.com/2024FallSeed/fullrestores/072-29298/D5353B95-E6B5-42DA-8DC3-664A28FFB1B9/UniversalMac_15.3_24D5034f_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sequoia", "name": "macOS 15.2", "build": "24C101", "url": "https://updates.cdn-apple.com/2024FallFCS/fullrestores/072-44245/E811A1B0-28A9-4FCD-AE32-322E796F0EB8/UniversalMac_15.2_24C101_Restore.ipsw", "channel": "regular", "needsCookie": false }, { "group": "sequoia", "name": "macOS 15.2 RC 2", "build": "24C100", "url": "https://updates.cdn-apple.com/2024FallFCS/fullrestores/072-39903/D467F0BB-9D59-4DCF-A355-DD200CE808A8/UniversalMac_15.2_24C100_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sequoia", "name": "macOS 15.2 RC", "build": "24C98", "url": "https://updates.cdn-apple.com/2024FallFCS/fullrestores/072-38683/C48192CB-7F42-4DD2-9EE6-0F6691DC088E/UniversalMac_15.2_24C98_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sequoia", "name": "macOS 15.2 Developer Beta 4", "build": "24C5089c", "url": "https://updates.cdn-apple.com/2024FallSeed/fullrestores/072-35468/AF95DCD4-137A-4E7D-A5D8-E12009F4B0EF/UniversalMac_15.2_24C5089c_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sequoia", "name": "macOS 15.2 Developer Beta 3", "build": "24C5079e", "url": "https://updates.cdn-apple.com/2024FallSeed/fullrestores/072-18002/44DBAF90-E56D-43E0-81F1-016B12E7FE27/UniversalMac_15.2_24C5079e_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sequoia", "name": "macOS 15.2 Developer Beta 2", "build": "24C5073e", "url": "https://updates.cdn-apple.com/2024FallSeed/fullrestores/072-11046/F7A6FD60-0556-437D-88B6-6F2DD2CD8B96/UniversalMac_15.2_24C5073e_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sequoia", "name": "macOS 15.1.1 (24B2091)", "build": "24B2091", "url": "https://updates.cdn-apple.com/2024FallFCS/fullrestores/072-29960/5EEC3C20-D7CB-4DD1-9CE4-7C177F531A41/UniversalMac_15.1.1_24B2091_Restore.ipsw", "channel": "regular", "needsCookie": false }, { "group": "sequoia", "name": "macOS 15.1.1", "build": "24B91", "url": "https://updates.cdn-apple.com/2024FallFCS/fullrestores/072-30094/44BD016F-6EE3-4EE5-8890-6F9AA008C537/UniversalMac_15.1.1_24B91_Restore.ipsw", "channel": "regular", "needsCookie": false }, { "group": "sequoia", "name": "macOS 15.1 (24B2083)", "build": "24B2083", "url": "https://updates.cdn-apple.com/2024FallFCS/fullrestores/072-12302/3786987A-AD94-4BFB-81B8-56D3841CA81B/UniversalMac_15.1_24B2083_Restore.ipsw", "channel": "regular", "needsCookie": false }, { "group": "sequoia", "name": "macOS 15.1", "build": "24B83", "url": "https://updates.cdn-apple.com/2024FallFCS/fullrestores/072-12340/78D28AC4-CCFC-45D2-BD27-1E5D915E43F9/UniversalMac_15.1_24B83_Restore.ipsw", "channel": "regular", "needsCookie": false }, { "group": "sequoia", "name": "macOS 15.1 RC", "build": "24B82", "url": "https://updates.cdn-apple.com/2024FallFCS/fullrestores/062-24344/4BBFA6BD-C58F-4C82-B793-6ECA98024379/UniversalMac_15.1_24B82_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sequoia", "name": "macOS 15.1 Developer Beta 6", "build": "24B5070a", "url": "https://updates.cdn-apple.com/2024FallSeed/fullrestores/072-00383/7EB106DF-9B03-4C2A-ACD1-997B0BFF9364/UniversalMac_15.1_24B5070a_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sequoia", "name": "macOS 15.1 Developer Beta 5", "build": "24B5055e", "url": "https://updates.cdn-apple.com/2024FallSeed/fullrestores/062-91081/FADE991A-C188-4D32-8F97-313F57E27359/UniversalMac_15.1_24B5055e_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sequoia", "name": "macOS 15.1 Developer Beta 4", "build": "24B5046f", "url": "https://updates.cdn-apple.com/2024FallSeed/fullrestores/062-80453/61A07BD2-553D-425D-8B93-7E5A730AA4CA/UniversalMac_15.1_24B5046f_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sequoia", "name": "macOS 15.1 Developer Beta 3", "build": "24B5035e", "url": "https://updates.cdn-apple.com/2024SummerSeed/fullrestores/062-74506/D50AC8F9-4795-4711-9C1A-907B6EB829A2/UniversalMac_15.1_24B5035e_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sequoia", "name": "macOS 15.0.1", "build": "24A348", "url": "https://updates.cdn-apple.com/2024FallFCS/fullrestores/072-01423/566E5B4E-1100-4643-91B3-131247351844/UniversalMac_15.0.1_24A348_Restore.ipsw", "channel": "regular", "needsCookie": false }, { "group": "sequoia", "name": "macOS 15.0", "build": "24A335", "url": "https://updates.cdn-apple.com/2024FallFCS/fullrestores/062-78489/BDA44327-C79E-4608-A7E0-455A7E91911F/UniversalMac_15.0_24A335_Restore.ipsw", "channel": "regular", "needsCookie": false }, { "group": "sequoia", "name": "macOS 15.0 Developer Beta 8", "build": "24A5331b", "url": "https://updates.cdn-apple.com/2024SummerSeed/fullrestores/062-71949/A67919DD-2AAC-4324-99BF-70765065DD70/UniversalMac_15.0_24A5331b_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sequoia", "name": "macOS 15.0 Developer Beta 7", "build": "24A5327a", "url": "https://updates.cdn-apple.com/2024SummerSeed/fullrestores/062-64520/F98C92F6-656A-46BB-A1DB-F447698DBB72/UniversalMac_15.0_24A5327a_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sequoia", "name": "macOS 15.0 Developer Beta 6", "build": "24A5320a", "url": "https://updates.cdn-apple.com/2024SummerSeed/fullrestores/062-59123/7B77FE01-E040-4D4A-8E93-64BBF212A351/UniversalMac_15.0_24A5320a_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sequoia", "name": "macOS 15.0 Developer Beta 5", "build": "24A5309e", "url": "https://updates.cdn-apple.com/2024SummerSeed/fullrestores/062-45756/5B063A0C-5ECA-434B-A462-CD1F65737105/UniversalMac_15.0_24A5309e_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sequoia", "name": "macOS 15.0 Developer Beta 4", "build": "24A5298h", "url": "https://updates.cdn-apple.com/2024SummerSeed/fullrestores/062-39288/8A58D88A-ED62-4E46-A406-13F0294EB4F5/UniversalMac_15.0_24A5298h_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sequoia", "name": "macOS 15.0 Developer Beta 3 (24A5289h)", "build": "24A5289h", "url": "https://updates.cdn-apple.com/2024SummerSeed/fullrestores/062-36090/83523325-6540-4A17-BA93-A5849E4E9AC2/UniversalMac_15.0_24A5289h_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sequoia", "name": "macOS 15.0 Developer Beta 3", "build": "24A5289g", "url": "https://updates.cdn-apple.com/2024SummerSeed/fullrestores/062-33928/E22622FB-DAFC-4C64-8CC6-B7CAF89477F7/UniversalMac_15.0_24A5289g_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sequoia", "name": "macOS 15.0 Developer Beta 2", "build": "24A5279h", "url": "https://updates.cdn-apple.com/2024SummerSeed/fullrestores/062-22022/AB066FFB-B7FE-4132-83AC-E58A323805C1/UniversalMac_15.0_24A5279h_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sequoia", "name": "macOS 15.0 Developer Beta 1", "build": "24A5264n", "url": "https://updates.cdn-apple.com/2024SummerSeed/fullrestores/052-49083/ED8F54D6-A7BF-488A-85E5-617E08C41383/UniversalMac_15.0_24A5264n_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sonoma", "name": "macOS 14.6.1", "build": "23G93", "url": "https://updates.cdn-apple.com/2024SummerFCS/fullrestores/062-52859/932E0A8F-6644-4759-82DA-F8FA8DEA806A/UniversalMac_14.6.1_23G93_Restore.ipsw", "channel": "regular", "needsCookie": false }, { "group": "sonoma", "name": "macOS 14.6", "build": "23G80", "url": "https://updates.cdn-apple.com/2024SummerFCS/fullrestores/052-69922/F5DA2B64-25EB-4370-9E89-FA5689859796/UniversalMac_14.6_23G80_Restore.ipsw", "channel": "regular", "needsCookie": false }, { "group": "sonoma", "name": "macOS 14.6 Developer Beta 4", "build": "23G5075b", "url": "https://updates.cdn-apple.com/2024SpringSeed/fullrestores/062-37092/7D35E462-CD30-4B65-A1D6-D2AF0DA9AED8/UniversalMac_14.6_23G5075b_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sonoma", "name": "macOS 14.6 Developer Beta 3", "build": "23G5066c", "url": "https://updates.cdn-apple.com/2024SpringSeed/fullrestores/062-28262/A4400A1D-9F38-41F7-B1CD-B3CB782DA2A3/UniversalMac_14.6_23G5066c_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sonoma", "name": "macOS 14.6 Developer Beta 2", "build": "23G5061b", "url": "https://updates.cdn-apple.com/2024SpringSeed/fullrestores/062-20934/B03E5DE3-1484-489F-AC53-956AC17DB7F0/UniversalMac_14.6_23G5061b_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sonoma", "name": "macOS 14.6 Developer Beta 1", "build": "23G5052d", "url": "https://updates.cdn-apple.com/2024SpringSeed/fullrestores/052-91270/121EBE77-A313-4250-9F8D-55F2AABBCD4C/UniversalMac_14.6_23G5052d_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sonoma", "name": "macOS 14.5", "build": "23F79", "url": "https://updates.cdn-apple.com/2024SpringFCS/fullrestores/062-01897/C874907B-9F82-4109-87EB-6B3C9BF1507D/UniversalMac_14.5_23F79_Restore.ipsw", "channel": "regular", "needsCookie": false }, { "group": "sonoma", "name": "macOS 14.5 Developer Beta 4", "build": "23F5074a", "url": "https://updates.cdn-apple.com/2024SpringSeed/fullrestores/052-93222/8E2C4935-6FAA-4624-88D5-008966BD1A4C/UniversalMac_14.5_23F5074a_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sonoma", "name": "macOS 14.5 Developer Beta 3", "build": "23F5064f", "url": "https://updates.cdn-apple.com/2024SpringSeed/fullrestores/052-86827/74D9C6E6-396C-451B-8ACD-DB523D9FA93F/UniversalMac_14.5_23F5064f_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sonoma", "name": "macOS 14.5 Developer Beta 2", "build": "23F5059e", "url": "https://updates.cdn-apple.com/2024SpringSeed/fullrestores/052-84344/599ECB0B-BF84-449F-B0D1-1428CFFAACC5/UniversalMac_14.5_23F5059e_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sonoma", "name": "macOS 14.5 Developer Beta 1", "build": "23F5049f", "url": "https://updates.cdn-apple.com/2024SpringSeed/fullrestores/052-63630/11AFEFAF-A420-4CAE-84E7-D66530A7E9CA/UniversalMac_14.5_23F5049f_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sonoma", "name": "macOS 14.4", "build": "23E214", "url": "https://updates.cdn-apple.com/2024WinterFCS/fullrestores/052-61990/47F0DD06-1106-4F2E-9CD6-AE6B361A0EC6/UniversalMac_14.4_23E214_Restore.ipsw", "channel": "regular", "needsCookie": false }, { "group": "sonoma", "name": "macOS 14.4 Developer Beta 5", "build": "23E5211a", "url": "https://updates.cdn-apple.com/2024WinterSeed/fullrestores/052-59970/42D9D34A-DD6E-40D5-AA2B-EEB8E65EE64E/UniversalMac_14.4_23E5211a_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sonoma", "name": "macOS 14.4 Developer Beta 4", "build": "23E5205c", "url": "https://updates.cdn-apple.com/2024WinterSeed/fullrestores/052-58286/18DAC58E-4161-45D4-BE02-AE47B12B87B8/UniversalMac_14.4_23E5205c_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sonoma", "name": "macOS 14.4 Developer Beta 3", "build": "23E5196e", "url": "https://updates.cdn-apple.com/2024WinterSeed/fullrestores/052-51632/C6A7A58A-3CB1-4271-9CED-1D5DAE9078CF/UniversalMac_14.4_23E5196e_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sonoma", "name": "macOS 14.4 Developer Beta 2", "build": "23E5191e", "url": "https://updates.cdn-apple.com/2024WinterSeed/fullrestores/052-45324/985FEED9-1A9E-49EB-A904-467E5E7EEE9C/UniversalMac_14.4_23E5191e_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sonoma", "name": "macOS 14.4 Developer Beta 1", "build": "23E5180j", "url": "https://updates.cdn-apple.com/2024WinterSeed/fullrestores/052-42583/F09F735D-D3C3-4AF7-9BEC-F9C5D3B84363/UniversalMac_14.4_23E5180j_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sonoma", "name": "macOS 14.3", "build": "23D56", "url": "https://updates.cdn-apple.com/2024WinterFCS/fullrestores/042-78241/B45074EB-2891-4C05-BCA4-7463F3AC0982/UniversalMac_14.3_23D56_Restore.ipsw", "channel": "regular", "needsCookie": false }, { "group": "sonoma", "name": "macOS 14.3 Developer Beta 3", "build": "23D5051b", "url": "https://updates.cdn-apple.com/2023WinterSeed/fullrestores/052-27952/6B395980-45C8-4E7C-9252-9F4CE35C7EDB/UniversalMac_14.3_23D5051b_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sonoma", "name": "macOS 14.3 Developer Beta 2", "build": "23D5043d", "url": "https://updates.cdn-apple.com/2023WinterSeed/fullrestores/052-23267/60655998-DD9A-40BF-BFAB-6D2A4442DE83/UniversalMac_14.3_23D5043d_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sonoma", "name": "macOS 14.3 Developer Beta 1", "build": "23D5033f", "url": "https://updates.cdn-apple.com/2023WinterSeed/fullrestores/052-04657/4126C431-B3EA-42C2-BC36-ED83715B8700/UniversalMac_14.3_23D5033f_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sonoma", "name": "macOS 14.2.1", "build": "23C71", "url": "https://updates.cdn-apple.com/2023FallFCS/fullrestores/052-22662/ECE59A41-DACC-4CA5-AB23-FDED1A4567DE/UniversalMac_14.2.1_23C71_Restore.ipsw", "channel": "regular", "needsCookie": false }, { "group": "sonoma", "name": "macOS 14.2", "build": "23C64", "url": "https://updates.cdn-apple.com/2023FallFCS/fullrestores/052-15117/DC2EE605-ABF3-41AE-9652-D137A8AA5907/UniversalMac_14.2_23C64_Restore.ipsw", "channel": "regular", "needsCookie": false }, { "group": "sonoma", "name": "macOS 14.2 RC", "build": "23C63", "url": "https://updates.cdn-apple.com/2023FallFCS/fullrestores/052-14744/7215DBB4-BEAD-4A9C-9202-276ABA6832D5/UniversalMac_14.2_23C63_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sonoma", "name": "macOS 14.2 Developer Beta 4", "build": "23C5055b", "url": "https://updates.cdn-apple.com/2023WinterFCS/fullrestores/052-05962/A8344C85-06CE-43C7-9FF6-7B477A4DB8BA/UniversalMac_14.2_23C5055b_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sonoma", "name": "macOS 14.2 Developer Beta 3", "build": "23C5047e", "url": "https://updates.cdn-apple.com/2023FallSeed/fullrestores/042-99526/0A9085CC-B36A-400A-86D8-B9FE23B1DA29/UniversalMac_14.2_23C5047e_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sonoma", "name": "macOS 14.2 Developer Beta 2", "build": "23C5041e", "url": "https://updates.cdn-apple.com/2023FallSeed/fullrestores/042-92143/F642F928-DEE0-4C3F-A416-85745C778855/UniversalMac_14.2_23C5041e_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sonoma", "name": "macOS 14.2 Developer Beta 1", "build": "23C5030f", "url": "https://updates.cdn-apple.com/2023FallSeed/fullrestores/042-71093/ECEFE157-E28B-40B4-9F21-CFD075129029/UniversalMac_14.2_23C5030f_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sonoma", "name": "macOS 14.1.1", "build": "23B81", "url": "https://updates.cdn-apple.com/2023FallFCS/fullrestores/042-89681/55BD14DB-5535-4203-9359-E2C070E43FBE/UniversalMac_14.1.1_23B81_Restore.ipsw", "channel": "regular", "needsCookie": false }, { "group": "sonoma", "name": "macOS 14.1", "build": "23B74", "url": "https://updates.cdn-apple.com/2023FallFCS/fullrestores/042-86430/DBE44960-58A6-4715-948B-D64F33F769BD/UniversalMac_14.1_23B74_Restore.ipsw", "channel": "regular", "needsCookie": false }, { "group": "sonoma", "name": "macOS 14.1 RC", "build": "23B73", "url": "https://updates.cdn-apple.com/2023FallFCS/fullrestores/042-10900/347B734E-BC0B-41FA-9671-8000FCB5B0BB/UniversalMac_14.1_23B73_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sonoma", "name": "macOS 14.1 Developer Beta 3", "build": "23B5067a", "url": "https://updates.cdn-apple.com/2023FallSeed/fullrestores/042-73325/B24FC9CF-34D1-44A6-B977-FA718FE83DEB/UniversalMac_14.1_23B5067a_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sonoma", "name": "macOS 14.1 Developer Beta 2", "build": "23B5056e", "url": "https://updates.cdn-apple.com/2023FallSeed/fullrestores/042-65885/0FA6C4A7-C21A-4A5F-84C8-8FEE0D98A153/UniversalMac_14.1_23B5056e_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sonoma", "name": "macOS 14.1 Developer Beta 1", "build": "23B5046f", "url": "https://updates.cdn-apple.com/2023FallSeed/fullrestores/042-60177/C4B6F5B3-8B66-461A-A048-4A9925F36FCD/UniversalMac_14.1_23B5046f_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sonoma", "name": "macOS 14.0", "build": "23A344", "url": "https://updates.cdn-apple.com/2023FallFCS/fullrestores/042-54934/0E101AD6-3117-4B63-9BF1-143B6DB9270A/UniversalMac_14.0_23A344_Restore.ipsw", "channel": "regular", "needsCookie": false }, { "group": "sonoma", "name": "macOS 14.0 RC", "build": "23A339", "url": "https://updates.cdn-apple.com/2023FallFCS/fullrestores/002-81996/596571C1-9856-4BB3-B5BF-B5A48F4B406E/UniversalMac_14.0_23A339_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sonoma", "name": "macOS 14.0 Developer Beta 7", "build": "23A5337a", "url": "https://updates.cdn-apple.com/2023SummerSeed/fullrestores/042-41500/D1789AEF-013B-4112-8A1E-401589023267/UniversalMac_14.0_23A5337a_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sonoma", "name": "macOS 14.0 Developer Beta 6", "build": "23A5328b", "url": "https://updates.cdn-apple.com/2023SummerSeed/fullrestores/042-37824/AA6B32A0-3C2C-4BEB-95A1-64E601934330/UniversalMac_14.0_23A5328b_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sonoma", "name": "macOS 14.0 Developer Beta 5", "build": "23A5312d", "url": "https://updates.cdn-apple.com/2023SummerSeed/fullrestores/042-27168/7E046825-8EBA-4AAE-8ECC-DDD51B9306D2/UniversalMac_14.0_23A5312d_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sonoma", "name": "macOS 14.0 Developer Beta 4", "build": "23A5301h", "url": "https://updates.cdn-apple.com/2023SummerSeed/fullrestores/042-25548/9EA6EC3D-5A7D-4D53-A17C-70EE71393921/UniversalMac_14.0_23A5301h_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sonoma", "name": "macOS 14.0 Developer Beta 3 (23A5286i)", "build": "23A5286i", "url": "https://updates.cdn-apple.com/2023SummerSeed/fullrestores/042-13887/3B4075C1-B695-49EA-82D9-4B720699D341/UniversalMac_14.0_23A5286i_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sonoma", "name": "macOS 14.0 Developer Beta 3", "build": "23A5286g", "url": "https://updates.cdn-apple.com/2023SummerSeed/fullrestores/042-06324/379026FA-C14F-4095-99FD-19F607D10EBF/UniversalMac_14.0_23A5286g_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sonoma", "name": "macOS 14.0 Developer Beta 2", "build": "23A5276g", "url": "https://updates.cdn-apple.com/2023SummerSeed/fullrestores/032-95861/67600C59-8516-4A46-B9D7-4007D395CEF5/UniversalMac_14.0_23A5276g_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "sonoma", "name": "macOS 14.0 Developer Beta 1", "build": "23A5257q", "url": "https://updates.cdn-apple.com/2023SummerSeed/fullrestores/032-94355/CBE8CBE1-750D-487E-A393-B90FEF60CEBA/UniversalMac_14.0_23A5257q_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "ventura", "name": "macOS 13.6", "build": "22G120", "url": "https://updates.cdn-apple.com/2023FallFCS/fullrestores/042-55833/C0830847-A2F8-458F-B680-967991820931/UniversalMac_13.6_22G120_Restore.ipsw", "channel": "regular", "needsCookie": false }, { "group": "ventura", "name": "macOS 13.5.2", "build": "22G91", "url": "https://updates.cdn-apple.com/2023SummerFCS/fullrestores/042-43686/945D434B-DA5D-48DB-A558-F6D18D11AD69/UniversalMac_13.5.2_22G91_Restore.ipsw", "channel": "regular", "needsCookie": false }, { "group": "ventura", "name": "macOS 13.5.1", "build": "22G90", "url": "https://updates.cdn-apple.com/2023SummerFCS/fullrestores/042-25658/2D6BE8DB-5549-4F85-8C54-39FC23BABC68/UniversalMac_13.5.1_22G90_Restore.ipsw", "channel": "regular", "needsCookie": false }, { "group": "ventura", "name": "macOS 13.5", "build": "22G74", "url": "https://updates.cdn-apple.com/2023SummerFCS/fullrestores/032-69606/D3E05CDF-E105-434C-A4A1-4E3DC7668DD0/UniversalMac_13.5_22G74_Restore.ipsw", "channel": "regular", "needsCookie": false }, { "group": "ventura", "name": "macOS 13.5 Developer Beta 5", "build": "22G5072a", "url": "https://updates.cdn-apple.com/2023SpringSeed/fullrestores/042-09570/8DA0B0AA-6FD4-42C4-A54E-BC0D53B92AC0/UniversalMac_13.5_22G5072a_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "ventura", "name": "macOS 13.5 Developer Beta 4", "build": "22G5059d", "url": "https://updates.cdn-apple.com/2023SpringSeed/fullrestores/042-03209/55CBE04D-FD90-483B-A6D7-45E0FBC1C94F/UniversalMac_13.5_22G5059d_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "ventura", "name": "macOS 13.5 Developer Beta 3", "build": "22G5048d", "url": "https://updates.cdn-apple.com/2023SpringSeed/fullrestores/032-93679/1D39F2AC-8FD4-46A3-A159-478C76472B16/UniversalMac_13.5_22G5048d_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "ventura", "name": "macOS 13.5 Developer Beta 2", "build": "22G5038d", "url": "https://updates.cdn-apple.com/2023SpringSeed/fullrestores/032-92523/E476F5EC-D046-4A76-889B-F19DA354459E/UniversalMac_13.5_22G5038d_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "ventura", "name": "macOS 13.5 Developer Beta 1", "build": "22G5027e", "url": "https://updates.cdn-apple.com/2023SpringSeed/fullrestores/032-86178/CE6C5645-C5C3-41A9-B986-D5F0BD7BB10B/UniversalMac_13.5_22G5027e_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "ventura", "name": "macOS 13.4.1", "build": "22F82", "url": "https://updates.cdn-apple.com/2023SpringFCS/fullrestores/042-01877/2F49A9FE-7033-41D0-9D0C-64EFCE6B4C22/UniversalMac_13.4.1_22F82_Restore.ipsw", "channel": "regular", "needsCookie": false }, { "group": "ventura", "name": "macOS 13.4.1 (WWDC23 M2 Macs)", "build": "22F2083", "url": "https://updates.cdn-apple.com/2023SpringFCS/fullrestores/042-01864/A8378F91-BA71-40DF-8F0D-606A16F1836B/UniversalMac_13.4.1_22F2083_Restore.ipsw", "channel": "regular", "needsCookie": false }, { "group": "ventura", "name": "macOS 13.4", "build": "22F66", "url": "https://updates.cdn-apple.com/2023SpringFCS/fullrestores/032-84884/F97A22EE-9B5E-4FD5-94C1-B39DCEE8D80F/UniversalMac_13.4_22F66_Restore.ipsw", "channel": "regular", "needsCookie": false }, { "group": "ventura", "name": "macOS 13.4 RC 2", "build": "22F63", "url": "https://updates.cdn-apple.com/2023SpringFCS/fullrestores/032-83954/6E06237C-1B56-4932-A8E1-3A07A3EE03A8/UniversalMac_13.4_22F63_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "ventura", "name": "macOS 13.4 RC", "build": "22F62", "url": "https://updates.cdn-apple.com/2023SpringFCS/fullrestores/032-44024/731F1533-53BE-4CEB-AA05-74F333CA904A/UniversalMac_13.4_22F62_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "ventura", "name": "macOS 13.4 Developer Beta 4", "build": "22F5059b", "url": "https://updates.cdn-apple.com/2023SpringSeed/fullrestores/032-79565/BA9CBFB7-152C-4FB6-B0B3-47769997BFA1/UniversalMac_13.4_22F5059b_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "ventura", "name": "macOS 13.4 Developer Beta 3", "build": "22F5049e", "url": "https://updates.cdn-apple.com/2023SpringSeed/fullrestores/032-76661/573284E7-4A4A-440C-AC01-6065C7A8E667/UniversalMac_13.4_22F5049e_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "ventura", "name": "macOS 13.4 Developer Beta 2", "build": "22F5037d", "url": "https://updates.cdn-apple.com/2023SpringSeed/fullrestores/032-69885/ECFA1532-C633-4ACE-9D2C-3B5FD19510D4/UniversalMac_13.4_22F5037d_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "ventura", "name": "macOS 13.4 Developer Beta 1", "build": "22F5027f", "url": "https://updates.cdn-apple.com/2023SpringSeed/fullrestores/032-69187/B11709E0-1CF5-4460-A069-D12E1243E2AD/UniversalMac_13.4_22F5027f_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "ventura", "name": "macOS 13.3.1", "build": "22E261", "url": "https://updates.cdn-apple.com/2023WinterFCS/fullrestores/032-66602/418BC37A-FCD9-400A-B4FA-022A19576CD4/UniversalMac_13.3.1_22E261_Restore.ipsw", "channel": "regular", "needsCookie": false }, { "group": "ventura", "name": "macOS 13.3", "build": "22E252", "url": "https://updates.cdn-apple.com/2023WinterSeed/fullrestores/002-75537/8250FA0E-0962-46D6-8A90-57A390B9FFD7/UniversalMac_13.3_22E252_Restore.ipsw", "channel": "regular", "needsCookie": false }, { "group": "ventura", "name": "macOS 13.3 Developer Beta 4", "build": "22E5246b", "url": "https://updates.cdn-apple.com/2023WinterSeed/fullrestores/032-63669/7C0F9BA8-35C0-457F-AF56-6943D58A2CDB/UniversalMac_13.3_22E5246b_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "ventura", "name": "macOS 13.3 Developer Beta 3", "build": "22E5236f", "url": "https://updates.cdn-apple.com/2023WinterSeed/fullrestores/032-60411/1DDA996F-B620-4770-8FFE-87AB2043784D/UniversalMac_13.3_22E5236f_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "ventura", "name": "macOS 13.3 Developer Beta 2", "build": "22E5230e", "url": "https://updates.cdn-apple.com/2023WinterSeed/fullrestores/032-54760/AE02E378-FD59-474D-93AB-C52617103C72/UniversalMac_13.3_22E5230e_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "ventura", "name": "macOS 13.3 Developer Beta 1", "build": "22E5219e", "url": "https://updates.cdn-apple.com/2023WinterSeed/fullrestores/032-01932/676E0981-4535-4942-A4AE-E14C604CE719/UniversalMac_13.3_22E5219e_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "ventura", "name": "macOS 13.2.1", "build": "22D68", "url": "https://updates.cdn-apple.com/2023WinterFCS/fullrestores/032-48346/EFF99C1E-C408-4E7A-A448-12E1468AF06C/UniversalMac_13.2.1_22D68_Restore.ipsw", "channel": "regular", "needsCookie": false }, { "group": "ventura", "name": "macOS 13.2", "build": "22D49", "url": "https://updates.cdn-apple.com/2023WinterFCS/fullrestores/032-35688/0350BB21-2B4B-4850-BF77-70B830283B28/UniversalMac_13.2_22D49_Restore.ipsw", "channel": "regular", "needsCookie": false }, { "group": "ventura", "name": "macOS 13.2 Developer Beta 2", "build": "22D5038i", "url": "https://updates.cdn-apple.com/2023WinterSeed/fullrestores/032-33181/62ECE236-5806-4136-AD08-EDC026FD80A5/UniversalMac_13.2_22D5038i_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "ventura", "name": "macOS 13.2 Developer Beta 1", "build": "22D5027d", "url": "https://updates.cdn-apple.com/2023WinterSeed/fullrestores/032-12640/6B472BA3-E678-4251-92D1-7AA23B66F53E/UniversalMac_13.2_22D5027d_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "ventura", "name": "macOS 13.1", "build": "22C65", "url": "https://updates.cdn-apple.com/2022FallFCS/fullrestores/012-60270/0A7F49BA-FC31-4AD9-8E45-49B1FB9128A6/UniversalMac_13.1_22C65_Restore.ipsw", "channel": "regular", "needsCookie": false }, { "group": "ventura", "name": "macOS 13.1 Developer Beta 4", "build": "22C5059b", "url": "https://updates.cdn-apple.com/2022FallSeed/fullrestores/032-08112/957EA73A-7C95-4B3C-B99C-2C2C47555832/UniversalMac_13.1_22C5059b_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "ventura", "name": "macOS 13.1 Developer Beta 3", "build": "22C5050e", "url": "https://updates.cdn-apple.com/2022FallSeed/fullrestores/032-06252/946CBF92-8F27-49B1-A692-81F54C73D2F0/UniversalMac_13.1_22C5050e_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "ventura", "name": "macOS 13.1 Developer Beta 2", "build": "22C5044e", "url": "https://updates.cdn-apple.com/2022FallSeed/fullrestores/032-02019/670C9BA6-67EB-4AE6-A02E-88976F6F3118/UniversalMac_13.1_22C5044e_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "ventura", "name": "macOS 13.1 Developer Beta 1", "build": "22C5033e", "url": "https://updates.cdn-apple.com/2022FallSeed/fullrestores/012-82062/10E6B723-51B8-4B2C-BA3B-12A18ED4E719/UniversalMac_13.1_22C5033e_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "ventura", "name": "macOS 13.0.1", "build": "22A400", "url": "https://updates.cdn-apple.com/2022FallFCS/fullrestores/012-93802/A7270B0F-05F8-43D1-A9AD-40EF5699E82C/UniversalMac_13.0.1_22A400_Restore.ipsw", "channel": "regular", "needsCookie": false }, { "group": "ventura", "name": "macOS 13.0", "build": "22A380", "url": "https://updates.cdn-apple.com/2022FallFCS/fullrestores/012-92188/2C38BCD1-2BFF-4A10-B358-94E8E28BE805/UniversalMac_13.0_22A380_Restore.ipsw", "channel": "regular", "needsCookie": false }, { "group": "ventura", "name": "macOS 13.0 RC", "build": "22A379", "url": "https://updates.cdn-apple.com/2022FallFCS/fullrestores/071-08994/1118ADF4-1CC9-4554-9333-B1F64CF0C820/UniversalMac_13.0_22A379_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "ventura", "name": "macOS 13.0 Developer Beta 11", "build": "22A5373b", "url": "https://updates.cdn-apple.com/2022SummerSeed/fullrestores/012-84563/2FC38C63-3213-4BB6-8E41-2B066332CBE6/UniversalMac_13.0_22A5373b_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "ventura", "name": "macOS 13.0 Developer Beta 10", "build": "22A5365d", "url": "https://updates.cdn-apple.com/2022SummerSeed/fullrestores/012-83054/16ECAA12-3A1B-4663-B49B-B1563ECD4314/UniversalMac_13.0_22A5365d_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "ventura", "name": "macOS 13.0 Developer Beta 9", "build": "22A5358e", "url": "https://updates.cdn-apple.com/2022SummerSeed/fullrestores/012-71790/AF5A04A6-FF20-44C1-9BFF-43081BDB4D8C/UniversalMac_13.0_22A5358e_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "ventura", "name": "macOS 13.0 Developer Beta 8", "build": "22A5352e", "url": "https://updates.cdn-apple.com/2022SummerSeed/fullrestores/012-70113/6F1F08B7-9A1B-48A9-93DB-55EE21121C87/UniversalMac_13.0_22A5352e_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "ventura", "name": "macOS 13.0 Developer Beta 7", "build": "22A5342f", "url": "https://updates.cdn-apple.com/2022SummerSeed/fullrestores/012-66750/108EF06D-FBEE-4910-BA83-56A5C9B54110/UniversalMac_13.0_22A5342f_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "ventura", "name": "macOS 13.0 Developer Beta 6", "build": "22A5331f", "url": "https://updates.cdn-apple.com/2022SummerSeed/fullrestores/012-61458/80300AD0-69E5-4429-AE3E-A936CA83B5FC/UniversalMac_13.0_22A5331f_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "ventura", "name": "macOS 13.0 Developer Beta 5", "build": "22A5321d", "url": "https://updates.cdn-apple.com/2022SummerSeed/fullrestores/012-51397/8EF0874D-388A-4F62-B58A-89F968DD3082/UniversalMac_13.0_22A5321d_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "ventura", "name": "macOS 13.0 Developer Beta 4", "build": "22A5311f", "url": "https://updates.cdn-apple.com/2022SummerSeed/fullrestores/012-43316/6CE4D83A-E44C-4DD1-B47F-DE168355662E/UniversalMac_13.0_22A5311f_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "ventura", "name": "macOS 13.0 Developer Beta 3 (22A5295i)", "build": "22A5295i", "url": "https://updates.cdn-apple.com/2022SummerSeed/fullrestores/012-38309/6EDC76A0-4432-4C64-83C5-F43C885A75D6/UniversalMac_13.0_22A5295i_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "ventura", "name": "macOS 13.0 Developer Beta 3", "build": "22A5295h", "url": "https://updates.cdn-apple.com/2022SummerSeed/fullrestores/012-34274/130176F5-C4CB-4664-A2F0-F29CA1281694/UniversalMac_13.0_22A5295h_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "ventura", "name": "macOS 13.0 Developer Beta 2", "build": "22A5286j", "url": "https://updates.cdn-apple.com/2022SummerSeed/fullrestores/012-30346/9DD787A7-044B-4650-86D4-84E80B6B9C36/UniversalMac_13.0_22A5286j_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "ventura", "name": "macOS 13.0 Developer Beta 1", "build": "22A5266r", "url": "https://developer.apple.com/services-account/download?path=%2FWWDC_2022%2FmacOS_13_beta%2FUniversalMac_13.0_22A5266r_Restore.ipsw", "channel": "devbeta", "needsCookie": true }, { "group": "monterey", "name": "macOS 12.6.1", "build": "21G217", "url": "https://updates.cdn-apple.com/2022FallFCS/fullrestores/012-66032/8D8D90C6-A876-4FFF-BBF4-D158939B3841/UniversalMac_12.6.1_21G217_Restore.ipsw", "channel": "regular", "needsCookie": false }, { "group": "monterey", "name": "macOS 12.6", "build": "21G115", "url": "https://updates.cdn-apple.com/2022FallFCS/fullrestores/012-40537/0EC7C669-13E9-49FB-BD64-9EECC1D174B2/UniversalMac_12.6_21G115_Restore.ipsw", "channel": "regular", "needsCookie": false }, { "group": "monterey", "name": "macOS 12.5.1", "build": "21G83", "url": "https://updates.cdn-apple.com/2022SummerFCS/fullrestores/012-51674/A7019DDB-3355-470F-A355-4162A187AB6C/UniversalMac_12.5.1_21G83_Restore.ipsw", "channel": "regular", "needsCookie": false }, { "group": "monterey", "name": "macOS 12.5", "build": "21G72", "url": "https://updates.cdn-apple.com/2022SummerFCS/fullrestores/012-42731/BD9917E0-262C-41C5-A69F-AC316A534A39/UniversalMac_12.5_21G72_Restore.ipsw", "channel": "regular", "needsCookie": false }, { "group": "monterey", "name": "macOS 12.5 RC", "build": "21G69", "url": "https://updates.cdn-apple.com/2022SummerFCS/fullrestores/012-40368/5DD0A524-140A-46AF-91ED-5F28EA9DEC01/UniversalMac_12.5_21G69_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "monterey", "name": "macOS 12.5 Developer Beta 5", "build": "21G5063a", "url": "https://updates.cdn-apple.com/2022FallSeed/fullrestores/012-36748/52342C55-6598-4A86-AAB8-8901145792C8/UniversalMac_12.5_21G5063a_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "monterey", "name": "macOS 12.5 Developer Beta 4", "build": "21G5056b", "url": "https://updates.cdn-apple.com/2022FallSeed/fullrestores/012-26441/AE0AC638-2773-49D3-BF84-950B10BF39E9/UniversalMac_12.5_21G5056b_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "monterey", "name": "macOS 12.5 Developer Beta 3", "build": "21G5046c", "url": "https://updates.cdn-apple.com/2022FallSeed/fullrestores/012-18271/FFF202B2-E4B6-4A3E-9681-42A0F3F81B11/UniversalMac_12.5_21G5046c_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "monterey", "name": "macOS 12.5 Developer Beta 2", "build": "21G5037d", "url": "https://updates.cdn-apple.com/2022FallSeed/fullrestores/012-10648/1CC63FC5-5A22-4A5A-9A7B-C19C8C4A6731/UniversalMac_12.5_21G5037d_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "monterey", "name": "macOS 12.5 Developer Beta 1", "build": "21G5027d", "url": "https://updates.cdn-apple.com/2022FallSeed/fullrestores/002-93712/5F234425-6096-43FC-B518-1E9D7B4D0254/UniversalMac_12.5_21G5027d_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "monterey", "name": "macOS 12.4", "build": "21F79", "url": "https://updates.cdn-apple.com/2022SpringFCS/fullrestores/012-06874/9CECE956-D945-45E2-93E9-4FFDC81BB49A/UniversalMac_12.4_21F79_Restore.ipsw", "channel": "regular", "needsCookie": false }, { "group": "monterey", "name": "macOS 12.4 Developer Beta 4", "build": "21F5071b", "url": "https://updates.cdn-apple.com/2022SpringSeed/fullrestores/002-95106/0F7A6388-C4B5-4B8E-B8B2-F62C030699D0/UniversalMac_12.4_21F5071b_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "monterey", "name": "macOS 12.4 Developer Beta 3", "build": "21F5063e", "url": "https://updates.cdn-apple.com/2022SpringSeed/fullrestores/002-90009/DA6BD192-1698-48B3-AB6D-9D3A045ED1B1/UniversalMac_12.4_21F5063e_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "monterey", "name": "macOS 12.4 Developer Beta 2", "build": "21F5058e", "url": "https://updates.cdn-apple.com/2022SpringSeed/fullrestores/002-87587/BC2EBE80-F0F4-4B56-BCDC-340E0AD8E985/UniversalMac_12.4_21F5058e_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "monterey", "name": "macOS 12.4 Developer Beta 1", "build": "21F5048e", "url": "https://updates.cdn-apple.com/2022SpringSeed/fullrestores/002-85721/A21FF659-8493-4A16-A989-2C3141F48D8C/UniversalMac_12.4_21F5048e_Restore.ipsw", "channel": "devbeta", "needsCookie": false }, { "group": "monterey", "name": "macOS 12.3.1", "build": "21E258", "url": "https://updates.cdn-apple.com/2022SpringFCS/fullrestores/002-79219/851BEDF0-19DB-4040-B765-0F4089D1530D/UniversalMac_12.3.1_21E258_Restore.ipsw", "channel": "regular", "needsCookie": false } ] } --- ### Data/Ipsws V2.Json (data/ipsws_v2.json) { "apiVersion" : 2, "channels" : [ { "icon" : "checkmark.seal", "id" : "regular", "name" : "Release", "note" : "Public, stable releases." }, { "icon" : "wrench.and.screwdriver", "id" : "devbeta", "name" : "Developer Beta", "note" : "Betas meant for developer testing." } ], "deviceSupportVersions" : [ { "id" : "device_support_macOS26_beta", "instructions" : "Your Mac needs an update to install virtual machines that use this version of macOS.\n\nHere’s how you can install the update:\n\n1. Head over to the [Apple Developer downloads page](https:\/\/developer.apple.com\/download\/).\n2. Under “Operating Systems”, find “Device Support for macOS 26”.\n3. Click the link below that item.\n4. Double-click the downloaded DMG and open the installer. Follow the instructions.\n5. Quit and relaunch VirtualBuddy. Then, try again.\n\nInstalling the latest Xcode beta will also install the required update.", "mobileDeviceMinVersion" : "1810.0.0", "osVersion" : "26.0.0", "title" : "Device Support Update Required" } ], "features" : [ { "detail" : "For previous versions, you can enable file sharing in System Preferences > Sharing.", "id" : "file_sharing", "minVersionGuest" : "13.0.0", "minVersionHost" : "13.0.0", "name" : "File sharing", "unsupportedPlatform" : false }, { "id" : "guest_app", "minVersionGuest" : "12.3.0", "minVersionHost" : "13.0.0", "name" : "VirtualBuddyGuest app", "unsupportedPlatform" : false }, { "id" : "trackpad", "minVersionGuest" : "13.0.0", "minVersionHost" : "13.0.0", "name" : "Trackpad", "unsupportedPlatform" : false }, { "id" : "mac_keyboard", "minVersionGuest" : "13.0.0", "minVersionHost" : "13.0.0", "name" : "Mac keyboard", "unsupportedPlatform" : false }, { "id" : "state_restoration", "minVersionGuest" : "14.0.0", "minVersionHost" : "14.0.0", "name" : "State restoration", "unsupportedPlatform" : false }, { "id" : "display_resize", "minVersionGuest" : "14.0.0", "minVersionHost" : "14.0.0", "name" : "Automatic display configuration", "unsupportedPlatform" : false }, { "id" : "rosetta_sharing", "minVersionGuest" : "14.0.0", "minVersionHost" : "14.0.0", "name" : "Rosetta Sharing", "unsupportedPlatform" : true }, { "id" : "provisioning", "minVersionGuest" : "27.0.0", "minVersionHost" : "27.0.0", "name" : "Skip Setup Assistant", "unsupportedPlatform" : false } ], "groups" : [ { "darkImage" : { "id" : "goldengate", "thumbnail" : { "blurHash" : "U14U{d%3xx%5xxM^M_tTDzRhxwt8D|t9ogM^", "height" : 2048, "url" : "https:\/\/api.virtualbuddy.app\/v2\/images\/goldengate-dark-thumbnail.heic", "width" : 2048 }, "url" : "https:\/\/api.virtualbuddy.app\/v2\/images\/goldengate-dark.heic" }, "id" : "goldengate", "image" : { "id" : "goldengate", "thumbnail" : { "blurHash" : "UKIh55=W%K?a}:NHM}%L4:R-t7-pNHxat6M{", "height" : 2048, "url" : "https:\/\/api.virtualbuddy.app\/v2\/images\/goldengate-thumbnail.heic", "width" : 2048 }, "url" : "https:\/\/api.virtualbuddy.app\/v2\/images\/goldengate.heic" }, "majorVersion" : "27.0.0", "name" : "macOS Golden Gate" }, { "darkImage" : { "id" : "tahoe", "thumbnail" : { "blurHash" : "UfG0bS?9S1Rn~Pr@R.ofs+S6jFt3EBIZt5oJ", "height" : 720, "url" : "https:\/\/api.virtualbuddy.app\/v2\/images\/tahoe-dark-thumbnail.heic", "width" : 720 }, "url" : "https:\/\/api.virtualbuddy.app\/v2\/images\/tahoe-dark.heic" }, "id" : "tahoe", "image" : { "id" : "tahoe", "thumbnail" : { "blurHash" : "UfG0bS?9S1Rn~Pr@R.ofs+S6jFt3EBIZt5oJ", "height" : 720, "url" : "https:\/\/api.virtualbuddy.app\/v2\/images\/tahoe-thumbnail.heic", "width" : 720 }, "url" : "https:\/\/api.virtualbuddy.app\/v2\/images\/tahoe.heic" }, "majorVersion" : "26.0.0", "name" : "macOS Tahoe" }, { "darkImage" : { "id" : "sequoia", "thumbnail" : { "blurHash" : "eN86q8M1Hbyya7t-g$MpnTx,b;k9X8Vgr?osbHenWEeYoGj@aNaPah", "height" : 399, "url" : "https:\/\/api.virtualbuddy.app\/v2\/images\/sequoia-dark-thumbnail.heic", "width" : 720 }, "url" : "https:\/\/api.virtualbuddy.app\/v2\/images\/sequoia-dark.heic" }, "id" : "sequoia", "image" : { "id" : "sequoia", "thumbnail" : { "blurHash" : "egK9[+5Y0:}iNe-S=rI^SixW$JoIwbNfOYocn$NeWXNfShfkS5S5WX", "height" : 399, "url" : "https:\/\/api.virtualbuddy.app\/v2\/images\/sequoia-thumbnail.heic", "width" : 720 }, "url" : "https:\/\/api.virtualbuddy.app\/v2\/images\/sequoia.heic" }, "majorVersion" : "15.0.0", "name" : "macOS Sequoia" }, { "darkImage" : { "id" : "sonoma", "thumbnail" : { "blurHash" : "ec8rzYaIWBj?a}iqosaxj?fkRFa2axayj[t%ofV[ayf6V]pGkBf5fi", "height" : 720, "url" : "https:\/\/api.virtualbuddy.app\/v2\/images\/sonoma-dark-thumbnail.heic", "width" : 720 }, "url" : "https:\/\/api.virtualbuddy.app\/v2\/images\/sonoma-dark.heic" }, "id" : "sonoma", "image" : { "id" : "sonoma", "thumbnail" : { "blurHash" : "e:Hx.{wFRlbFaxm#xToba{j?tmetnOjsa#J,tRsln$a#NINff+oIj?", "height" : 720, "url" : "https:\/\/api.virtualbuddy.app\/v2\/images\/sonoma-thumbnail.heic", "width" : 720 }, "url" : "https:\/\/api.virtualbuddy.app\/v2\/images\/sonoma.heic" }, "majorVersion" : "14.0.0", "name" : "macOS Sonoma" }, { "darkImage" : { "id" : "ventura", "thumbnail" : { "blurHash" : "enHk%=ocoeW:Nb-8xEODaya#1fWWJAWExDEjR-jGazoJWCagw^s-Wp", "height" : 720, "url" : "https:\/\/api.virtualbuddy.app\/v2\/images\/ventura-dark-thumbnail.heic", "width" : 720 }, "url" : "https:\/\/api.virtualbuddy.app\/v2\/images\/ventura-dark.heic" }, "id" : "ventura", "image" : { "id" : "ventura", "thumbnail" : { "blurHash" : "eqOd?[TcFgR.a}LM$yWFs+oJ2{N{Iuj[jZJrj]slS5a#NNafw@ocoI", "height" : 720, "url" : "https:\/\/api.virtualbuddy.app\/v2\/images\/ventura-thumbnail.heic", "width" : 720 }, "url" : "https:\/\/api.virtualbuddy.app\/v2\/images\/ventura.heic" }, "majorVersion" : "13.0.0", "name" : "macOS Ventura" }, { "darkImage" : { "id" : "monterey", "thumbnail" : { "blurHash" : "eb6$?*bER}o3j?oToNjqa^jsS7oOoMa_axoOWqa}oNjrbJa~a#a}oM", "height" : 720, "url" : "https:\/\/api.virtualbuddy.app\/v2\/images\/monterey-dark-thumbnail.heic", "width" : 720 }, "url" : "https:\/\/api.virtualbuddy.app\/v2\/images\/monterey-dark.heic" }, "id" : "monterey", "image" : { "id" : "monterey", "thumbnail" : { "blurHash" : "euJi.3I.R6snaz~UjLa1fOafPQxBoLaiaeXVX4g2o0jZoaW?X9bXoL", "height" : 720, "url" : "https:\/\/api.virtualbuddy.app\/v2\/images\/monterey-thumbnail.heic", "width" : 720 }, "url" : "https:\/\/api.virtualbuddy.app\/v2\/images\/monterey.heic" }, "majorVersion" : "12.0.0", "name" : "macOS Monterey" } ], "legacyGuestAppVersions" : [ { "guestAppVersion" : "1.4.0", "id" : "VirtualBuddyGuest_minOS_12.3", "maxGuestVersion" : "12.99.99", "minGuestVersion" : "12.3.0", "sha384" : "8b4797ad33b40fc939a532c28d121c63bebcd7bb36c0fdd0de1db54174652c18fb3da4a2cea298a2efd1984ead37ac77", "url" : "https:\/\/raw.githubusercontent.com\/insidegui\/VirtualBuddy\/refs\/heads\/legacy-guest-support\/data\/LegacyGuestApp\/VirtualBuddyGuest_minOS_12.3.dmg" }, { "guestAppVersion" : "2.1.0", "id" : "VirtualBuddyGuest_minOS_13.0", "maxGuestVersion" : "13.99.99", "minGuestVersion" : "13.0.0", "sha384" : "ccb6c968eff880dd2e2a1b91d9d1be373b95cfb3bb2072042c0af3be0fc0962fb22d56516d2ca2b05a51935ad5a63f8c", "url" : "https:\/\/raw.githubusercontent.com\/insidegui\/VirtualBuddy\/refs\/heads\/legacy-guest-support\/data\/LegacyGuestApp\/VirtualBuddyGuest_minOS_13.0.dmg" }, { "guestAppVersion" : "2.2.0", "id" : "VirtualBuddyGuest_minOS_14.0", "maxGuestVersion" : "14.99.99", "minGuestVersion" : "14.0.0", "sha384" : "ccb6c968eff880dd2e2a1b91d9d1be373b95cfb3bb2072042c0af3be0fc0962fb22d56516d2ca2b05a51935ad5a63f8c", "url" : "https:\/\/raw.githubusercontent.com\/insidegui\/VirtualBuddy\/refs\/heads\/legacy-guest-support\/data\/LegacyGuestApp\/VirtualBuddyGuest_minOS_14.0.dmg" } ], "minAppVersion" : "2.0.0", "requirementSets" : [ { "id" : "min_host_12", "minCPUCount" : 2, "minMemorySizeMB" : 4096, "minVersionHost" : "12.0.0", "virtualInstallationBackend" : false }, { "id" : "min_host_13", "minCPUCount" : 2, "minMemorySizeMB" : 4096, "minVersionHost" : "13.0.0", "virtualInstallationBackend" : false }, { "id" : "min_host_26", "minCPUCount" : 2, "minMemorySizeMB" : 4096, "minVersionHost" : "26.0.0", "virtualInstallationBackend" : false }, { "id" : "min_host_27", "minCPUCount" : 2, "minMemorySizeMB" : 4096, "minVersionHost" : "27.0.0", "virtualInstallationBackend" : false }, { "id" : "min_host_26_virtual_installation", "minCPUCount" : 2, "minMemorySizeMB" : 4096, "minVersionHost" : "26.0.0", "virtualInstallationBackend" : true } ], "restoreImages" : [ { "build" : "26A5406e", "channel" : "devbeta", "downloadSize" : 22743302878, "group" : "goldengate", "id" : "26A5406e", "mobileDeviceMinVersion" : "1853.0.0", "name" : "macOS 27.0 Developer Beta 5", "requirements" : "min_host_26_virtual_installation", "url" : "https:\/\/updates.cdn-apple.com\/2026SummerSeed\/fullrestores\/140-81421\/E76AF7DE-7F9D-4808-B023-AC9A8313B177\/UniversalMac_27.0_26A5406e_Restore.ipsw", "version" : "27.0.0" }, { "build" : "26A5388g", "channel" : "devbeta", "downloadSize" : 22662343948, "group" : "goldengate", "id" : "26A5388g", "mobileDeviceMinVersion" : "1853.0.0", "name" : "macOS 27.0 Developer Beta 4", "requirements" : "min_host_26_virtual_installation", "url" : "https:\/\/updates.cdn-apple.com\/2026SummerSeed\/fullrestores\/140-55718\/5809AFC6-1923-4590-AAFC-904A0283E659\/UniversalMac_27.0_26A5388g_Restore.ipsw", "version" : "27.0.0" }, { "build" : "26A5378n", "channel" : "devbeta", "downloadSize" : 22590067379, "group" : "goldengate", "id" : "26A5378n", "mobileDeviceMinVersion" : "1853.0.0", "name" : "macOS 27.0 Developer Beta 3 v.2", "requirements" : "min_host_26_virtual_installation", "url" : "https:\/\/updates.cdn-apple.com\/2026SummerSeed\/fullrestores\/140-37973\/1ACA049C-10F0-4F1D-8E38-E52B9168C4BC\/UniversalMac_27.0_26A5378n_Restore.ipsw", "version" : "27.0.0" }, { "build" : "26A5378j", "channel" : "devbeta", "downloadSize" : 22567352533, "group" : "goldengate", "id" : "26A5378j", "mobileDeviceMinVersion" : "1853.0.0", "name" : "macOS 27.0 Developer Beta 3", "requirements" : "min_host_26_virtual_installation", "url" : "https:\/\/updates.cdn-apple.com\/2026SummerSeed\/fullrestores\/140-36017\/0F8D2136-7924-4F3E-A9AA-99722A9EFB39\/UniversalMac_27.0_26A5378j_Restore.ipsw", "version" : "27.0.0" }, { "build" : "26A5368g", "channel" : "devbeta", "downloadSize" : 22661410445, "group" : "goldengate", "id" : "26A5368g", "mobileDeviceMinVersion" : "1827.100.14", "name" : "macOS 27.0 Developer Beta 2", "requirements" : "min_host_26_virtual_installation", "url" : "https:\/\/updates.cdn-apple.com\/2026SummerSeed\/fullrestores\/140-20108\/5D0C3865-B25E-4700-A8B0-A15D60451BF4\/UniversalMac_27.0_26A5368g_Restore.ipsw", "version" : "27.0.0" }, { "build" : "26A5353q", "channel" : "devbeta", "downloadSize" : 22569026466, "group" : "goldengate", "id" : "26A5353q", "mobileDeviceMinVersion" : "1827.100.14", "name" : "macOS 27.0 Developer Beta 1", "requirements" : "min_host_26_virtual_installation", "url" : "https:\/\/updates.cdn-apple.com\/2026SummerSeed\/fullrestores\/122-99636\/BB03A927-E303-44C1-BB94-6197F130A163\/UniversalMac_27.0_26A5353q_Restore.ipsw", "version" : "27.0.0" }, { "build" : "25G82", "channel" : "regular", "downloadSize" : 19772367538, "group" : "tahoe", "id" : "25G82", "mobileDeviceMinVersion" : "1827.100.14", "name" : "macOS 26.6.2", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2026SummerFCS\/fullrestores\/140-83731\/E1F24412-C22B-42A2-AE01-09E5E18573E1\/UniversalMac_26.6.2_25G82_Restore.ipsw", "version" : "26.6.2" }, { "build" : "25G76", "channel" : "regular", "downloadSize" : 19772153977, "group" : "tahoe", "id" : "25G76", "mobileDeviceMinVersion" : "1827.100.14", "name" : "macOS 26.6.1", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2026SummerFCS\/fullrestores\/140-83079\/25315EF6-AEAB-4588-9774-A3723774C47F\/UniversalMac_26.6.1_25G76_Restore.ipsw", "version" : "26.6.1" }, { "build" : "25G72", "channel" : "regular", "downloadSize" : 19772077142, "group" : "tahoe", "id" : "25G72", "mobileDeviceMinVersion" : "1827.100.14", "name" : "macOS 26.6", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2026SummerFCS\/fullrestores\/140-65618\/10445B26-DE2C-43EC-9149-0A831602E74B\/UniversalMac_26.6_25G72_Restore.ipsw", "version" : "26.6.0" }, { "build" : "25G70", "channel" : "devbeta", "downloadSize" : 19772219794, "group" : "tahoe", "id" : "25G70", "mobileDeviceMinVersion" : "1827.100.14", "name" : "macOS 26.6 RC", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2026SummerFCS\/fullrestores\/140-56823\/1C29995E-8C11-4384-B9C0-B00145B84F51\/UniversalMac_26.6_25G70_Restore.ipsw", "version" : "26.6.0" }, { "build" : "25G5065a", "channel" : "devbeta", "downloadSize" : 19769079764, "group" : "tahoe", "id" : "25G5065a", "mobileDeviceMinVersion" : "1827.100.14", "name" : "macOS 26.6 Developer Beta 5", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2026SpringSeed\/fullrestores\/140-39234\/FAC2CC7B-4D0B-4522-A464-B0CD24A6E313\/UniversalMac_26.6_25G5065a_Restore.ipsw", "version" : "26.6.0" }, { "build" : "25G5057c", "channel" : "devbeta", "downloadSize" : 19772261857, "group" : "tahoe", "id" : "25G5057c", "mobileDeviceMinVersion" : "1827.100.14", "name" : "macOS 26.6 Developer Beta 4", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2026SpringSeed\/fullrestores\/140-31192\/A19E7612-3A2E-4716-82DD-39E624B1D4D8\/UniversalMac_26.6_25G5057c_Restore.ipsw", "version" : "26.6.0" }, { "build" : "25G5043d", "channel" : "devbeta", "downloadSize" : 19906521059, "group" : "tahoe", "id" : "25G5043d", "mobileDeviceMinVersion" : "1827.100.14", "name" : "macOS 26.6 Developer Beta 2", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2026SpringSeed\/fullrestores\/140-06140\/0C979E51-6B9F-4D2E-84E1-08718CAB38F5\/UniversalMac_26.6_25G5043d_Restore.ipsw", "version" : "26.6.0" }, { "build" : "25G5028f", "channel" : "devbeta", "downloadSize" : 19906405222, "group" : "tahoe", "id" : "25G5028f", "mobileDeviceMinVersion" : "1827.100.14", "name" : "macOS 26.6 Developer Beta 1", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2026SpringSeed\/fullrestores\/122-66788\/E1D3F6EB-514E-4A9B-833A-2A82621ACA18\/UniversalMac_26.6_25G5028f_Restore.ipsw", "version" : "26.6.0" }, { "build" : "25F84", "channel" : "regular", "downloadSize" : 19769902281, "group" : "tahoe", "id" : "25F84", "mobileDeviceMinVersion" : "1827.100.14", "name" : "macOS 26.5.2", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2026SpringFCS\/fullrestores\/140-24263\/B95838F0-6815-4F0B-A039-156526C081AD\/UniversalMac_26.5.2_25F84_Restore.ipsw", "version" : "26.5.2" }, { "build" : "25F80", "channel" : "regular", "downloadSize" : 19769808058, "group" : "tahoe", "id" : "25F80", "mobileDeviceMinVersion" : "1827.100.14", "name" : "macOS 26.5.1", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2026SpringFCS\/fullrestores\/122-88870\/E47EBB85-45F2-4E3C-B9E7-6FF7868C2FBA\/UniversalMac_26.5.1_25F80_Restore.ipsw", "version" : "26.5.1" }, { "build" : "25F71", "channel" : "regular", "downloadSize" : 19769944180, "group" : "tahoe", "id" : "25F71", "mobileDeviceMinVersion" : "1827.100.14", "name" : "macOS 26.5", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2026SpringFCS\/fullrestores\/122-58869\/DFB1CEEF-5619-4591-9924-E20DB2C8FED0\/UniversalMac_26.5_25F71_Restore.ipsw", "version" : "26.5.0" }, { "build" : "25F5068a", "channel" : "devbeta", "downloadSize" : 19766667567, "group" : "tahoe", "id" : "25F5068a", "mobileDeviceMinVersion" : "1827.100.14", "name" : "macOS 26.5 Developer Beta 4", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2026SpringSeed\/fullrestores\/122-44487\/95D09FEF-E0D7-48A8-9832-C1E412C9851C\/UniversalMac_26.5_25F5068a_Restore.ipsw", "version" : "26.5.0" }, { "build" : "25F5058e", "channel" : "devbeta", "downloadSize" : 19732467266, "group" : "tahoe", "id" : "25F5058e", "mobileDeviceMinVersion" : "1827.100.14", "name" : "macOS 26.5 Developer Beta 3", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2026SpringSeed\/fullrestores\/122-41795\/940A7416-4256-449F-8170-E8B4E207602E\/UniversalMac_26.5_25F5058e_Restore.ipsw", "version" : "26.5.0" }, { "build" : "25F5053d", "channel" : "devbeta", "downloadSize" : 19766937211, "group" : "tahoe", "id" : "25F5053d", "mobileDeviceMinVersion" : "1827.100.14", "name" : "macOS 26.5 Developer Beta 2", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2026SpringSeed\/fullrestores\/122-40967\/D206B768-60B6-4527-9F32-2B5BBF1E5A2B\/UniversalMac_26.5_25F5053d_Restore.ipsw", "version" : "26.5.0" }, { "build" : "25F5042g", "channel" : "devbeta", "downloadSize" : 19766440157, "group" : "tahoe", "id" : "25F5042g", "mobileDeviceMinVersion" : "1827.100.14", "name" : "macOS 26.5 Developer Beta 1", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2026SpringSeed\/fullrestores\/122-21852\/BDB79369-54B9-4326-A5A4-29328983BE3A\/UniversalMac_26.5_25F5042g_Restore.ipsw", "version" : "26.5.0" }, { "build" : "25E253", "channel" : "regular", "downloadSize" : 19734779897, "group" : "tahoe", "id" : "25E253", "mobileDeviceMinVersion" : "1827.100.14", "name" : "macOS 26.4.1", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2026WinterFCS\/fullrestores\/122-28781\/DCB2FF13-06CB-44C2-BCA2-DFCAF3521D46\/UniversalMac_26.4.1_25E253_Restore.ipsw", "version" : "26.4.1" }, { "build" : "25E246", "channel" : "regular", "downloadSize" : 19734835218, "group" : "tahoe", "id" : "25E246", "mobileDeviceMinVersion" : "1827.100.14", "name" : "macOS 26.4", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2026WinterFCS\/fullrestores\/122-00766\/062A6121-2ABE-45D7-BCB1-72B666B6D2C2\/UniversalMac_26.4_25E246_Restore.ipsw", "version" : "26.4.0" }, { "build" : "25E243", "channel" : "devbeta", "downloadSize" : 19734806625, "group" : "tahoe", "id" : "25E243", "mobileDeviceMinVersion" : "1827.100.14", "name" : "macOS 26.4 RC", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2026WinterFCS\/fullrestores\/122-08082\/B9E8695D-7851-435A-8897-6D84A80F4F84\/UniversalMac_26.4_25E243_Restore.ipsw", "version" : "26.4.0" }, { "build" : "25E5233c", "channel" : "devbeta", "downloadSize" : 19731757690, "group" : "tahoe", "id" : "25E5233c", "mobileDeviceMinVersion" : "1827.100.14", "name" : "macOS 26.4 Developer Beta 4", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2026WinterSeed\/fullrestores\/047-94466\/DDE04370-287E-4321-8FAB-8656591CAF70\/UniversalMac_26.4_25E5233c_Restore.ipsw", "version" : "26.4.0" }, { "build" : "25E5223i", "channel" : "devbeta", "downloadSize" : 19222852846, "group" : "tahoe", "id" : "25E5223i", "mobileDeviceMinVersion" : "1827.100.14", "name" : "macOS 26.4 Developer Beta 3", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2026WinterSeed\/fullrestores\/047-83754\/2EAF0D9F-ADAF-402B-9C29-874D9B1E6378\/UniversalMac_26.4_25E5223i_Restore.ipsw", "version" : "26.4.0" }, { "build" : "25E5218f", "channel" : "devbeta", "downloadSize" : 19289481885, "group" : "tahoe", "id" : "25E5218f", "mobileDeviceMinVersion" : "1827.100.14", "name" : "macOS 26.4 Developer Beta 2", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2026WinterSeed\/fullrestores\/047-83734\/6F2EB9BB-586D-4CCA-8C8D-28A02E38AAA2\/UniversalMac_26.4_25E5218f_Restore.ipsw", "version" : "26.4.0" }, { "build" : "25E5207k", "channel" : "devbeta", "downloadSize" : 19289462929, "group" : "tahoe", "id" : "25E5207k", "mobileDeviceMinVersion" : "1810.0.0", "name" : "macOS 26.4 Developer Beta 1", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2026WinterSeed\/fullrestores\/047-01191\/B8945931-E74E-43AC-9370-BFCA2E35392E\/UniversalMac_26.4_25E5207k_Restore.ipsw", "version" : "26.4.0" }, { "build" : "25D2140", "channel" : "regular", "downloadSize" : 19330789958, "group" : "tahoe", "id" : "25D2140", "mobileDeviceMinVersion" : "1810.0.0", "name" : "macOS 26.3.2", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2026WinterFCS\/fullrestores\/047-94879\/40A2B65E-4E49-4EAA-8BEC-62A305007488\/UniversalMac_26.3.2_25D2140_Restore.ipsw", "version" : "26.3.2" }, { "build" : "25D2128", "channel" : "regular", "downloadSize" : 19330833456, "group" : "tahoe", "id" : "25D2128", "mobileDeviceMinVersion" : "1810.0.0", "name" : "macOS 26.3.1", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2026WinterFCS\/fullrestores\/047-88313\/2E098049-1731-4415-A206-546D09301973\/UniversalMac_26.3.1_25D2128_Restore.ipsw", "version" : "26.3.1" }, { "build" : "25D125", "channel" : "regular", "downloadSize" : 18877622182, "group" : "tahoe", "id" : "25D125", "mobileDeviceMinVersion" : "1810.0.0", "name" : "macOS 26.3", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2026WinterFCS\/fullrestores\/047-60229\/6D5DBEA5-75A0-4BEF-ACC9-5ACF9B8DF6B7\/UniversalMac_26.3_25D125_Restore.ipsw", "version" : "26.3.0" }, { "build" : "25D122", "channel" : "devbeta", "downloadSize" : 18877545740, "group" : "tahoe", "id" : "25D122", "mobileDeviceMinVersion" : "1810.0.0", "name" : "macOS 26.3 RC", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2026WinterFCS\/fullrestores\/082-57168\/EE47B566-E405-4A7C-B99E-5BBCA418BF73\/UniversalMac_26.3_25D122_Restore.ipsw", "version" : "26.3.0" }, { "build" : "25D5112c", "channel" : "devbeta", "downloadSize" : 18873995756, "group" : "tahoe", "id" : "25D5112c", "mobileDeviceMinVersion" : "1810.0.0", "name" : "macOS 26.3 Developer Beta 3", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2026WinterSeed\/fullrestores\/047-27561\/D17A405D-58FC-4CD3-9CBD-2FF572E5B45C\/UniversalMac_26.3_25D5112c_Restore.ipsw", "version" : "26.3.0" }, { "build" : "25D5101c", "channel" : "devbeta", "downloadSize" : 18806520160, "group" : "tahoe", "id" : "25D5101c", "mobileDeviceMinVersion" : "1810.0.0", "name" : "macOS 26.3 Developer Beta 2", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2026WinterSeed\/fullrestores\/047-11932\/34528828-0245-4624-9D72-AFB752B2BEA2\/UniversalMac_26.3_25D5101c_Restore.ipsw", "version" : "26.3.0" }, { "build" : "25D5087f", "channel" : "devbeta", "downloadSize" : 18789116337, "group" : "tahoe", "id" : "25D5087f", "mobileDeviceMinVersion" : "1810.0.0", "name" : "macOS 26.3 Developer Beta 1", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2025FallSeed\/fullrestores\/089-61648\/B3DA1DA6-F227-4898-87F1-D6F07AEDC708\/UniversalMac_26.3_25D5087f_Restore.ipsw", "version" : "26.3.0" }, { "build" : "25C56", "channel" : "regular", "downloadSize" : 18741508230, "group" : "tahoe", "id" : "25C56", "mobileDeviceMinVersion" : "1810.0.0", "name" : "macOS 26.2", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2025FallFCS\/fullrestores\/093-37399\/E144C918-CF99-4BBC-B1D0-3E739B9A3F2D\/UniversalMac_26.2_25C56_Restore.ipsw", "version" : "26.2.0" }, { "build" : "25C5048a", "channel" : "devbeta", "downloadSize" : 18721157967, "group" : "tahoe", "id" : "25C5048a", "mobileDeviceMinVersion" : "1810.0.0", "name" : "macOS 26.2 Developer Beta 3", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2025FallSeed\/fullrestores\/089-47061\/439CA6BD-EFD9-4FFF-9C04-6A63838AB6A9\/UniversalMac_26.2_25C5048a_Restore.ipsw", "version" : "26.2.0" }, { "build" : "25C5037j", "channel" : "devbeta", "downloadSize" : 18720456518, "group" : "tahoe", "id" : "25C5037j", "mobileDeviceMinVersion" : "1810.0.0", "name" : "macOS 26.2 Developer Beta 2", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2025FallSeed\/fullrestores\/089-37244\/F3E98428-E443-4226-849D-48649C50B10B\/UniversalMac_26.2_25C5037j_Restore.ipsw", "version" : "26.2.0" }, { "build" : "25C5031i", "channel" : "devbeta", "downloadSize" : 18688911675, "group" : "tahoe", "id" : "25C5031i", "mobileDeviceMinVersion" : "1810.0.0", "name" : "macOS 26.2 Developer Beta 1", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2025FallSeed\/fullrestores\/089-21529\/D038FF08-78B0-4FFE-9E39-2F5A64AE46AB\/UniversalMac_26.2_25C5031i_Restore.ipsw", "version" : "26.2.0" }, { "build" : "25B78", "channel" : "regular", "downloadSize" : 18718884780, "group" : "tahoe", "id" : "25B78", "mobileDeviceMinVersion" : "1810.0.0", "name" : "macOS 26.1", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2025FallFCS\/fullrestores\/089-04148\/791B6F00-A30B-4EB0-B2E3-257167F7715B\/UniversalMac_26.1_25B78_Restore.ipsw", "version" : "26.1.0" }, { "build" : "25B77", "channel" : "devbeta", "downloadSize" : 18718876862, "group" : "tahoe", "id" : "25B77", "mobileDeviceMinVersion" : "1810.0.0", "name" : "macOS 26.1 RC", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2025FallFCS\/fullrestores\/082-71650\/9F912A37-12E8-4AC7-9ABE-F12B1A38D1B1\/UniversalMac_26.1_25B77_Restore.ipsw", "version" : "26.1.0" }, { "build" : "25B5072a", "channel" : "devbeta", "downloadSize" : 18580910549, "group" : "tahoe", "id" : "25B5072a", "mobileDeviceMinVersion" : "1810.0.0", "name" : "macOS 26.1 Developer Beta 4", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2025FallSeed\/fullrestores\/093-85256\/C134DA7F-3E56-47A6-9E51-A83457E42A15\/UniversalMac_26.1_25B5072a_Restore.ipsw", "version" : "26.1.0" }, { "build" : "25B5062e", "channel" : "devbeta", "downloadSize" : 18573497955, "group" : "tahoe", "id" : "25B5062e", "mobileDeviceMinVersion" : "1810.0.0", "name" : "macOS 26.1 Developer Beta 3", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2025FallSeed\/fullrestores\/093-84191\/18D74779-3C02-4F5B-AADC-77259C29ADA1\/UniversalMac_26.1_25B5062e_Restore.ipsw", "version" : "26.1.0" }, { "build" : "25B5057f", "channel" : "devbeta", "downloadSize" : 18573453168, "group" : "tahoe", "id" : "25B5057f", "mobileDeviceMinVersion" : "1810.0.0", "name" : "macOS 26.1 Developer Beta 2", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2025FallSeed\/fullrestores\/093-73644\/970FD02E-AB88-4138-B23A-B8B490E7A2D6\/UniversalMac_26.1_25B5057f_Restore.ipsw", "version" : "26.1.0" }, { "build" : "25B5042k", "channel" : "devbeta", "downloadSize" : 19012528170, "group" : "tahoe", "id" : "25B5042k", "mobileDeviceMinVersion" : "1810.0.0", "name" : "macOS 26.1 Developer Beta 1", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2025FallSeed\/fullrestores\/082-91406\/9745D030-E51F-497A-9E26-1B40A07FE9AE\/UniversalMac_26.1_25B5042k_Restore.ipsw", "version" : "26.1.0" }, { "build" : "25A362", "channel" : "regular", "downloadSize" : 18267682409, "group" : "tahoe", "id" : "25A362", "mobileDeviceMinVersion" : "1810.0.0", "name" : "macOS 26.0.1", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2025FallFCS\/fullrestores\/093-50898\/60AE7E97-3E60-441B-9B34-E603C694C5C1\/UniversalMac_26.0.1_25A362_Restore.ipsw", "version" : "26.0.1" }, { "build" : "25A354", "channel" : "regular", "downloadSize" : 18267586270, "group" : "tahoe", "id" : "25A354", "mobileDeviceMinVersion" : "1810.0.0", "name" : "macOS 26.0", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2025FallFCS\/fullrestores\/093-37622\/CE01FAB2-7F26-48EE-AEE4-5E57A7F6D8BB\/UniversalMac_26.0_25A354_Restore.ipsw", "version" : "26.0.0" }, { "build" : "25A353", "channel" : "devbeta", "downloadSize" : 18250895075, "group" : "tahoe", "id" : "25A353", "mobileDeviceMinVersion" : "1810.0.0", "name" : "macOS 26.0 RC", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2025FallFCS\/fullrestores\/093-37294\/119120C1-6306-4287-AC2B-0AF964CD0B3C\/UniversalMac_26.0_25A353_Restore.ipsw", "version" : "26.0.0" }, { "build" : "25A5351b", "channel" : "devbeta", "downloadSize" : 18110649555, "group" : "tahoe", "id" : "25A5351b", "mobileDeviceMinVersion" : "1810.0.0", "name" : "macOS 26.0 Developer Beta 9", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2025SummerSeed\/fullrestores\/093-28610\/036AE4A3-8A7D-44F1-A26F-ED754C346A74\/UniversalMac_26.0_25A5351b_Restore.ipsw", "version" : "26.0.0" }, { "build" : "25A5349a", "channel" : "devbeta", "downloadSize" : 18110732600, "group" : "tahoe", "id" : "25A5349a", "mobileDeviceMinVersion" : "1810.0.0", "name" : "macOS 26.0 Developer Beta 8", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2025SummerSeed\/fullrestores\/093-26148\/FDF54F82-98DF-4285-A0DB-CB30F4F93C71\/UniversalMac_26.0_25A5349a_Restore.ipsw", "version" : "26.0.0" }, { "build" : "25A5346a", "channel" : "devbeta", "downloadSize" : 18110708260, "group" : "tahoe", "id" : "25A5346a", "mobileDeviceMinVersion" : "1810.0.0", "name" : "macOS 26.0 Developer Beta 7", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2025SummerSeed\/fullrestores\/093-15545\/4C191A6F-E63B-4A9F-8597-6B1880EE09CC\/UniversalMac_26.0_25A5346a_Restore.ipsw", "version" : "26.0.0" }, { "build" : "25A5338b", "channel" : "devbeta", "downloadSize" : 18110631556, "group" : "tahoe", "id" : "25A5338b", "mobileDeviceMinVersion" : "1810.0.0", "name" : "macOS 26.0 Developer Beta 6", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2025SummerSeed\/fullrestores\/093-05416\/26D38526-AE12-4E87-8542-D71CA2EA1A0F\/UniversalMac_26.0_25A5338b_Restore.ipsw", "version" : "26.0.0" }, { "build" : "25A5327h", "channel" : "devbeta", "downloadSize" : 17958910966, "group" : "tahoe", "id" : "25A5327h", "mobileDeviceMinVersion" : "1810.0.0", "name" : "macOS 26.0 Developer Beta 5", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2025SummerSeed\/fullrestores\/093-03417\/C35F3BA3-6DCD-473C-9266-A3BF390520BE\/UniversalMac_26.0_25A5327h_Restore.ipsw", "version" : "26.0.0" }, { "build" : "25A5316i", "channel" : "devbeta", "downloadSize" : 18615400612, "group" : "tahoe", "id" : "25A5316i", "mobileDeviceMinVersion" : "1810.0.0", "name" : "macOS 26.0 Developer Beta 4", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2025SummerSeed\/fullrestores\/082-89871\/D95E6C0D-147C-4F0D-878B-A4534D9B4763\/UniversalMac_26.0_25A5316i_Restore.ipsw", "version" : "26.0.0" }, { "build" : "25A5306g", "channel" : "devbeta", "downloadSize" : 18833175626, "group" : "tahoe", "id" : "25A5306g", "mobileDeviceMinVersion" : "1810.0.0", "name" : "macOS 26.0 Developer Beta 3", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2025SummerSeed\/fullrestores\/082-72248\/F32F08F8-FC66-4D24-847B-F03C6CF7C410\/UniversalMac_26.0_25A5306g_Restore.ipsw", "version" : "26.0.0" }, { "build" : "24G90", "channel" : "regular", "downloadSize" : 16814137790, "group" : "sequoia", "id" : "24G90", "mobileDeviceMinVersion" : "1774.0.0", "name" : "macOS 15.6.1", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2025SummerFCS\/fullrestores\/093-10809\/CFD6DD38-DAF0-40DA-854F-31AAD1294C6F\/UniversalMac_15.6.1_24G90_Restore.ipsw", "version" : "15.6.1" }, { "build" : "24G84", "channel" : "regular", "downloadSize" : 16814076831, "group" : "sequoia", "id" : "24G84", "mobileDeviceMinVersion" : "1774.0.0", "name" : "macOS 15.6", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2025SummerFCS\/fullrestores\/082-08674\/51294E4D-A273-44BE-A280-A69FC347FB87\/UniversalMac_15.6_24G84_Restore.ipsw", "version" : "15.6.0" }, { "build" : "24G5074c", "channel" : "devbeta", "downloadSize" : 16877900839, "group" : "sequoia", "id" : "24G5074c", "mobileDeviceMinVersion" : "1774.0.0", "name" : "macOS 15.6 Developer Beta 3", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2025SpringSeed\/fullrestores\/082-70173\/CA418AAE-B538-4B79-AA99-303369C6A512\/UniversalMac_15.6_24G5074c_Restore.ipsw", "version" : "15.6.0" }, { "build" : "24G5065c", "channel" : "devbeta", "downloadSize" : 16877786738, "group" : "sequoia", "id" : "24G5065c", "mobileDeviceMinVersion" : "1774.0.0", "name" : "macOS 15.6 Developer Beta 2", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2025SpringSeed\/fullrestores\/082-62583\/9DB8F3CA-FCE0-45B5-8C17-6A4BF5E5A706\/UniversalMac_15.6_24G5065c_Restore.ipsw", "version" : "15.6.0" }, { "build" : "25A5295e", "channel" : "devbeta", "downloadSize" : 18740071846, "group" : "tahoe", "id" : "25A5295e", "mobileDeviceMinVersion" : "1810.0.0", "name" : "macOS 26.0 Developer Beta 2", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2025SummerSeed\/fullrestores\/082-58035\/4434D4B0-E61D-483F-87A0-4643F9D4750D\/UniversalMac_26.0_25A5295e_Restore.ipsw", "version" : "26.0.0" }, { "build" : "25A5279m", "channel" : "devbeta", "downloadSize" : 18287329125, "group" : "tahoe", "id" : "25A5279m", "mobileDeviceMinVersion" : "1810.0.0", "name" : "macOS 26.0 Developer Beta 1", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2025SummerSeed\/fullrestores\/082-55592\/95F6DA16-4116-491E-B332-7165C051E1C5\/UniversalMac_26.0_25A5279m_Restore.ipsw", "version" : "26.0.0" }, { "build" : "24G5054d", "channel" : "devbeta", "downloadSize" : 16877678522, "group" : "sequoia", "id" : "24G5054d", "mobileDeviceMinVersion" : "1774.0.0", "name" : "macOS 15.6 Developer Beta 1", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2025SpringSeed\/fullrestores\/082-29051\/6E674436-7F60-4CEC-B318-C0062D336517\/UniversalMac_15.6_24G5054d_Restore.ipsw", "version" : "15.6.0" }, { "build" : "24F74", "channel" : "regular", "downloadSize" : 16879691985, "group" : "sequoia", "id" : "24F74", "mobileDeviceMinVersion" : "1774.0.0", "name" : "macOS 15.5", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2025SpringFCS\/fullrestores\/082-44534\/CE6C1054-99A3-4F67-A823-3EE9E6510CDE\/UniversalMac_15.5_24F74_Restore.ipsw", "version" : "15.5.0" }, { "build" : "24F5068b", "channel" : "devbeta", "downloadSize" : 16876550506, "group" : "sequoia", "id" : "24F5068b", "mobileDeviceMinVersion" : "1774.0.0", "name" : "macOS 15.5 Developer Beta 4", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2025SpringSeed\/fullrestores\/082-42002\/44CF75E3-7765-4356-A88C-5EEEC4471CA4\/UniversalMac_15.5_24F5068b_Restore.ipsw", "version" : "15.5.0" }, { "build" : "24F5053j", "channel" : "devbeta", "downloadSize" : 16809364641, "group" : "sequoia", "id" : "24F5053j", "mobileDeviceMinVersion" : "1774.0.0", "name" : "macOS 15.5 Developer Beta 3", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2025SpringSeed\/fullrestores\/072-92980\/8E6DFD3B-8438-423F-8FFE-A95234775E84\/UniversalMac_15.5_24F5053j_Restore.ipsw", "version" : "15.5.0" }, { "build" : "24F5053f", "channel" : "devbeta", "downloadSize" : 16876267533, "group" : "sequoia", "id" : "24F5053f", "mobileDeviceMinVersion" : "1774.0.0", "name" : "macOS 15.5 Developer Beta 2", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2025SpringSeed\/fullrestores\/082-24561\/B199D1B2-296D-43E5-A29A-5FC27796F36D\/UniversalMac_15.5_24F5053f_Restore.ipsw", "version" : "15.5.0" }, { "build" : "24F5042g", "channel" : "devbeta", "downloadSize" : 16875810487, "group" : "sequoia", "id" : "24F5042g", "mobileDeviceMinVersion" : "1774.0.0", "name" : "macOS 15.5 Developer Beta 1", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2025SpringSeed\/fullrestores\/072-94893\/B85463BB-3ED6-4A5A-BE78-92AD86B531D7\/UniversalMac_15.5_24F5042g_Restore.ipsw", "version" : "15.5.0" }, { "build" : "24E263", "channel" : "regular", "downloadSize" : 16808445859, "group" : "sequoia", "id" : "24E263", "mobileDeviceMinVersion" : "1774.0.0", "name" : "macOS 15.4.1", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2025SpringFCS\/fullrestores\/082-23340\/61923341-EE73-4C6E-BB3E-DAB3069548BF\/UniversalMac_15.4.1_24E263_Restore.ipsw", "version" : "15.4.1" }, { "build" : "24E248", "channel" : "regular", "downloadSize" : 16808408047, "group" : "sequoia", "id" : "24E248", "mobileDeviceMinVersion" : "1774.0.0", "name" : "macOS 15.4", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2025SpringFCS\/fullrestores\/082-16517\/AACDDC33-9683-4431-98AF-F04EF7C15EE3\/UniversalMac_15.4_24E248_Restore.ipsw", "version" : "15.4.0" }, { "build" : "24E247", "channel" : "devbeta", "downloadSize" : 16808392577, "group" : "sequoia", "id" : "24E247", "mobileDeviceMinVersion" : "1774.0.0", "name" : "macOS 15.4 RC 2", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2025SpringFCS\/fullrestores\/082-13483\/7D547A66-A1A6-48C1-A8E1-FE78559BDD34\/UniversalMac_15.4_24E247_Restore.ipsw", "version" : "15.4.0" }, { "build" : "24E246", "channel" : "devbeta", "downloadSize" : 16808427372, "group" : "sequoia", "id" : "24E246", "mobileDeviceMinVersion" : "1774.0.0", "name" : "macOS 15.4 RC", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2025SpringFCS\/fullrestores\/082-13013\/C3CAC9AF-B139-4924-BE1B-10ED6EF931A4\/UniversalMac_15.4_24E246_Restore.ipsw", "version" : "15.4.0" }, { "build" : "24E5238a", "channel" : "devbeta", "downloadSize" : 16805266642, "group" : "sequoia", "id" : "24E5238a", "mobileDeviceMinVersion" : "1774.0.0", "name" : "macOS 15.4 Developer Beta 4", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2025WinterSeed\/fullrestores\/082-08323\/FD7D7539-514F-4F2E-AD3B-4D6D0D248706\/UniversalMac_15.4_24E5238a_Restore.ipsw", "version" : "15.4.0" }, { "build" : "24E5228e", "channel" : "devbeta", "downloadSize" : 16805273503, "group" : "sequoia", "id" : "24E5228e", "mobileDeviceMinVersion" : "1774.0.0", "name" : "macOS 15.4 Developer Beta 3", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2025WinterSeed\/fullrestores\/072-96972\/D76A7AE6-3A35-4295-B102-E5FC5C84B4DC\/UniversalMac_15.4_24E5228e_Restore.ipsw", "version" : "15.4.0" }, { "build" : "24E5222f", "channel" : "devbeta", "downloadSize" : 16602610887, "group" : "sequoia", "id" : "24E5222f", "mobileDeviceMinVersion" : "1774.0.0", "name" : "macOS 15.4 Developer Beta 2", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2025WinterSeed\/fullrestores\/072-90273\/76B9EE73-0836-47FB-8CBA-E3E902ACD21A\/UniversalMac_15.4_24E5222f_Restore.ipsw", "version" : "15.4.0" }, { "build" : "24E5206s", "channel" : "devbeta", "downloadSize" : 16598479538, "group" : "sequoia", "id" : "24E5206s", "mobileDeviceMinVersion" : "1774.0.0", "name" : "macOS 15.4 Developer Beta 1", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2025WinterSeed\/fullrestores\/072-92205\/1FCDCB29-B8A3-4461-A98A-270F1D1121C8\/UniversalMac_15.4_24E5206s_Restore.ipsw", "version" : "15.4.0" }, { "build" : "24D81", "channel" : "regular", "downloadSize" : 16532705221, "group" : "sequoia", "id" : "24D81", "mobileDeviceMinVersion" : "1754.0.0", "name" : "macOS 15.3.2", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2025WinterFCS\/fullrestores\/082-01504\/828B8EF9-8134-49D5-B24A-0BA504FC5ECC\/UniversalMac_15.3.2_24D81_Restore.ipsw", "version" : "15.3.2" }, { "build" : "24D70", "channel" : "regular", "downloadSize" : 16532837554, "group" : "sequoia", "id" : "24D70", "mobileDeviceMinVersion" : "1754.0.0", "name" : "macOS 15.3.1", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2025WinterFCS\/fullrestores\/072-70618\/42F1A8CC-7E07-4329-958A-757FF600C303\/UniversalMac_15.3.1_24D70_Restore.ipsw", "version" : "15.3.1" }, { "build" : "24D60", "channel" : "regular", "downloadSize" : 16532796141, "group" : "sequoia", "id" : "24D60", "mobileDeviceMinVersion" : "1754.0.0", "name" : "macOS 15.3", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2025WinterFCS\/fullrestores\/072-08269\/7CAAB9F7-E970-428D-8764-4CD7BCD105CD\/UniversalMac_15.3_24D60_Restore.ipsw", "version" : "15.3.0" }, { "build" : "24D5055b", "channel" : "devbeta", "downloadSize" : 16529416640, "group" : "sequoia", "id" : "24D5055b", "mobileDeviceMinVersion" : "1754.0.0", "name" : "macOS 15.3 Developer Beta 3", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2025WinterSeed\/fullrestores\/072-61910\/64022727-D907-4A4F-963E-CADF5C74E1A7\/UniversalMac_15.3_24D5055b_Restore.ipsw", "version" : "15.3.0" }, { "build" : "24D5040f", "channel" : "devbeta", "downloadSize" : 16529508256, "group" : "sequoia", "id" : "24D5040f", "mobileDeviceMinVersion" : "1754.0.0", "name" : "macOS 15.3 Developer Beta 2", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2025WinterSeed\/fullrestores\/072-51416\/CB0B4DD0-1512-47FF-91B8-862ECB6CD2CF\/UniversalMac_15.3_24D5040f_Restore.ipsw", "version" : "15.3.0" }, { "build" : "24D5034f", "channel" : "devbeta", "downloadSize" : 16528933369, "group" : "sequoia", "id" : "24D5034f", "mobileDeviceMinVersion" : "1754.0.0", "name" : "macOS 15.3 Developer Beta 1", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2024FallSeed\/fullrestores\/072-29298\/D5353B95-E6B5-42DA-8DC3-664A28FFB1B9\/UniversalMac_15.3_24D5034f_Restore.ipsw", "version" : "15.3.0" }, { "build" : "24C101", "channel" : "regular", "downloadSize" : 16532456817, "group" : "sequoia", "id" : "24C101", "mobileDeviceMinVersion" : "1754.0.0", "name" : "macOS 15.2", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2024FallFCS\/fullrestores\/072-44245\/E811A1B0-28A9-4FCD-AE32-322E796F0EB8\/UniversalMac_15.2_24C101_Restore.ipsw", "version" : "15.2.0" }, { "build" : "24C100", "channel" : "devbeta", "downloadSize" : 16532519706, "group" : "sequoia", "id" : "24C100", "mobileDeviceMinVersion" : "1754.0.0", "name" : "macOS 15.2 RC 2", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2024FallFCS\/fullrestores\/072-39903\/D467F0BB-9D59-4DCF-A355-DD200CE808A8\/UniversalMac_15.2_24C100_Restore.ipsw", "version" : "15.2.0" }, { "build" : "24C98", "channel" : "devbeta", "downloadSize" : 16532504882, "group" : "sequoia", "id" : "24C98", "mobileDeviceMinVersion" : "1754.0.0", "name" : "macOS 15.2 RC", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2024FallFCS\/fullrestores\/072-38683\/C48192CB-7F42-4DD2-9EE6-0F6691DC088E\/UniversalMac_15.2_24C98_Restore.ipsw", "version" : "15.2.0" }, { "build" : "24C5089c", "channel" : "devbeta", "downloadSize" : 16529207615, "group" : "sequoia", "id" : "24C5089c", "mobileDeviceMinVersion" : "1754.0.0", "name" : "macOS 15.2 Developer Beta 4", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2024FallSeed\/fullrestores\/072-35468\/AF95DCD4-137A-4E7D-A5D8-E12009F4B0EF\/UniversalMac_15.2_24C5089c_Restore.ipsw", "version" : "15.2.0" }, { "build" : "24C5079e", "channel" : "devbeta", "downloadSize" : 16529245021, "group" : "sequoia", "id" : "24C5079e", "mobileDeviceMinVersion" : "1754.0.0", "name" : "macOS 15.2 Developer Beta 3", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2024FallSeed\/fullrestores\/072-18002\/44DBAF90-E56D-43E0-81F1-016B12E7FE27\/UniversalMac_15.2_24C5079e_Restore.ipsw", "version" : "15.2.0" }, { "build" : "24C5073e", "channel" : "devbeta", "downloadSize" : 16529788046, "group" : "sequoia", "id" : "24C5073e", "mobileDeviceMinVersion" : "1754.0.0", "name" : "macOS 15.2 Developer Beta 2", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2024FallSeed\/fullrestores\/072-11046\/F7A6FD60-0556-437D-88B6-6F2DD2CD8B96\/UniversalMac_15.2_24C5073e_Restore.ipsw", "version" : "15.2.0" }, { "build" : "24B2091", "channel" : "regular", "downloadSize" : 15516666958, "group" : "sequoia", "id" : "24B2091", "mobileDeviceMinVersion" : "1754.0.0", "name" : "macOS 15.1.1 (24B2091)", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2024FallFCS\/fullrestores\/072-29960\/5EEC3C20-D7CB-4DD1-9CE4-7C177F531A41\/UniversalMac_15.1.1_24B2091_Restore.ipsw", "version" : "15.1.1" }, { "build" : "24B91", "channel" : "regular", "downloadSize" : 15755042223, "group" : "sequoia", "id" : "24B91", "mobileDeviceMinVersion" : "1754.0.0", "name" : "macOS 15.1.1", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2024FallFCS\/fullrestores\/072-30094\/44BD016F-6EE3-4EE5-8890-6F9AA008C537\/UniversalMac_15.1.1_24B91_Restore.ipsw", "version" : "15.1.1" }, { "build" : "24B2083", "channel" : "regular", "downloadSize" : 15516638342, "group" : "sequoia", "id" : "24B2083", "mobileDeviceMinVersion" : "1754.0.0", "name" : "macOS 15.1 (24B2083)", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2024FallFCS\/fullrestores\/072-12302\/3786987A-AD94-4BFB-81B8-56D3841CA81B\/UniversalMac_15.1_24B2083_Restore.ipsw", "version" : "15.1.0" }, { "build" : "24B83", "channel" : "regular", "downloadSize" : 15738221177, "group" : "sequoia", "id" : "24B83", "mobileDeviceMinVersion" : "1754.0.0", "name" : "macOS 15.1", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2024FallFCS\/fullrestores\/072-12340\/78D28AC4-CCFC-45D2-BD27-1E5D915E43F9\/UniversalMac_15.1_24B83_Restore.ipsw", "version" : "15.1.0" }, { "build" : "24B82", "channel" : "devbeta", "downloadSize" : 15755058094, "group" : "sequoia", "id" : "24B82", "mobileDeviceMinVersion" : "1754.0.0", "name" : "macOS 15.1 RC", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2024FallFCS\/fullrestores\/062-24344\/4BBFA6BD-C58F-4C82-B793-6ECA98024379\/UniversalMac_15.1_24B82_Restore.ipsw", "version" : "15.1.0" }, { "build" : "24B5070a", "channel" : "devbeta", "downloadSize" : 15734880172, "group" : "sequoia", "id" : "24B5070a", "mobileDeviceMinVersion" : "1754.0.0", "name" : "macOS 15.1 Developer Beta 6", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2024FallSeed\/fullrestores\/072-00383\/7EB106DF-9B03-4C2A-ACD1-997B0BFF9364\/UniversalMac_15.1_24B5070a_Restore.ipsw", "version" : "15.1.0" }, { "build" : "24B5055e", "channel" : "devbeta", "downloadSize" : 15734924985, "group" : "sequoia", "id" : "24B5055e", "mobileDeviceMinVersion" : "1754.0.0", "name" : "macOS 15.1 Developer Beta 5", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2024FallSeed\/fullrestores\/062-91081\/FADE991A-C188-4D32-8F97-313F57E27359\/UniversalMac_15.1_24B5055e_Restore.ipsw", "version" : "15.1.0" }, { "build" : "24B5046f", "channel" : "devbeta", "downloadSize" : 15870172423, "group" : "sequoia", "id" : "24B5046f", "mobileDeviceMinVersion" : "1754.0.0", "name" : "macOS 15.1 Developer Beta 4", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2024FallSeed\/fullrestores\/062-80453\/61A07BD2-553D-425D-8B93-7E5A730AA4CA\/UniversalMac_15.1_24B5046f_Restore.ipsw", "version" : "15.1.0" }, { "build" : "24B5035e", "channel" : "devbeta", "downloadSize" : 15869388891, "group" : "sequoia", "id" : "24B5035e", "mobileDeviceMinVersion" : "1754.0.0", "name" : "macOS 15.1 Developer Beta 3", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2024SummerSeed\/fullrestores\/062-74506\/D50AC8F9-4795-4711-9C1A-907B6EB829A2\/UniversalMac_15.1_24B5035e_Restore.ipsw", "version" : "15.1.0" }, { "build" : "24A348", "channel" : "regular", "downloadSize" : 15737037399, "group" : "sequoia", "id" : "24A348", "mobileDeviceMinVersion" : "1754.0.0", "name" : "macOS 15.0.1", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2024FallFCS\/fullrestores\/072-01423\/566E5B4E-1100-4643-91B3-131247351844\/UniversalMac_15.0.1_24A348_Restore.ipsw", "version" : "15.0.1" }, { "build" : "24A335", "channel" : "regular", "downloadSize" : 15736994120, "group" : "sequoia", "id" : "24A335", "mobileDeviceMinVersion" : "1754.0.0", "name" : "macOS 15.0", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2024FallFCS\/fullrestores\/062-78489\/BDA44327-C79E-4608-A7E0-455A7E91911F\/UniversalMac_15.0_24A335_Restore.ipsw", "version" : "15.0.0" }, { "build" : "24A5331b", "channel" : "devbeta", "downloadSize" : 15598810418, "group" : "sequoia", "id" : "24A5331b", "mobileDeviceMinVersion" : "1754.0.0", "name" : "macOS 15.0 Developer Beta 8", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2024SummerSeed\/fullrestores\/062-71949\/A67919DD-2AAC-4324-99BF-70765065DD70\/UniversalMac_15.0_24A5331b_Restore.ipsw", "version" : "15.0.0" }, { "build" : "24A5327a", "channel" : "devbeta", "downloadSize" : 15598903779, "group" : "sequoia", "id" : "24A5327a", "mobileDeviceMinVersion" : "1754.0.0", "name" : "macOS 15.0 Developer Beta 7", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2024SummerSeed\/fullrestores\/062-64520\/F98C92F6-656A-46BB-A1DB-F447698DBB72\/UniversalMac_15.0_24A5327a_Restore.ipsw", "version" : "15.0.0" }, { "build" : "24A5320a", "channel" : "devbeta", "downloadSize" : 15598703819, "group" : "sequoia", "id" : "24A5320a", "mobileDeviceMinVersion" : "1754.0.0", "name" : "macOS 15.0 Developer Beta 6", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2024SummerSeed\/fullrestores\/062-59123\/7B77FE01-E040-4D4A-8E93-64BBF212A351\/UniversalMac_15.0_24A5320a_Restore.ipsw", "version" : "15.0.0" }, { "build" : "24A5309e", "channel" : "devbeta", "downloadSize" : 16020119097, "group" : "sequoia", "id" : "24A5309e", "mobileDeviceMinVersion" : "1754.0.0", "name" : "macOS 15.0 Developer Beta 5", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2024SummerSeed\/fullrestores\/062-45756\/5B063A0C-5ECA-434B-A462-CD1F65737105\/UniversalMac_15.0_24A5309e_Restore.ipsw", "version" : "15.0.0" }, { "build" : "24A5298h", "channel" : "devbeta", "downloadSize" : 15892020340, "group" : "sequoia", "id" : "24A5298h", "mobileDeviceMinVersion" : "1754.0.0", "name" : "macOS 15.0 Developer Beta 4", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2024SummerSeed\/fullrestores\/062-39288\/8A58D88A-ED62-4E46-A406-13F0294EB4F5\/UniversalMac_15.0_24A5298h_Restore.ipsw", "version" : "15.0.0" }, { "build" : "24A5289h", "channel" : "devbeta", "downloadSize" : 15756935317, "group" : "sequoia", "id" : "24A5289h", "mobileDeviceMinVersion" : "1742.0.0", "name" : "macOS 15.0 Developer Beta 3 (24A5289h)", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2024SummerSeed\/fullrestores\/062-36090\/83523325-6540-4A17-BA93-A5849E4E9AC2\/UniversalMac_15.0_24A5289h_Restore.ipsw", "version" : "15.0.0" }, { "build" : "24A5289g", "channel" : "devbeta", "downloadSize" : 15756393703, "group" : "sequoia", "id" : "24A5289g", "mobileDeviceMinVersion" : "1742.0.0", "name" : "macOS 15.0 Developer Beta 3", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2024SummerSeed\/fullrestores\/062-33928\/E22622FB-DAFC-4C64-8CC6-B7CAF89477F7\/UniversalMac_15.0_24A5289g_Restore.ipsw", "version" : "15.0.0" }, { "build" : "24A5279h", "channel" : "devbeta", "downloadSize" : 16230968934, "group" : "sequoia", "id" : "24A5279h", "mobileDeviceMinVersion" : "1742.0.0", "name" : "macOS 15.0 Developer Beta 2", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2024SummerSeed\/fullrestores\/062-22022\/AB066FFB-B7FE-4132-83AC-E58A323805C1\/UniversalMac_15.0_24A5279h_Restore.ipsw", "version" : "15.0.0" }, { "build" : "24A5264n", "channel" : "devbeta", "downloadSize" : 15824875957, "group" : "sequoia", "id" : "24A5264n", "mobileDeviceMinVersion" : "1742.0.0", "name" : "macOS 15.0 Developer Beta 1", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2024SummerSeed\/fullrestores\/052-49083\/ED8F54D6-A7BF-488A-85E5-617E08C41383\/UniversalMac_15.0_24A5264n_Restore.ipsw", "version" : "15.0.0" }, { "build" : "23G93", "channel" : "regular", "downloadSize" : 14790601661, "group" : "sonoma", "id" : "23G93", "mobileDeviceMinVersion" : "1600.0.0", "name" : "macOS 14.6.1", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2024SummerFCS\/fullrestores\/062-52859\/932E0A8F-6644-4759-82DA-F8FA8DEA806A\/UniversalMac_14.6.1_23G93_Restore.ipsw", "version" : "14.6.1" }, { "build" : "23G80", "channel" : "regular", "downloadSize" : 14790718754, "group" : "sonoma", "id" : "23G80", "mobileDeviceMinVersion" : "1600.0.0", "name" : "macOS 14.6", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2024SummerFCS\/fullrestores\/052-69922\/F5DA2B64-25EB-4370-9E89-FA5689859796\/UniversalMac_14.6_23G80_Restore.ipsw", "version" : "14.6.0" }, { "build" : "23G5075b", "channel" : "devbeta", "downloadSize" : 14634053502, "group" : "sonoma", "id" : "23G5075b", "mobileDeviceMinVersion" : "1600.0.0", "name" : "macOS 14.6 Developer Beta 4", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2024SpringSeed\/fullrestores\/062-37092\/7D35E462-CD30-4B65-A1D6-D2AF0DA9AED8\/UniversalMac_14.6_23G5075b_Restore.ipsw", "version" : "14.6.0" }, { "build" : "23G5066c", "channel" : "devbeta", "downloadSize" : 14631054851, "group" : "sonoma", "id" : "23G5066c", "mobileDeviceMinVersion" : "1600.0.0", "name" : "macOS 14.6 Developer Beta 3", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2024SpringSeed\/fullrestores\/062-28262\/A4400A1D-9F38-41F7-B1CD-B3CB782DA2A3\/UniversalMac_14.6_23G5066c_Restore.ipsw", "version" : "14.6.0" }, { "build" : "23G5061b", "channel" : "devbeta", "downloadSize" : 14647192213, "group" : "sonoma", "id" : "23G5061b", "mobileDeviceMinVersion" : "1600.0.0", "name" : "macOS 14.6 Developer Beta 2", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2024SpringSeed\/fullrestores\/062-20934\/B03E5DE3-1484-489F-AC53-956AC17DB7F0\/UniversalMac_14.6_23G5061b_Restore.ipsw", "version" : "14.6.0" }, { "build" : "23G5052d", "channel" : "devbeta", "downloadSize" : 14640728273, "group" : "sonoma", "id" : "23G5052d", "mobileDeviceMinVersion" : "1600.0.0", "name" : "macOS 14.6 Developer Beta 1", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2024SpringSeed\/fullrestores\/052-91270\/121EBE77-A313-4250-9F8D-55F2AABBCD4C\/UniversalMac_14.6_23G5052d_Restore.ipsw", "version" : "14.6.0" }, { "build" : "23F79", "channel" : "regular", "downloadSize" : 14801044197, "group" : "sonoma", "id" : "23F79", "mobileDeviceMinVersion" : "1600.0.0", "name" : "macOS 14.5", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2024SpringFCS\/fullrestores\/062-01897\/C874907B-9F82-4109-87EB-6B3C9BF1507D\/UniversalMac_14.5_23F79_Restore.ipsw", "version" : "14.5.0" }, { "build" : "23F5074a", "channel" : "devbeta", "downloadSize" : 14631266856, "group" : "sonoma", "id" : "23F5074a", "mobileDeviceMinVersion" : "1600.0.0", "name" : "macOS 14.5 Developer Beta 4", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2024SpringSeed\/fullrestores\/052-93222\/8E2C4935-6FAA-4624-88D5-008966BD1A4C\/UniversalMac_14.5_23F5074a_Restore.ipsw", "version" : "14.5.0" }, { "build" : "23F5064f", "channel" : "devbeta", "downloadSize" : 14612241697, "group" : "sonoma", "id" : "23F5064f", "mobileDeviceMinVersion" : "1600.0.0", "name" : "macOS 14.5 Developer Beta 3", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2024SpringSeed\/fullrestores\/052-86827\/74D9C6E6-396C-451B-8ACD-DB523D9FA93F\/UniversalMac_14.5_23F5064f_Restore.ipsw", "version" : "14.5.0" }, { "build" : "23F5059e", "channel" : "devbeta", "downloadSize" : 14625397506, "group" : "sonoma", "id" : "23F5059e", "mobileDeviceMinVersion" : "1600.0.0", "name" : "macOS 14.5 Developer Beta 2", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2024SpringSeed\/fullrestores\/052-84344\/599ECB0B-BF84-449F-B0D1-1428CFFAACC5\/UniversalMac_14.5_23F5059e_Restore.ipsw", "version" : "14.5.0" }, { "build" : "23F5049f", "channel" : "devbeta", "downloadSize" : 14617671816, "group" : "sonoma", "id" : "23F5049f", "mobileDeviceMinVersion" : "1600.0.0", "name" : "macOS 14.5 Developer Beta 1", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2024SpringSeed\/fullrestores\/052-63630\/11AFEFAF-A420-4CAE-84E7-D66530A7E9CA\/UniversalMac_14.5_23F5049f_Restore.ipsw", "version" : "14.5.0" }, { "build" : "23E224", "channel" : "regular", "downloadSize" : 14744062393, "group" : "sonoma", "id" : "23E224", "mobileDeviceMinVersion" : "1600.0.0", "name" : "macOS 14.4.1", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2024WinterFCS\/fullrestores\/052-77579\/4569734E-120C-4F31-AD08-FC1FF825D059\/UniversalMac_14.4.1_23E224_Restore.ipsw", "version" : "14.4.1" }, { "build" : "23E214", "channel" : "regular", "downloadSize" : 14744505377, "group" : "sonoma", "id" : "23E214", "mobileDeviceMinVersion" : "1600.0.0", "name" : "macOS 14.4", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2024WinterFCS\/fullrestores\/052-61990\/47F0DD06-1106-4F2E-9CD6-AE6B361A0EC6\/UniversalMac_14.4_23E214_Restore.ipsw", "version" : "14.4.0" }, { "build" : "23E5211a", "channel" : "devbeta", "downloadSize" : 14553892980, "group" : "sonoma", "id" : "23E5211a", "mobileDeviceMinVersion" : "1600.0.0", "name" : "macOS 14.4 Developer Beta 5", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2024WinterSeed\/fullrestores\/052-59970\/42D9D34A-DD6E-40D5-AA2B-EEB8E65EE64E\/UniversalMac_14.4_23E5211a_Restore.ipsw", "version" : "14.4.0" }, { "build" : "23E5205c", "channel" : "devbeta", "downloadSize" : 14556773482, "group" : "sonoma", "id" : "23E5205c", "mobileDeviceMinVersion" : "1600.0.0", "name" : "macOS 14.4 Developer Beta 4", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2024WinterSeed\/fullrestores\/052-58286\/18DAC58E-4161-45D4-BE02-AE47B12B87B8\/UniversalMac_14.4_23E5205c_Restore.ipsw", "version" : "14.4.0" }, { "build" : "23E5196e", "channel" : "devbeta", "downloadSize" : 14552980775, "group" : "sonoma", "id" : "23E5196e", "mobileDeviceMinVersion" : "1600.0.0", "name" : "macOS 14.4 Developer Beta 3", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2024WinterSeed\/fullrestores\/052-51632\/C6A7A58A-3CB1-4271-9CED-1D5DAE9078CF\/UniversalMac_14.4_23E5196e_Restore.ipsw", "version" : "14.4.0" }, { "build" : "23E5191e", "channel" : "devbeta", "downloadSize" : 14560421496, "group" : "sonoma", "id" : "23E5191e", "mobileDeviceMinVersion" : "1600.0.0", "name" : "macOS 14.4 Developer Beta 2", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2024WinterSeed\/fullrestores\/052-45324\/985FEED9-1A9E-49EB-A904-467E5E7EEE9C\/UniversalMac_14.4_23E5191e_Restore.ipsw", "version" : "14.4.0" }, { "build" : "23E5180j", "channel" : "devbeta", "downloadSize" : 14526761461, "group" : "sonoma", "id" : "23E5180j", "mobileDeviceMinVersion" : "1600.0.0", "name" : "macOS 14.4 Developer Beta 1", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2024WinterSeed\/fullrestores\/052-42583\/F09F735D-D3C3-4AF7-9BEC-F9C5D3B84363\/UniversalMac_14.4_23E5180j_Restore.ipsw", "version" : "14.4.0" }, { "build" : "23D60", "channel" : "regular", "downloadSize" : 14503964718, "group" : "sonoma", "id" : "23D60", "mobileDeviceMinVersion" : "1600.0.0", "name" : "macOS 14.3.1", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2024WinterFCS\/fullrestores\/052-40770\/72916BCC-D357-422D-A4A2-EF1DEDF6968C\/UniversalMac_14.3.1_23D60_Restore.ipsw", "version" : "14.3.1" }, { "build" : "23D56", "channel" : "regular", "downloadSize" : 14505910832, "group" : "sonoma", "id" : "23D56", "mobileDeviceMinVersion" : "1600.0.0", "name" : "macOS 14.3", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2024WinterFCS\/fullrestores\/042-78241\/B45074EB-2891-4C05-BCA4-7463F3AC0982\/UniversalMac_14.3_23D56_Restore.ipsw", "version" : "14.3.0" }, { "build" : "23D5051b", "channel" : "devbeta", "downloadSize" : 14345532149, "group" : "sonoma", "id" : "23D5051b", "mobileDeviceMinVersion" : "1600.0.0", "name" : "macOS 14.3 Developer Beta 3", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2023WinterSeed\/fullrestores\/052-27952\/6B395980-45C8-4E7C-9252-9F4CE35C7EDB\/UniversalMac_14.3_23D5051b_Restore.ipsw", "version" : "14.3.0" }, { "build" : "23D5043d", "channel" : "devbeta", "downloadSize" : 14354286748, "group" : "sonoma", "id" : "23D5043d", "mobileDeviceMinVersion" : "1600.0.0", "name" : "macOS 14.3 Developer Beta 2", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2023WinterSeed\/fullrestores\/052-23267\/60655998-DD9A-40BF-BFAB-6D2A4442DE83\/UniversalMac_14.3_23D5043d_Restore.ipsw", "version" : "14.3.0" }, { "build" : "23D5033f", "channel" : "devbeta", "downloadSize" : 14349582906, "group" : "sonoma", "id" : "23D5033f", "mobileDeviceMinVersion" : "1600.0.0", "name" : "macOS 14.3 Developer Beta 1", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2023WinterSeed\/fullrestores\/052-04657\/4126C431-B3EA-42C2-BC36-ED83715B8700\/UniversalMac_14.3_23D5033f_Restore.ipsw", "version" : "14.3.0" }, { "build" : "23C71", "channel" : "regular", "downloadSize" : 14489499738, "group" : "sonoma", "id" : "23C71", "mobileDeviceMinVersion" : "1600.0.0", "name" : "macOS 14.2.1", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2023FallFCS\/fullrestores\/052-22662\/ECE59A41-DACC-4CA5-AB23-FDED1A4567DE\/UniversalMac_14.2.1_23C71_Restore.ipsw", "version" : "14.2.1" }, { "build" : "23C64", "channel" : "regular", "downloadSize" : 14488791535, "group" : "sonoma", "id" : "23C64", "mobileDeviceMinVersion" : "1600.0.0", "name" : "macOS 14.2", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2023FallFCS\/fullrestores\/052-15117\/DC2EE605-ABF3-41AE-9652-D137A8AA5907\/UniversalMac_14.2_23C64_Restore.ipsw", "version" : "14.2.0" }, { "build" : "23C63", "channel" : "devbeta", "downloadSize" : 14489489499, "group" : "sonoma", "id" : "23C63", "mobileDeviceMinVersion" : "1600.0.0", "name" : "macOS 14.2 RC", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2023FallFCS\/fullrestores\/052-14744\/7215DBB4-BEAD-4A9C-9202-276ABA6832D5\/UniversalMac_14.2_23C63_Restore.ipsw", "version" : "14.2.0" }, { "build" : "23C5055b", "channel" : "devbeta", "downloadSize" : 14332799879, "group" : "sonoma", "id" : "23C5055b", "mobileDeviceMinVersion" : "1600.0.0", "name" : "macOS 14.2 Developer Beta 4", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2023WinterFCS\/fullrestores\/052-05962\/A8344C85-06CE-43C7-9FF6-7B477A4DB8BA\/UniversalMac_14.2_23C5055b_Restore.ipsw", "version" : "14.2.0" }, { "build" : "23C5047e", "channel" : "devbeta", "downloadSize" : 14324106377, "group" : "sonoma", "id" : "23C5047e", "mobileDeviceMinVersion" : "1600.0.0", "name" : "macOS 14.2 Developer Beta 3", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2023FallSeed\/fullrestores\/042-99526\/0A9085CC-B36A-400A-86D8-B9FE23B1DA29\/UniversalMac_14.2_23C5047e_Restore.ipsw", "version" : "14.2.0" }, { "build" : "23C5041e", "channel" : "devbeta", "downloadSize" : 14343066933, "group" : "sonoma", "id" : "23C5041e", "mobileDeviceMinVersion" : "1600.0.0", "name" : "macOS 14.2 Developer Beta 2", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2023FallSeed\/fullrestores\/042-92143\/F642F928-DEE0-4C3F-A416-85745C778855\/UniversalMac_14.2_23C5041e_Restore.ipsw", "version" : "14.2.0" }, { "build" : "23C5030f", "channel" : "devbeta", "downloadSize" : 14015403903, "group" : "sonoma", "id" : "23C5030f", "mobileDeviceMinVersion" : "1600.0.0", "name" : "macOS 14.2 Developer Beta 1", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2023FallSeed\/fullrestores\/042-71093\/ECEFE157-E28B-40B4-9F21-CFD075129029\/UniversalMac_14.2_23C5030f_Restore.ipsw", "version" : "14.2.0" }, { "build" : "23B92", "channel" : "regular", "downloadSize" : 13980816431, "group" : "sonoma", "id" : "23B92", "mobileDeviceMinVersion" : "1600.0.0", "name" : "macOS 14.1.2", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2023FallFCS\/fullrestores\/052-09443\/E8752548-0B80-480C-9FB4-67246672C1B5\/UniversalMac_14.1.2_23B92_Restore.ipsw", "version" : "14.1.2" }, { "build" : "23B81", "channel" : "regular", "downloadSize" : 13981156491, "group" : "sonoma", "id" : "23B81", "mobileDeviceMinVersion" : "1600.0.0", "name" : "macOS 14.1.1", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2023FallFCS\/fullrestores\/042-89681\/55BD14DB-5535-4203-9359-E2C070E43FBE\/UniversalMac_14.1.1_23B81_Restore.ipsw", "version" : "14.1.1" }, { "build" : "23B74", "channel" : "regular", "downloadSize" : 13981550665, "group" : "sonoma", "id" : "23B74", "mobileDeviceMinVersion" : "1600.0.0", "name" : "macOS 14.1", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2023FallFCS\/fullrestores\/042-86430\/DBE44960-58A6-4715-948B-D64F33F769BD\/UniversalMac_14.1_23B74_Restore.ipsw", "version" : "14.1.0" }, { "build" : "23B73", "channel" : "devbeta", "downloadSize" : 13981665474, "group" : "sonoma", "id" : "23B73", "mobileDeviceMinVersion" : "1600.0.0", "name" : "macOS 14.1 RC", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2023FallFCS\/fullrestores\/042-10900\/347B734E-BC0B-41FA-9671-8000FCB5B0BB\/UniversalMac_14.1_23B73_Restore.ipsw", "version" : "14.1.0" }, { "build" : "23B5067a", "channel" : "devbeta", "downloadSize" : 13964726406, "group" : "sonoma", "id" : "23B5067a", "mobileDeviceMinVersion" : "1600.0.0", "name" : "macOS 14.1 Developer Beta 3", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2023FallSeed\/fullrestores\/042-73325\/B24FC9CF-34D1-44A6-B977-FA718FE83DEB\/UniversalMac_14.1_23B5067a_Restore.ipsw", "version" : "14.1.0" }, { "build" : "23B5056e", "channel" : "devbeta", "downloadSize" : 13913662198, "group" : "sonoma", "id" : "23B5056e", "mobileDeviceMinVersion" : "1600.0.0", "name" : "macOS 14.1 Developer Beta 2", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2023FallSeed\/fullrestores\/042-65885\/0FA6C4A7-C21A-4A5F-84C8-8FEE0D98A153\/UniversalMac_14.1_23B5056e_Restore.ipsw", "version" : "14.1.0" }, { "build" : "23B5046f", "channel" : "devbeta", "downloadSize" : 13909776599, "group" : "sonoma", "id" : "23B5046f", "mobileDeviceMinVersion" : "1600.0.0", "name" : "macOS 14.1 Developer Beta 1", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2023FallSeed\/fullrestores\/042-60177\/C4B6F5B3-8B66-461A-A048-4A9925F36FCD\/UniversalMac_14.1_23B5046f_Restore.ipsw", "version" : "14.1.0" }, { "build" : "23A344", "channel" : "regular", "downloadSize" : 13905898651, "group" : "sonoma", "id" : "23A344", "mobileDeviceMinVersion" : "1600.0.0", "name" : "macOS 14.0", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2023FallFCS\/fullrestores\/042-54934\/0E101AD6-3117-4B63-9BF1-143B6DB9270A\/UniversalMac_14.0_23A344_Restore.ipsw", "version" : "14.0.0" }, { "build" : "23A339", "channel" : "devbeta", "downloadSize" : 13905892847, "group" : "sonoma", "id" : "23A339", "mobileDeviceMinVersion" : "1600.0.0", "name" : "macOS 14.0 RC", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2023FallFCS\/fullrestores\/002-81996\/596571C1-9856-4BB3-B5BF-B5A48F4B406E\/UniversalMac_14.0_23A339_Restore.ipsw", "version" : "14.0.0" }, { "build" : "23A5337a", "channel" : "devbeta", "downloadSize" : 13817165626, "group" : "sonoma", "id" : "23A5337a", "mobileDeviceMinVersion" : "1600.0.0", "name" : "macOS 14.0 Developer Beta 7", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2023SummerSeed\/fullrestores\/042-41500\/D1789AEF-013B-4112-8A1E-401589023267\/UniversalMac_14.0_23A5337a_Restore.ipsw", "version" : "14.0.0" }, { "build" : "23A5328b", "channel" : "devbeta", "downloadSize" : 13818265607, "group" : "sonoma", "id" : "23A5328b", "mobileDeviceMinVersion" : "1600.0.0", "name" : "macOS 14.0 Developer Beta 6", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2023SummerSeed\/fullrestores\/042-37824\/AA6B32A0-3C2C-4BEB-95A1-64E601934330\/UniversalMac_14.0_23A5328b_Restore.ipsw", "version" : "14.0.0" }, { "build" : "23A5312d", "channel" : "devbeta", "downloadSize" : 13902876317, "group" : "sonoma", "id" : "23A5312d", "mobileDeviceMinVersion" : "1600.0.0", "name" : "macOS 14.0 Developer Beta 5", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2023SummerSeed\/fullrestores\/042-27168\/7E046825-8EBA-4AAE-8ECC-DDD51B9306D2\/UniversalMac_14.0_23A5312d_Restore.ipsw", "version" : "14.0.0" }, { "build" : "23A5301h", "channel" : "devbeta", "downloadSize" : 13966115260, "group" : "sonoma", "id" : "23A5301h", "mobileDeviceMinVersion" : "1600.0.0", "name" : "macOS 14.0 Developer Beta 4", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2023SummerSeed\/fullrestores\/042-25548\/9EA6EC3D-5A7D-4D53-A17C-70EE71393921\/UniversalMac_14.0_23A5301h_Restore.ipsw", "version" : "14.0.0" }, { "build" : "23A5286i", "channel" : "devbeta", "downloadSize" : 14040882686, "group" : "sonoma", "id" : "23A5286i", "mobileDeviceMinVersion" : "1600.0.0", "name" : "macOS 14.0 Developer Beta 3 (23A5286i)", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2023SummerSeed\/fullrestores\/042-13887\/3B4075C1-B695-49EA-82D9-4B720699D341\/UniversalMac_14.0_23A5286i_Restore.ipsw", "version" : "14.0.0" }, { "build" : "23A5286g", "channel" : "devbeta", "downloadSize" : 14039361424, "group" : "sonoma", "id" : "23A5286g", "mobileDeviceMinVersion" : "1600.0.0", "name" : "macOS 14.0 Developer Beta 3", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2023SummerSeed\/fullrestores\/042-06324\/379026FA-C14F-4095-99FD-19F607D10EBF\/UniversalMac_14.0_23A5286g_Restore.ipsw", "version" : "14.0.0" }, { "build" : "23A5276g", "channel" : "devbeta", "downloadSize" : 14011239154, "group" : "sonoma", "id" : "23A5276g", "mobileDeviceMinVersion" : "1600.0.0", "name" : "macOS 14.0 Developer Beta 2", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2023SummerSeed\/fullrestores\/032-95861\/67600C59-8516-4A46-B9D7-4007D395CEF5\/UniversalMac_14.0_23A5276g_Restore.ipsw", "version" : "14.0.0" }, { "build" : "23A5257q", "channel" : "devbeta", "downloadSize" : 14073497027, "group" : "sonoma", "id" : "23A5257q", "mobileDeviceMinVersion" : "1600.0.0", "name" : "macOS 14.0 Developer Beta 1", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2023SummerSeed\/fullrestores\/032-94355\/CBE8CBE1-750D-487E-A393-B90FEF60CEBA\/UniversalMac_14.0_23A5257q_Restore.ipsw", "version" : "14.0.0" }, { "build" : "22G120", "channel" : "regular", "downloadSize" : 12893555341, "group" : "ventura", "id" : "22G120", "mobileDeviceMinVersion" : "1400.0.0", "name" : "macOS 13.6", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2023FallFCS\/fullrestores\/042-55833\/C0830847-A2F8-458F-B680-967991820931\/UniversalMac_13.6_22G120_Restore.ipsw", "version" : "13.6.0" }, { "build" : "22G91", "channel" : "regular", "downloadSize" : 12892043230, "group" : "ventura", "id" : "22G91", "mobileDeviceMinVersion" : "1400.0.0", "name" : "macOS 13.5.2", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2023SummerFCS\/fullrestores\/042-43686\/945D434B-DA5D-48DB-A558-F6D18D11AD69\/UniversalMac_13.5.2_22G91_Restore.ipsw", "version" : "13.5.2" }, { "build" : "22G90", "channel" : "regular", "downloadSize" : 12892897195, "group" : "ventura", "id" : "22G90", "mobileDeviceMinVersion" : "1400.0.0", "name" : "macOS 13.5.1", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2023SummerFCS\/fullrestores\/042-25658\/2D6BE8DB-5549-4F85-8C54-39FC23BABC68\/UniversalMac_13.5.1_22G90_Restore.ipsw", "version" : "13.5.1" }, { "build" : "22G74", "channel" : "regular", "downloadSize" : 12893195726, "group" : "ventura", "id" : "22G74", "mobileDeviceMinVersion" : "1400.0.0", "name" : "macOS 13.5", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2023SummerFCS\/fullrestores\/032-69606\/D3E05CDF-E105-434C-A4A1-4E3DC7668DD0\/UniversalMac_13.5_22G74_Restore.ipsw", "version" : "13.5.0" }, { "build" : "22G5072a", "channel" : "devbeta", "downloadSize" : 12876188620, "group" : "ventura", "id" : "22G5072a", "mobileDeviceMinVersion" : "1400.0.0", "name" : "macOS 13.5 Developer Beta 5", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2023SpringSeed\/fullrestores\/042-09570\/8DA0B0AA-6FD4-42C4-A54E-BC0D53B92AC0\/UniversalMac_13.5_22G5072a_Restore.ipsw", "version" : "13.5.0" }, { "build" : "22G5059d", "channel" : "devbeta", "downloadSize" : 12881087818, "group" : "ventura", "id" : "22G5059d", "mobileDeviceMinVersion" : "1400.0.0", "name" : "macOS 13.5 Developer Beta 4", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2023SpringSeed\/fullrestores\/042-03209\/55CBE04D-FD90-483B-A6D7-45E0FBC1C94F\/UniversalMac_13.5_22G5059d_Restore.ipsw", "version" : "13.5.0" }, { "build" : "22G5048d", "channel" : "devbeta", "downloadSize" : 12874423585, "group" : "ventura", "id" : "22G5048d", "mobileDeviceMinVersion" : "1400.0.0", "name" : "macOS 13.5 Developer Beta 3", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2023SpringSeed\/fullrestores\/032-93679\/1D39F2AC-8FD4-46A3-A159-478C76472B16\/UniversalMac_13.5_22G5048d_Restore.ipsw", "version" : "13.5.0" }, { "build" : "22G5038d", "channel" : "devbeta", "downloadSize" : 12727337348, "group" : "ventura", "id" : "22G5038d", "mobileDeviceMinVersion" : "1400.0.0", "name" : "macOS 13.5 Developer Beta 2", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2023SpringSeed\/fullrestores\/032-92523\/E476F5EC-D046-4A76-889B-F19DA354459E\/UniversalMac_13.5_22G5038d_Restore.ipsw", "version" : "13.5.0" }, { "build" : "22G5027e", "channel" : "devbeta", "downloadSize" : 12729623010, "group" : "ventura", "id" : "22G5027e", "mobileDeviceMinVersion" : "1400.0.0", "name" : "macOS 13.5 Developer Beta 1", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2023SpringSeed\/fullrestores\/032-86178\/CE6C5645-C5C3-41A9-B986-D5F0BD7BB10B\/UniversalMac_13.5_22G5027e_Restore.ipsw", "version" : "13.5.0" }, { "build" : "22F82", "channel" : "regular", "downloadSize" : 12739802320, "group" : "ventura", "id" : "22F82", "mobileDeviceMinVersion" : "1400.0.0", "name" : "macOS 13.4.1", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2023SpringFCS\/fullrestores\/042-01877\/2F49A9FE-7033-41D0-9D0C-64EFCE6B4C22\/UniversalMac_13.4.1_22F82_Restore.ipsw", "version" : "13.4.1" }, { "build" : "22F66", "channel" : "regular", "downloadSize" : 12739995153, "group" : "ventura", "id" : "22F66", "mobileDeviceMinVersion" : "1400.0.0", "name" : "macOS 13.4", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2023SpringFCS\/fullrestores\/032-84884\/F97A22EE-9B5E-4FD5-94C1-B39DCEE8D80F\/UniversalMac_13.4_22F66_Restore.ipsw", "version" : "13.4.0" }, { "build" : "22F63", "channel" : "devbeta", "downloadSize" : 12739473501, "group" : "ventura", "id" : "22F63", "mobileDeviceMinVersion" : "1400.0.0", "name" : "macOS 13.4 RC 2", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2023SpringFCS\/fullrestores\/032-83954\/6E06237C-1B56-4932-A8E1-3A07A3EE03A8\/UniversalMac_13.4_22F63_Restore.ipsw", "version" : "13.4.0" }, { "build" : "22F62", "channel" : "devbeta", "downloadSize" : 12738586980, "group" : "ventura", "id" : "22F62", "mobileDeviceMinVersion" : "1400.0.0", "name" : "macOS 13.4 RC", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2023SpringFCS\/fullrestores\/032-44024\/731F1533-53BE-4CEB-AA05-74F333CA904A\/UniversalMac_13.4_22F62_Restore.ipsw", "version" : "13.4.0" }, { "build" : "22F5059b", "channel" : "devbeta", "downloadSize" : 12721895514, "group" : "ventura", "id" : "22F5059b", "mobileDeviceMinVersion" : "1400.0.0", "name" : "macOS 13.4 Developer Beta 4", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2023SpringSeed\/fullrestores\/032-79565\/BA9CBFB7-152C-4FB6-B0B3-47769997BFA1\/UniversalMac_13.4_22F5059b_Restore.ipsw", "version" : "13.4.0" }, { "build" : "22F5049e", "channel" : "devbeta", "downloadSize" : 12720838737, "group" : "ventura", "id" : "22F5049e", "mobileDeviceMinVersion" : "1400.0.0", "name" : "macOS 13.4 Developer Beta 3", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2023SpringSeed\/fullrestores\/032-76661\/573284E7-4A4A-440C-AC01-6065C7A8E667\/UniversalMac_13.4_22F5049e_Restore.ipsw", "version" : "13.4.0" }, { "build" : "22F5037d", "channel" : "devbeta", "downloadSize" : 12743516873, "group" : "ventura", "id" : "22F5037d", "mobileDeviceMinVersion" : "1400.0.0", "name" : "macOS 13.4 Developer Beta 2", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2023SpringSeed\/fullrestores\/032-69885\/ECFA1532-C633-4ACE-9D2C-3B5FD19510D4\/UniversalMac_13.4_22F5037d_Restore.ipsw", "version" : "13.4.0" }, { "build" : "22F5027f", "channel" : "devbeta", "downloadSize" : 12728262691, "group" : "ventura", "id" : "22F5027f", "mobileDeviceMinVersion" : "1400.0.0", "name" : "macOS 13.4 Developer Beta 1", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2023SpringSeed\/fullrestores\/032-69187\/B11709E0-1CF5-4460-A069-D12E1243E2AD\/UniversalMac_13.4_22F5027f_Restore.ipsw", "version" : "13.4.0" }, { "build" : "22E261", "channel" : "regular", "downloadSize" : 12726460903, "group" : "ventura", "id" : "22E261", "mobileDeviceMinVersion" : "1400.0.0", "name" : "macOS 13.3.1", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2023WinterFCS\/fullrestores\/032-66602\/418BC37A-FCD9-400A-B4FA-022A19576CD4\/UniversalMac_13.3.1_22E261_Restore.ipsw", "version" : "13.3.1" }, { "build" : "22E252", "channel" : "regular", "downloadSize" : 12727918028, "group" : "ventura", "id" : "22E252", "mobileDeviceMinVersion" : "1400.0.0", "name" : "macOS 13.3", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2023WinterSeed\/fullrestores\/002-75537\/8250FA0E-0962-46D6-8A90-57A390B9FFD7\/UniversalMac_13.3_22E252_Restore.ipsw", "version" : "13.3.0" }, { "build" : "22E5246b", "channel" : "devbeta", "downloadSize" : 12713804212, "group" : "ventura", "id" : "22E5246b", "mobileDeviceMinVersion" : "1400.0.0", "name" : "macOS 13.3 Developer Beta 4", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2023WinterSeed\/fullrestores\/032-63669\/7C0F9BA8-35C0-457F-AF56-6943D58A2CDB\/UniversalMac_13.3_22E5246b_Restore.ipsw", "version" : "13.3.0" }, { "build" : "22E5236f", "channel" : "devbeta", "downloadSize" : 12711164370, "group" : "ventura", "id" : "22E5236f", "mobileDeviceMinVersion" : "1400.0.0", "name" : "macOS 13.3 Developer Beta 3", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2023WinterSeed\/fullrestores\/032-60411\/1DDA996F-B620-4770-8FFE-87AB2043784D\/UniversalMac_13.3_22E5236f_Restore.ipsw", "version" : "13.3.0" }, { "build" : "22E5230e", "channel" : "devbeta", "downloadSize" : 12702079514, "group" : "ventura", "id" : "22E5230e", "mobileDeviceMinVersion" : "1400.0.0", "name" : "macOS 13.3 Developer Beta 2", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2023WinterSeed\/fullrestores\/032-54760\/AE02E378-FD59-474D-93AB-C52617103C72\/UniversalMac_13.3_22E5230e_Restore.ipsw", "version" : "13.3.0" }, { "build" : "22E5219e", "channel" : "devbeta", "downloadSize" : 12690065479, "group" : "ventura", "id" : "22E5219e", "mobileDeviceMinVersion" : "1400.0.0", "name" : "macOS 13.3 Developer Beta 1", "requirements" : "min_host_13", "url" : "https:\/\/updates.cdn-apple.com\/2023WinterSeed\/fullrestores\/032-01932\/676E0981-4535-4942-A4AE-E14C604CE719\/UniversalMac_13.3_22E5219e_Restore.ipsw", "version" : "13.3.0" }, { "build" : "22D68", "channel" : "regular", "downloadSize" : 12494476408, "group" : "ventura", "id" : "22D68", "mobileDeviceMinVersion" : "1400.0.0", "name" : "macOS 13.2.1", "requirements" : "min_host_12", "url" : "https:\/\/updates.cdn-apple.com\/2023WinterFCS\/fullrestores\/032-48346\/EFF99C1E-C408-4E7A-A448-12E1468AF06C\/UniversalMac_13.2.1_22D68_Restore.ipsw", "version" : "13.2.1" }, { "build" : "22D49", "channel" : "regular", "downloadSize" : 12494248692, "group" : "ventura", "id" : "22D49", "mobileDeviceMinVersion" : "1400.0.0", "name" : "macOS 13.2", "requirements" : "min_host_12", "url" : "https:\/\/updates.cdn-apple.com\/2023WinterFCS\/fullrestores\/032-35688\/0350BB21-2B4B-4850-BF77-70B830283B28\/UniversalMac_13.2_22D49_Restore.ipsw", "version" : "13.2.0" }, { "build" : "22D5038i", "channel" : "devbeta", "downloadSize" : 12269915297, "group" : "ventura", "id" : "22D5038i", "mobileDeviceMinVersion" : "1400.0.0", "name" : "macOS 13.2 Developer Beta 2", "requirements" : "min_host_12", "url" : "https:\/\/updates.cdn-apple.com\/2023WinterSeed\/fullrestores\/032-33181\/62ECE236-5806-4136-AD08-EDC026FD80A5\/UniversalMac_13.2_22D5038i_Restore.ipsw", "version" : "13.2.0" }, { "build" : "22D5027d", "channel" : "devbeta", "downloadSize" : 12278161108, "group" : "ventura", "id" : "22D5027d", "mobileDeviceMinVersion" : "1400.0.0", "name" : "macOS 13.2 Developer Beta 1", "requirements" : "min_host_12", "url" : "https:\/\/updates.cdn-apple.com\/2023WinterSeed\/fullrestores\/032-12640\/6B472BA3-E678-4251-92D1-7AA23B66F53E\/UniversalMac_13.2_22D5027d_Restore.ipsw", "version" : "13.2.0" }, { "build" : "22C65", "channel" : "regular", "downloadSize" : 12279576859, "group" : "ventura", "id" : "22C65", "mobileDeviceMinVersion" : "1400.0.0", "name" : "macOS 13.1", "requirements" : "min_host_12", "url" : "https:\/\/updates.cdn-apple.com\/2022FallFCS\/fullrestores\/012-60270\/0A7F49BA-FC31-4AD9-8E45-49B1FB9128A6\/UniversalMac_13.1_22C65_Restore.ipsw", "version" : "13.1.0" }, { "build" : "22C5059b", "channel" : "devbeta", "downloadSize" : 12261527012, "group" : "ventura", "id" : "22C5059b", "mobileDeviceMinVersion" : "1400.0.0", "name" : "macOS 13.1 Developer Beta 4", "requirements" : "min_host_12", "url" : "https:\/\/updates.cdn-apple.com\/2022FallSeed\/fullrestores\/032-08112\/957EA73A-7C95-4B3C-B99C-2C2C47555832\/UniversalMac_13.1_22C5059b_Restore.ipsw", "version" : "13.1.0" }, { "build" : "22C5050e", "channel" : "devbeta", "downloadSize" : 12258951167, "group" : "ventura", "id" : "22C5050e", "mobileDeviceMinVersion" : "1400.0.0", "name" : "macOS 13.1 Developer Beta 3", "requirements" : "min_host_12", "url" : "https:\/\/updates.cdn-apple.com\/2022FallSeed\/fullrestores\/032-06252\/946CBF92-8F27-49B1-A692-81F54C73D2F0\/UniversalMac_13.1_22C5050e_Restore.ipsw", "version" : "13.1.0" }, { "build" : "22C5044e", "channel" : "devbeta", "downloadSize" : 11918902102, "group" : "ventura", "id" : "22C5044e", "mobileDeviceMinVersion" : "1400.0.0", "name" : "macOS 13.1 Developer Beta 2", "requirements" : "min_host_12", "url" : "https:\/\/updates.cdn-apple.com\/2022FallSeed\/fullrestores\/032-02019\/670C9BA6-67EB-4AE6-A02E-88976F6F3118\/UniversalMac_13.1_22C5044e_Restore.ipsw", "version" : "13.1.0" }, { "build" : "22C5033e", "channel" : "devbeta", "downloadSize" : 11886880578, "group" : "ventura", "id" : "22C5033e", "mobileDeviceMinVersion" : "1400.0.0", "name" : "macOS 13.1 Developer Beta 1", "requirements" : "min_host_12", "url" : "https:\/\/updates.cdn-apple.com\/2022FallSeed\/fullrestores\/012-82062\/10E6B723-51B8-4B2C-BA3B-12A18ED4E719\/UniversalMac_13.1_22C5033e_Restore.ipsw", "version" : "13.1.0" }, { "build" : "22A400", "channel" : "regular", "downloadSize" : 12197932579, "group" : "ventura", "id" : "22A400", "mobileDeviceMinVersion" : "1400.0.0", "name" : "macOS 13.0.1", "requirements" : "min_host_12", "url" : "https:\/\/updates.cdn-apple.com\/2022FallFCS\/fullrestores\/012-93802\/A7270B0F-05F8-43D1-A9AD-40EF5699E82C\/UniversalMac_13.0.1_22A400_Restore.ipsw", "version" : "13.0.1" }, { "build" : "22A380", "channel" : "regular", "downloadSize" : 12197669257, "group" : "ventura", "id" : "22A380", "mobileDeviceMinVersion" : "1400.0.0", "name" : "macOS 13.0", "requirements" : "min_host_12", "url" : "https:\/\/updates.cdn-apple.com\/2022FallFCS\/fullrestores\/012-92188\/2C38BCD1-2BFF-4A10-B358-94E8E28BE805\/UniversalMac_13.0_22A380_Restore.ipsw", "version" : "13.0.0" }, { "build" : "22A379", "channel" : "devbeta", "downloadSize" : 12197156665, "group" : "ventura", "id" : "22A379", "mobileDeviceMinVersion" : "1400.0.0", "name" : "macOS 13.0 RC", "requirements" : "min_host_12", "url" : "https:\/\/updates.cdn-apple.com\/2022FallFCS\/fullrestores\/071-08994\/1118ADF4-1CC9-4554-9333-B1F64CF0C820\/UniversalMac_13.0_22A379_Restore.ipsw", "version" : "13.0.0" }, { "build" : "22A5373b", "channel" : "devbeta", "downloadSize" : 12173276873, "group" : "ventura", "id" : "22A5373b", "mobileDeviceMinVersion" : "1400.0.0", "name" : "macOS 13.0 Developer Beta 11", "requirements" : "min_host_12", "url" : "https:\/\/updates.cdn-apple.com\/2022SummerSeed\/fullrestores\/012-84563\/2FC38C63-3213-4BB6-8E41-2B066332CBE6\/UniversalMac_13.0_22A5373b_Restore.ipsw", "version" : "13.0.0" }, { "build" : "22A5365d", "channel" : "devbeta", "downloadSize" : 12175865747, "group" : "ventura", "id" : "22A5365d", "mobileDeviceMinVersion" : "1400.0.0", "name" : "macOS 13.0 Developer Beta 10", "requirements" : "min_host_12", "url" : "https:\/\/updates.cdn-apple.com\/2022SummerSeed\/fullrestores\/012-83054\/16ECAA12-3A1B-4663-B49B-B1563ECD4314\/UniversalMac_13.0_22A5365d_Restore.ipsw", "version" : "13.0.0" }, { "build" : "22A5358e", "channel" : "devbeta", "downloadSize" : 12211984012, "group" : "ventura", "id" : "22A5358e", "mobileDeviceMinVersion" : "1400.0.0", "name" : "macOS 13.0 Developer Beta 9", "requirements" : "min_host_12", "url" : "https:\/\/updates.cdn-apple.com\/2022SummerSeed\/fullrestores\/012-71790\/AF5A04A6-FF20-44C1-9BFF-43081BDB4D8C\/UniversalMac_13.0_22A5358e_Restore.ipsw", "version" : "13.0.0" }, { "build" : "22A5352e", "channel" : "devbeta", "downloadSize" : 12202491122, "group" : "ventura", "id" : "22A5352e", "mobileDeviceMinVersion" : "1400.0.0", "name" : "macOS 13.0 Developer Beta 8", "requirements" : "min_host_12", "url" : "https:\/\/updates.cdn-apple.com\/2022SummerSeed\/fullrestores\/012-70113\/6F1F08B7-9A1B-48A9-93DB-55EE21121C87\/UniversalMac_13.0_22A5352e_Restore.ipsw", "version" : "13.0.0" }, { "build" : "22A5342f", "channel" : "devbeta", "downloadSize" : 12036111685, "group" : "ventura", "id" : "22A5342f", "mobileDeviceMinVersion" : "1400.0.0", "name" : "macOS 13.0 Developer Beta 7", "requirements" : "min_host_12", "url" : "https:\/\/updates.cdn-apple.com\/2022SummerSeed\/fullrestores\/012-66750\/108EF06D-FBEE-4910-BA83-56A5C9B54110\/UniversalMac_13.0_22A5342f_Restore.ipsw", "version" : "13.0.0" }, { "build" : "22A5331f", "channel" : "devbeta", "downloadSize" : 12020352498, "group" : "ventura", "id" : "22A5331f", "mobileDeviceMinVersion" : "1400.0.0", "name" : "macOS 13.0 Developer Beta 6", "requirements" : "min_host_12", "url" : "https:\/\/updates.cdn-apple.com\/2022SummerSeed\/fullrestores\/012-61458\/80300AD0-69E5-4429-AE3E-A936CA83B5FC\/UniversalMac_13.0_22A5331f_Restore.ipsw", "version" : "13.0.0" }, { "build" : "22A5321d", "channel" : "devbeta", "downloadSize" : 12013062572, "group" : "ventura", "id" : "22A5321d", "mobileDeviceMinVersion" : "1400.0.0", "name" : "macOS 13.0 Developer Beta 5", "requirements" : "min_host_12", "url" : "https:\/\/updates.cdn-apple.com\/2022SummerSeed\/fullrestores\/012-51397\/8EF0874D-388A-4F62-B58A-89F968DD3082\/UniversalMac_13.0_22A5321d_Restore.ipsw", "version" : "13.0.0" }, { "build" : "22A5311f", "channel" : "devbeta", "downloadSize" : 12177142220, "group" : "ventura", "id" : "22A5311f", "mobileDeviceMinVersion" : "1400.0.0", "name" : "macOS 13.0 Developer Beta 4", "requirements" : "min_host_12", "url" : "https:\/\/updates.cdn-apple.com\/2022SummerSeed\/fullrestores\/012-43316\/6CE4D83A-E44C-4DD1-B47F-DE168355662E\/UniversalMac_13.0_22A5311f_Restore.ipsw", "version" : "13.0.0" }, { "build" : "22A5295i", "channel" : "devbeta", "downloadSize" : 12110805518, "group" : "ventura", "id" : "22A5295i", "mobileDeviceMinVersion" : "1400.0.0", "name" : "macOS 13.0 Developer Beta 3 (22A5295i)", "requirements" : "min_host_12", "url" : "https:\/\/updates.cdn-apple.com\/2022SummerSeed\/fullrestores\/012-38309\/6EDC76A0-4432-4C64-83C5-F43C885A75D6\/UniversalMac_13.0_22A5295i_Restore.ipsw", "version" : "13.0.0" }, { "build" : "22A5295h", "channel" : "devbeta", "downloadSize" : 12109750298, "group" : "ventura", "id" : "22A5295h", "mobileDeviceMinVersion" : "1400.0.0", "name" : "macOS 13.0 Developer Beta 3", "requirements" : "min_host_12", "url" : "https:\/\/updates.cdn-apple.com\/2022SummerSeed\/fullrestores\/012-34274\/130176F5-C4CB-4664-A2F0-F29CA1281694\/UniversalMac_13.0_22A5295h_Restore.ipsw", "version" : "13.0.0" }, { "build" : "22A5286j", "channel" : "devbeta", "downloadSize" : 12103954377, "group" : "ventura", "id" : "22A5286j", "mobileDeviceMinVersion" : "1351.0.0", "name" : "macOS 13.0 Developer Beta 2", "requirements" : "min_host_12", "url" : "https:\/\/updates.cdn-apple.com\/2022SummerSeed\/fullrestores\/012-30346\/9DD787A7-044B-4650-86D4-84E80B6B9C36\/UniversalMac_13.0_22A5286j_Restore.ipsw", "version" : "13.0.0" }, { "build" : "21G217", "channel" : "regular", "downloadSize" : 14086558415, "group" : "monterey", "id" : "21G217", "mobileDeviceMinVersion" : "1351.0.0", "name" : "macOS 12.6.1", "requirements" : "min_host_12", "url" : "https:\/\/updates.cdn-apple.com\/2022FallFCS\/fullrestores\/012-66032\/8D8D90C6-A876-4FFF-BBF4-D158939B3841\/UniversalMac_12.6.1_21G217_Restore.ipsw", "version" : "12.6.1" }, { "build" : "21G115", "channel" : "regular", "downloadSize" : 14081739387, "group" : "monterey", "id" : "21G115", "mobileDeviceMinVersion" : "1351.0.0", "name" : "macOS 12.6", "requirements" : "min_host_12", "url" : "https:\/\/updates.cdn-apple.com\/2022FallFCS\/fullrestores\/012-40537\/0EC7C669-13E9-49FB-BD64-9EECC1D174B2\/UniversalMac_12.6_21G115_Restore.ipsw", "version" : "12.6.0" }, { "build" : "21G83", "channel" : "regular", "downloadSize" : 14088266331, "group" : "monterey", "id" : "21G83", "mobileDeviceMinVersion" : "1351.0.0", "name" : "macOS 12.5.1", "requirements" : "min_host_12", "url" : "https:\/\/updates.cdn-apple.com\/2022SummerFCS\/fullrestores\/012-51674\/A7019DDB-3355-470F-A355-4162A187AB6C\/UniversalMac_12.5.1_21G83_Restore.ipsw", "version" : "12.5.1" }, { "build" : "21G72", "channel" : "regular", "downloadSize" : 14084058716, "group" : "monterey", "id" : "21G72", "mobileDeviceMinVersion" : "1351.0.0", "name" : "macOS 12.5", "requirements" : "min_host_12", "url" : "https:\/\/updates.cdn-apple.com\/2022SummerFCS\/fullrestores\/012-42731\/BD9917E0-262C-41C5-A69F-AC316A534A39\/UniversalMac_12.5_21G72_Restore.ipsw", "version" : "12.5.0" }, { "build" : "21G69", "channel" : "devbeta", "downloadSize" : 14085080132, "group" : "monterey", "id" : "21G69", "mobileDeviceMinVersion" : "1351.0.0", "name" : "macOS 12.5 RC", "requirements" : "min_host_12", "url" : "https:\/\/updates.cdn-apple.com\/2022SummerFCS\/fullrestores\/012-40368\/5DD0A524-140A-46AF-91ED-5F28EA9DEC01\/UniversalMac_12.5_21G69_Restore.ipsw", "version" : "12.5.0" }, { "build" : "21G5063a", "channel" : "devbeta", "downloadSize" : 13938297123, "group" : "monterey", "id" : "21G5063a", "mobileDeviceMinVersion" : "1351.0.0", "name" : "macOS 12.5 Developer Beta 5", "requirements" : "min_host_12", "url" : "https:\/\/updates.cdn-apple.com\/2022FallSeed\/fullrestores\/012-36748\/52342C55-6598-4A86-AAB8-8901145792C8\/UniversalMac_12.5_21G5063a_Restore.ipsw", "version" : "12.5.0" }, { "build" : "21G5056b", "channel" : "devbeta", "downloadSize" : 13934172302, "group" : "monterey", "id" : "21G5056b", "mobileDeviceMinVersion" : "1351.0.0", "name" : "macOS 12.5 Developer Beta 4", "requirements" : "min_host_12", "url" : "https:\/\/updates.cdn-apple.com\/2022FallSeed\/fullrestores\/012-26441\/AE0AC638-2773-49D3-BF84-950B10BF39E9\/UniversalMac_12.5_21G5056b_Restore.ipsw", "version" : "12.5.0" }, { "build" : "21G5046c", "channel" : "devbeta", "downloadSize" : 13868797741, "group" : "monterey", "id" : "21G5046c", "mobileDeviceMinVersion" : "1351.0.0", "name" : "macOS 12.5 Developer Beta 3", "requirements" : "min_host_12", "url" : "https:\/\/updates.cdn-apple.com\/2022FallSeed\/fullrestores\/012-18271\/FFF202B2-E4B6-4A3E-9681-42A0F3F81B11\/UniversalMac_12.5_21G5046c_Restore.ipsw", "version" : "12.5.0" }, { "build" : "21G5037d", "channel" : "devbeta", "downloadSize" : 13829637373, "group" : "monterey", "id" : "21G5037d", "mobileDeviceMinVersion" : "1351.0.0", "name" : "macOS 12.5 Developer Beta 2", "requirements" : "min_host_12", "url" : "https:\/\/updates.cdn-apple.com\/2022FallSeed\/fullrestores\/012-10648\/1CC63FC5-5A22-4A5A-9A7B-C19C8C4A6731\/UniversalMac_12.5_21G5037d_Restore.ipsw", "version" : "12.5.0" }, { "build" : "21G5027d", "channel" : "devbeta", "downloadSize" : 13831129170, "group" : "monterey", "id" : "21G5027d", "mobileDeviceMinVersion" : "1351.0.0", "name" : "macOS 12.5 Developer Beta 1", "requirements" : "min_host_12", "url" : "https:\/\/updates.cdn-apple.com\/2022FallSeed\/fullrestores\/002-93712\/5F234425-6096-43FC-B518-1E9D7B4D0254\/UniversalMac_12.5_21G5027d_Restore.ipsw", "version" : "12.5.0" }, { "build" : "21F79", "channel" : "regular", "downloadSize" : 13837340777, "group" : "monterey", "id" : "21F79", "mobileDeviceMinVersion" : "1351.0.0", "name" : "macOS 12.4", "requirements" : "min_host_12", "url" : "https:\/\/updates.cdn-apple.com\/2022SpringFCS\/fullrestores\/012-06874\/9CECE956-D945-45E2-93E9-4FFDC81BB49A\/UniversalMac_12.4_21F79_Restore.ipsw", "version" : "12.4.0" }, { "build" : "21F5071b", "channel" : "devbeta", "downloadSize" : 13819236155, "group" : "monterey", "id" : "21F5071b", "mobileDeviceMinVersion" : "1351.0.0", "name" : "macOS 12.4 Developer Beta 4", "requirements" : "min_host_12", "url" : "https:\/\/updates.cdn-apple.com\/2022SpringSeed\/fullrestores\/002-95106\/0F7A6388-C4B5-4B8E-B8B2-F62C030699D0\/UniversalMac_12.4_21F5071b_Restore.ipsw", "version" : "12.4.0" }, { "build" : "21F5063e", "channel" : "devbeta", "downloadSize" : 13818052632, "group" : "monterey", "id" : "21F5063e", "mobileDeviceMinVersion" : "1351.0.0", "name" : "macOS 12.4 Developer Beta 3", "requirements" : "min_host_12", "url" : "https:\/\/updates.cdn-apple.com\/2022SpringSeed\/fullrestores\/002-90009\/DA6BD192-1698-48B3-AB6D-9D3A045ED1B1\/UniversalMac_12.4_21F5063e_Restore.ipsw", "version" : "12.4.0" }, { "build" : "21F5058e", "channel" : "devbeta", "downloadSize" : 13832392408, "group" : "monterey", "id" : "21F5058e", "mobileDeviceMinVersion" : "1351.0.0", "name" : "macOS 12.4 Developer Beta 2", "requirements" : "min_host_12", "url" : "https:\/\/updates.cdn-apple.com\/2022SpringSeed\/fullrestores\/002-87587\/BC2EBE80-F0F4-4B56-BCDC-340E0AD8E985\/UniversalMac_12.4_21F5058e_Restore.ipsw", "version" : "12.4.0" }, { "build" : "21F5048e", "channel" : "devbeta", "downloadSize" : 13812557221, "group" : "monterey", "id" : "21F5048e", "mobileDeviceMinVersion" : "1351.0.0", "name" : "macOS 12.4 Developer Beta 1", "requirements" : "min_host_12", "url" : "https:\/\/updates.cdn-apple.com\/2022SpringSeed\/fullrestores\/002-85721\/A21FF659-8493-4A16-A989-2C3141F48D8C\/UniversalMac_12.4_21F5048e_Restore.ipsw", "version" : "12.4.0" }, { "build" : "21E258", "channel" : "regular", "downloadSize" : 13875260060, "group" : "monterey", "id" : "21E258", "mobileDeviceMinVersion" : "1351.0.0", "name" : "macOS 12.3.1", "requirements" : "min_host_12", "url" : "https:\/\/updates.cdn-apple.com\/2022SpringFCS\/fullrestores\/002-79219\/851BEDF0-19DB-4040-B765-0F4089D1530D\/UniversalMac_12.3.1_21E258_Restore.ipsw", "version" : "12.3.1" } ] } --- ### Data/Linux V1.Json (data/linux_v1.json) { "apiVersion": 1, "channels": [ { "id": "stable", "name": "Stable", "note": "Public, stable releases.", "icon": "checkmark.seal" }, { "id": "daily", "name": "Daily", "note": "Daily builds meant for testing.", "icon": "wrench.and.screwdriver" } ], "groups": [ { "id": "ubuntu", "name": "Ubuntu", "majorVersion": "22.0", "minHostVersion": "13.0" } ], "restoreImages": [ { "group": "ubuntu", "name": "Jammy Jellyfish Daily Build", "build": "22.04.3 LTS", "url": "https://cdimage.ubuntu.com/jammy/daily-live/current/jammy-desktop-arm64.iso", "channel": "daily" } ] } --- ### Data/Linux V2.Json (data/linux_v2.json) { "apiVersion" : 2, "channels" : [ { "icon" : "checkmark.seal", "id" : "regular", "name" : "Release", "note" : "Public, stable releases." }, { "icon": "checkmark.seal", "id": "lts", "name": "LTS", "note": "Long-term support releases" }, { "icon" : "wrench.and.screwdriver", "id" : "daily", "name" : "Daily", "note" : "Daily builds meant for testing." } ], "features" : [ { "id" : "file_sharing", "minVersionGuest" : "0.0.0", "minVersionHost" : "0.0.0", "name" : "File sharing", "unsupportedPlatform" : true }, { "id" : "guest_app", "minVersionGuest" : "0.0.0", "minVersionHost" : "0.0.0", "name" : "VirtualBuddyGuest app", "unsupportedPlatform" : true }, { "id" : "trackpad", "minVersionGuest" : "0.0.0", "minVersionHost" : "0.0.0", "name" : "Trackpad", "unsupportedPlatform" : true }, { "id" : "mac_keyboard", "minVersionGuest" : "0.0.0", "minVersionHost" : "0.0.0", "name" : "Mac keyboard", "unsupportedPlatform" : true }, { "id" : "state_restoration", "minVersionGuest" : "0.0.0", "minVersionHost" : "0.0.0", "name" : "State restoration", "unsupportedPlatform" : true }, { "id" : "display_resize", "minVersionGuest" : "0.0.0", "minVersionHost" : "0.0.0", "name" : "Automatic display configuration", "unsupportedPlatform" : true }, { "id" : "rosetta_sharing", "minVersionGuest" : "0.0.0", "minVersionHost" : "14.0.0", "name" : "Rosetta Sharing", "unsupportedPlatform" : false }, { "id": "provisioning", "minVersionGuest": "0.0.0", "minVersionHost": "27.0.0", "name": "Skip Setup Assistant", "unsupportedPlatform": true } ], "deviceSupportVersions": [ ], "groups" : [ { "darkImage" : { "id" : "jammyjellyfish", "thumbnail" : { "blurHash" : "UIE0281ds7Ey1a$MWYaysSjvoMjsWoWUo2jv", "height" : 405, "url" : "https:\/\/api.virtualbuddy.app\/v2\/images\/jammyjellyfish-dark-thumbnail.heic", "width" : 720 }, "url" : "https:\/\/api.virtualbuddy.app\/v2\/images\/jammyjellyfish-dark.heic" }, "id" : "ubuntu", "image" : { "id" : "jammyjellyfish", "thumbnail" : { "blurHash" : "UIE0281ds7Ey1a$MWYaysSjvoMjsWoWUo2jv", "height" : 405, "url" : "https:\/\/api.virtualbuddy.app\/v2\/images\/jammyjellyfish-thumbnail.heic", "width" : 720 }, "url" : "https:\/\/api.virtualbuddy.app\/v2\/images\/jammyjellyfish.heic" }, "majorVersion" : "22.0.0", "name" : "Ubuntu" }, { "darkImage" : { "id" : "debian", "thumbnail" : { "blurHash" : "U96%Xrw$I%oLS,NWR#ohRyR}bGohW8s?oNWU", "height" : 720, "url" : "https:\/\/api.virtualbuddy.app\/v2\/images\/debian-dark-thumbnail.heic", "width" : 720 }, "url" : "https:\/\/api.virtualbuddy.app\/v2\/images\/debian-dark.heic" }, "id" : "debian", "image" : { "id" : "debian", "thumbnail" : { "blurHash" : "U96%Xrw$I%oLS,NWR#ohRyR}bGohW8s?oNWU", "height" : 720, "url" : "https:\/\/api.virtualbuddy.app\/v2\/images\/debian-thumbnail.heic", "width" : 720 }, "url" : "https:\/\/api.virtualbuddy.app\/v2\/images\/debian.heic" }, "majorVersion" : "12.0.0", "name" : "Debian" }, { "darkImage" : { "id" : "fedora", "thumbnail" : { "blurHash" : "UQ6+b#kCMcflyGaeR4f5R4ayozj[Mbofx^a}", "height" : 720, "url" : "https:\/\/api.virtualbuddy.app\/v2\/images\/fedora-dark-thumbnail.heic", "width" : 720 }, "url" : "https:\/\/api.virtualbuddy.app\/v2\/images\/fedora-dark.heic" }, "id" : "fedora", "image" : { "id" : "fedora", "thumbnail" : { "blurHash" : "UE6.Evf5D6j[*0ahMdf8Htf*xufQD5kC%fbG", "height" : 720, "url" : "https:\/\/api.virtualbuddy.app\/v2\/images\/fedora-thumbnail.heic", "width" : 720 }, "url" : "https:\/\/api.virtualbuddy.app\/v2\/images\/fedora.heic" }, "majorVersion" : "41.0.0", "name" : "Fedora" }, { "darkImage" : { "id" : "kali", "thumbnail" : { "blurHash" : "UD7CB$.AnftURMkEo$ozMwRPRjawWBa#f-ae", "height" : 405, "url" : "https:\/\/api.virtualbuddy.app\/v2\/images\/kali-dark-thumbnail.heic", "width" : 720 }, "url" : "https:\/\/api.virtualbuddy.app\/v2\/images\/kali-dark.heic" }, "id" : "kali", "image" : { "id" : "kali", "thumbnail" : { "blurHash" : "UD7CB$.AnftURMkEo$ozMwRPRjawWBa#f-ae", "height" : 405, "url" : "https:\/\/api.virtualbuddy.app\/v2\/images\/kali-thumbnail.heic", "width" : 720 }, "url" : "https:\/\/api.virtualbuddy.app\/v2\/images\/kali.heic" }, "majorVersion" : "2025.0.0", "name" : "Kali" } ], "minAppVersion" : "2.0.0", "requirementSets" : [ { "id" : "min_host_13", "minCPUCount" : 1, "minMemorySizeMB" : 1024, "minVersionHost" : "13.0.0" } ], "restoreImages" : [ { "build": "26.04 LTS", "channel": "lts", "downloadSize": 4161089536, "group": "ubuntu", "id": "26.04_Desktop", "mobileDeviceMinVersion": "0.0.0", "name": "Ubuntu Desktop 26.04 LTS", "requirements": "min_host_13", "url": "https://cdimage.ubuntu.com/releases/26.04/release/ubuntu-26.04-desktop-arm64.iso", "version": "26.04" }, { "build": "26.04 LTS", "channel": "lts", "downloadSize": 3068473344, "group": "ubuntu", "id": "26.04_Server", "mobileDeviceMinVersion": "0.0.0", "name": "Ubuntu Server 26.04 LTS", "requirements": "min_host_13", "url": "https://cdimage.ubuntu.com/releases/26.04/release/ubuntu-26.04-live-server-arm64.iso", "version": "26.04" }, { "build": "25.10", "channel": "regular", "downloadSize": 4981665792, "group": "ubuntu", "id": "25.10_Desktop", "mobileDeviceMinVersion": "0.0.0", "name": "Ubuntu Desktop 25.10", "requirements": "min_host_13", "url": "https://cdimage.ubuntu.com/releases/25.10/release/ubuntu-25.10-desktop-arm64.iso", "version": "25.10" }, { "build" : "24.04.4 LTS", "channel" : "lts", "downloadSize" : 3059724288, "group" : "ubuntu", "id" : "24.04.4 LTS", "mobileDeviceMinVersion" : "0.0.0", "name" : "Ubuntu Server 24.04.4 LTS", "requirements" : "min_host_13", "url" : "https://cdimage.ubuntu.com/releases/24.04/release/ubuntu-24.04.4-live-server-arm64.iso", "version" : "24.04.4" }, { "build": "25.10", "channel": "regular", "downloadSize": 2394763264, "group": "ubuntu", "id": "25.10_Server", "mobileDeviceMinVersion": "0.0.0", "name": "Ubuntu Server 25.10", "requirements": "min_host_13", "url": "https://cdimage.ubuntu.com/releases/25.10/release/ubuntu-25.10-live-server-arm64.iso", "version": "25.10" }, { "build" : "42.1.1", "channel" : "regular", "downloadSize" : 1006553088, "group" : "fedora", "id" : "42.1.1", "mobileDeviceMinVersion" : "0.0.0", "name" : "Fedora 42.1.1 Net Install", "requirements" : "min_host_13", "url" : "https:\/\/download.fedoraproject.org\/pub\/fedora\/linux\/releases\/42\/Everything\/aarch64\/iso\/Fedora-Everything-netinst-aarch64-42-1.1.iso", "version" : "42.1.1" }, { "build" : "2025.2", "channel" : "regular", "downloadSize" : 3767808000, "group" : "kali", "id" : "2025.2", "mobileDeviceMinVersion" : "0.0.0", "name" : "Kali Linux 2025.2 Full", "requirements" : "min_host_13", "url" : "https:\/\/cdimage.kali.org\/kali-2025.2\/kali-linux-2025.2-installer-arm64.iso", "version" : "2025.2.0" }, { "build": "12.11", "channel": "regular", "downloadSize": 3993284608, "group": "debian", "id": "12.11", "mobileDeviceMinVersion": "0.0.0", "name": "Debian 12.11", "requirements": "min_host_13", "url": "https://cdimage.debian.org/debian-cd/current/arm64/iso-dvd/debian-12.11.0-arm64-DVD-1.iso", "version": "12.11" } ] } --- ### Data/LegacyGuestApp/README (data/LegacyGuestApp/README.md) # Legacy Guest App Versions This directory contains versions of the VirtualBuddyGuest app compatible with legacy guests that are no longer supported by the latest version. The VirtualBuddy catalog references these so that the app can provide the guest app to guests running older versions of macOS. --- ### ReleaseNotes/VirtualBuddy 1.2 Release Notes (ReleaseNotes/VirtualBuddy 1.2 Release Notes.md) # What's new in VirtualBuddy 1.2 - Managing virtual machines can now be done entirely within the library view, the contextual menu offers options for renaming, deleting, duplicating, and showing the VM in Finder - The library now sorts virtual machines by creation date, in reverse chronological order - Virtual machines can now be configured with custom CPU, RAM, storage devices, network devices, displays, and many other options - The option to capture system keyboard shortcuts is now persisted for each virtual machine in the library - Adds support for shared folders to share specific directories from your Mac with the virtual machine - Adds support for bridged networking, allowing a physical network interface from your Mac to be exposed to the virtual machine - Additional storage can now be added to virtual machines by creating new disk images from within VirtualBuddy - A new debug console showing logs related to the installation process is now available while installing macOS in a new virtual machine - The default library directory for new installs is now ~/Library/Application Support/VirtualBuddy (this is where VirtualBuddy stores virtual machines and downloads) - Clicking a virtual machine that's already open in the library will now correctly focus the existing window for that virtual machine --- ### ReleaseNotes/VirtualBuddy 1.2.1 Release Notes (ReleaseNotes/VirtualBuddy 1.2.1 Release Notes.md) # New in VirtualBuddy 1.2.1 ### General improvements to the installer user interface: - Addresses an issue that caused the installer to clip the configuration user interface, hiding the "continue" button - It is now possible to navigate using the arrow keys when selecting the installation method - Text fields now use the same consistent style - The virtual machine name button is automatically focused as expected - Command + R can be used to generate a new random name while editing the virtual machine's name during installation --- ### ReleaseNotes/VirtualBuddy 1.2.2 Release Notes (ReleaseNotes/VirtualBuddy 1.2.2 Release Notes.md) # Fixed in VirtualBuddy 1.2.2 - Makes custom IPSW URL validation less strict, allowing downloads from plain HTTP URLs and URLs that don't end in .ipsw - Addresses an issue that caused audio input to not work in virtual machines; VirtualBuddy will ask for microphone access the first time audio input is used within a virtual machine --- ### VirtualBuddy/Assets.Xcassets/Contents.Json (VirtualBuddy/Assets.xcassets/Contents.json) { "info" : { "author" : "xcode", "version" : 1 } } --- ### VirtualBuddy/Assets.Xcassets/AccentColor.Colorset/Contents.Json (VirtualBuddy/Assets.xcassets/AccentColor.colorset/Contents.json) { "colors" : [ { "color" : { "platform" : "universal", "reference" : "systemOrangeColor" }, "idiom" : "universal" } ], "info" : { "author" : "xcode", "version" : 1 } } --- ### VirtualBuddy/Assets.Xcassets/AppIcon Default.Appiconset/Contents.Json (VirtualBuddy/Assets.xcassets/AppIcon-Default.appiconset/Contents.json) { "images" : [ { "filename" : "icon_16x16.png", "idiom" : "mac", "scale" : "1x", "size" : "16x16" }, { "filename" : "icon_16x16@2x@2x.png", "idiom" : "mac", "scale" : "2x", "size" : "16x16" }, { "filename" : "icon_32x32.png", "idiom" : "mac", "scale" : "1x", "size" : "32x32" }, { "filename" : "icon_32x32@2x@2x.png", "idiom" : "mac", "scale" : "2x", "size" : "32x32" }, { "filename" : "icon_128x128.png", "idiom" : "mac", "scale" : "1x", "size" : "128x128" }, { "filename" : "icon_128x128@2x@2x.png", "idiom" : "mac", "scale" : "2x", "size" : "128x128" }, { "filename" : "icon_256x256.png", "idiom" : "mac", "scale" : "1x", "size" : "256x256" }, { "filename" : "icon_256x256@2x@2x.png", "idiom" : "mac", "scale" : "2x", "size" : "256x256" }, { "filename" : "icon_512x512.png", "idiom" : "mac", "scale" : "1x", "size" : "512x512" }, { "filename" : "icon_512x512@2x@2x.png", "idiom" : "mac", "scale" : "2x", "size" : "512x512" } ], "info" : { "author" : "xcode", "version" : 1 } } --- ### VirtualBuddy/Assets.Xcassets/AppIcon Dev.Appiconset/Contents.Json (VirtualBuddy/Assets.xcassets/AppIcon-Dev.appiconset/Contents.json) { "images" : [ { "filename" : "icon_16x16.png", "idiom" : "mac", "scale" : "1x", "size" : "16x16" }, { "filename" : "icon_16x16@2x@2x.png", "idiom" : "mac", "scale" : "2x", "size" : "16x16" }, { "filename" : "icon_32x32.png", "idiom" : "mac", "scale" : "1x", "size" : "32x32" }, { "filename" : "icon_32x32@2x@2x.png", "idiom" : "mac", "scale" : "2x", "size" : "32x32" }, { "filename" : "icon_128x128.png", "idiom" : "mac", "scale" : "1x", "size" : "128x128" }, { "filename" : "icon_128x128@2x@2x.png", "idiom" : "mac", "scale" : "2x", "size" : "128x128" }, { "filename" : "icon_256x256.png", "idiom" : "mac", "scale" : "1x", "size" : "256x256" }, { "filename" : "icon_256x256@2x@2x.png", "idiom" : "mac", "scale" : "2x", "size" : "256x256" }, { "filename" : "icon_512x512.png", "idiom" : "mac", "scale" : "1x", "size" : "512x512" }, { "filename" : "icon_512x512@2x@2x.png", "idiom" : "mac", "scale" : "2x", "size" : "512x512" } ], "info" : { "author" : "xcode", "version" : 1 } } --- ### VirtualBuddy/Assets.Xcassets/AppIcon ZBeta.Appiconset/Contents.Json (VirtualBuddy/Assets.xcassets/AppIcon-zBeta.appiconset/Contents.json) { "images" : [ { "filename" : "icon_16x16.png", "idiom" : "mac", "scale" : "1x", "size" : "16x16" }, { "filename" : "icon_16x16@2x@2x.png", "idiom" : "mac", "scale" : "2x", "size" : "16x16" }, { "filename" : "icon_32x32.png", "idiom" : "mac", "scale" : "1x", "size" : "32x32" }, { "filename" : "icon_32x32@2x@2x.png", "idiom" : "mac", "scale" : "2x", "size" : "32x32" }, { "filename" : "icon_128x128.png", "idiom" : "mac", "scale" : "1x", "size" : "128x128" }, { "filename" : "icon_128x128@2x@2x.png", "idiom" : "mac", "scale" : "2x", "size" : "128x128" }, { "filename" : "icon_256x256.png", "idiom" : "mac", "scale" : "1x", "size" : "256x256" }, { "filename" : "icon_256x256@2x@2x.png", "idiom" : "mac", "scale" : "2x", "size" : "256x256" }, { "filename" : "icon_512x512.png", "idiom" : "mac", "scale" : "1x", "size" : "512x512" }, { "filename" : "icon_512x512@2x@2x.png", "idiom" : "mac", "scale" : "2x", "size" : "512x512" } ], "info" : { "author" : "xcode", "version" : 1 } } ---