Skip to content

Commit 17252cf

Browse files
authored
Bump version and tidy up markdown files (#188)
1 parent a54bbbc commit 17252cf

File tree

9 files changed

+134
-79
lines changed

9 files changed

+134
-79
lines changed

.github/ISSUE_TEMPLATE/bug-report.md

Lines changed: 0 additions & 39 deletions
This file was deleted.
Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
---
2+
name: Bug Report
3+
description: File a bug report to fix something that is not working.
4+
labels:
5+
- bug
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: Thank you for taking the time to fill out this bug report! 🙌
10+
- type: textarea
11+
attributes:
12+
label: 🐞 Description
13+
description: |
14+
Describe clearly and concisely what is not working.
15+
16+
Please include steps to reproduce the issue.
17+
placeholder: |
18+
Feature X of mist is not working:
19+
20+
1. I ran mist ...
21+
2. I waited for ...
22+
3. I observed ...
23+
validations:
24+
required: true
25+
- type: textarea
26+
attributes:
27+
label: ✅ Expected Behaviour
28+
description: Describe what should be happening (i.e. the happy path).
29+
placeholder: When I run mist ..., I should see ...
30+
validations:
31+
required: true
32+
- type: dropdown
33+
attributes:
34+
label: macOS Version
35+
description: What version of macOS are you running?
36+
options:
37+
- macOS Tahoe 26
38+
- macOS Sequoia 15
39+
- macOS Sonoma 14 or older
40+
validations:
41+
required: true
42+
- type: checkboxes
43+
attributes:
44+
label: mist-cli Version
45+
description: |
46+
Can you confirm this issue exists in the latest version of mist-cli?
47+
48+
Latest version: **2.2**
49+
options:
50+
- label: Yes, I am using the latest version of mist-cli.
51+
required: true
52+
- type: textarea
53+
attributes:
54+
label: ℹ️ Additional Context
55+
description: Please provide any additional information that may be helpful.
56+
placeholder: Links to documentation, references, screenshots, tools etc.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
blank_issues_enabled: false
Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
---
2+
name: Feature Request
3+
description: Submit a feature request to help improve this project.
4+
labels:
5+
- enhancement
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: Thank you for taking the time to fill out this feature request! 🙌
10+
- type: textarea
11+
attributes:
12+
label: 💡 Description
13+
description: Describe clearly and concisely the feature you would like to see implemented.
14+
placeholder: When I run mist ..., I do not see ...
15+
validations:
16+
required: true
17+
- type: textarea
18+
attributes:
19+
label: ✅ Proposed Solution
20+
description: Describe what you would like to see happen.
21+
placeholder: When I run mist ..., I should see ...
22+
validations:
23+
required: true
24+
- type: textarea
25+
attributes:
26+
label: 🩹 Alternative Solutions + Workarounds
27+
description: If applicable, describe any alternative solutions or approaches you have considered or implemented to workaround the missing feature.
28+
placeholder: |
29+
I have tried ...
30+
I have considered ...
31+
I have implemented ...
32+
- type: dropdown
33+
attributes:
34+
label: macOS Version
35+
description: What version of macOS are you running?
36+
options:
37+
- macOS Tahoe 26
38+
- macOS Sequoia 15
39+
- macOS Sonoma 14 or older
40+
validations:
41+
required: true
42+
- type: checkboxes
43+
attributes:
44+
label: mist-cli Version
45+
description: |
46+
Can you confirm this feature does not exist in the latest version of mist-cli?
47+
48+
Latest version: **2.2**
49+
options:
50+
- label: Yes, I am using the latest version of mist-cli.
51+
required: true
52+
- type: textarea
53+
attributes:
54+
label: ℹ️ Additional Context
55+
description: Please provide any additional information that may be helpful.
56+
placeholder: Links to documentation, references, screenshots, tools etc.

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 25 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Changelog
22

3-
## [2.1.1](https://github.com/ninxsoft/mist-cli/releases/tag/v2.1) - 2024-07-09
3+
## [2.2](https://github.com/ninxsoft/mist-cli/releases/tag/v2.2) - 2025-09-21
4+
5+
- Added support for **macOS Tahoe 26** :tada:
6+
- Fixed a bug that prevented macOS Installers from being created on devices running **macOS Sonoma 15** or later - thanks [gregneagle](https://github.com/gregneagle)!
7+
8+
## [2.1.1](https://github.com/ninxsoft/mist-cli/releases/tag/v2.1.1) - 2024-07-09
49

510
- `mist` now correctly exports firmware URL and installer package metadata - thanks [chilcote](https://github.com/chilcote)!
611
- `mist` now suppresses update notifications when the `-q` / `--quiet` flag is used - thanks [mattlqx](https://github.com/mattlqx)!

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2021-2024 Nindi Gill
3+
Copyright (c) 2021-2025 Nindi Gill
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

Mist/Commands/Mist.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ struct Mist: ParsableCommand {
1212
static let configuration: CommandConfiguration = .init(abstract: .abstract, discussion: .discussion, version: version(), subcommands: [ListCommand.self, DownloadCommand.self])
1313

1414
/// Current version.
15-
private static let currentVersion: String = "2.1.1"
15+
private static let currentVersion: String = "2.2"
1616

1717
/// Visit URL string.
1818
private static let visitURLString: String = "Visit \(String.repositoryURL) to grab the latest release of \(String.appName)"

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ A Mac command-line tool that automatically downloads **macOS Firmwares** / **Ins
5050

5151
## Usage
5252

53-
```bash
53+
```shell
5454
OVERVIEW: macOS Installer Super Tool.
5555

5656
Automatically download macOS Firmwares / Installers.
@@ -74,7 +74,7 @@ SUBCOMMANDS:
7474

7575
## Examples
7676

77-
```bash
77+
```shell
7878
# List all available macOS Firmwares for Apple Silicon Macs:
7979
mist list firmware
8080

@@ -92,11 +92,11 @@ mist list installer --include-betas
9292

9393
# List only macOS Sonoma Installers for Intel Macs,
9494
# including Universal Installers for macOS Big Sur and later:
95-
mist list installer "macOS Sonoma"
95+
mist list installer "macOS Tahoe"
9696

9797
# List only the latest macOS Sonoma Installer for Intel Macs,
9898
# including Universal Installers for macOS Big Sur and later:
99-
mist list installer --latest "macOS Sonoma"
99+
mist list installer --latest "macOS Tahoe"
100100

101101
# List + Export macOS Installers to a CSV file:
102102
mist list installer --export "/path/to/export.csv"
@@ -112,30 +112,30 @@ mist list installer --export "/path/to/export.yaml"
112112

113113
# Download the latest macOS Sonoma Firmware for
114114
# Apple Silicon Macs, with a custom name:
115-
mist download firmware "macOS Sonoma" --firmware-name "Install %NAME% %VERSION%-%BUILD%.ipsw"
115+
mist download firmware "macOS Tahoe" --firmware-name "Install %NAME% %VERSION%-%BUILD%.ipsw"
116116

117117
# Download the latest macOS Sonoma Installer for Intel Macs,
118118
# including Universal Installers for macOS Big Sur and later:
119-
mist download installer "macOS Sonoma" application
119+
mist download installer "macOS Tahoe" application
120120

121121
# Download a specific macOS Installer version for Intel Macs,
122122
# including Universal Installers for macOS Big Sur and later:
123-
mist download installer "13.5.2" application
123+
mist download installer "26.0" application
124124

125125
# Download a specific macOS Installer version for Intel Macs,
126126
# including Universal Installers for macOS Big Sur and later,
127127
# with a custom name:
128-
mist download installer "13.5.2" application --application-name "Install %NAME% %VERSION%-%BUILD%.app"
128+
mist download installer "26.0" application --application-name "Install %NAME% %VERSION%-%BUILD%.app"
129129

130130
# Download a specific macOS Installer version for Intel Macs,
131131
# including Universal Installers for macOS Big Sur and later,
132132
# and generate a Disk Image with a custom name:
133-
mist download installer "13.5.2" image --image-name "Install %NAME% %VERSION%-%BUILD%.dmg"
133+
mist download installer "26.0" image --image-name "Install %NAME% %VERSION%-%BUILD%.dmg"
134134

135135
# Download a specific macOS Installer build for Inte Macs,
136136
# including Universal Installers for macOS Big Sur and later,
137137
# and generate a codesigned Disk Image output to a custom directory:
138-
mist download installer "22G91" image \
138+
mist download installer "25A354" image \
139139
--image-signing-identity "Developer ID Application: Name (Team ID)" \
140140
--output-directory "/path/to/custom/directory"
141141

@@ -144,7 +144,7 @@ mist download installer "22G91" image \
144144
# and generate an Installer Application bundle, a Disk Image,
145145
# a Bootable Disk Image, a macOS Installer Package,
146146
# all with custom names, codesigned, output to a custom directory:
147-
mist download installer "macOS Sonoma" application image iso package \
147+
mist download installer "macOS Tahoe" application image iso package \
148148
--application-name "Install %NAME% %VERSION%-%BUILD%.app" \
149149
--image-name "Install %NAME% %VERSION%-%BUILD%.dmg" \
150150
--image-signing-identity "Developer ID Application: Name (Team ID)" \
@@ -177,7 +177,7 @@ mist download installer "macOS Sonoma" application image iso package \
177177

178178
## License
179179

180-
> Copyright © 2021-2024 Nindi Gill
180+
> Copyright © 2021-2025 Nindi Gill
181181
>
182182
> Permission is hereby granted, free of charge, to any person obtaining a copy
183183
> of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)