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

Commit 718b2b4

Browse files
authored
Merge pull request #79 from Shufflepuck/hotfix/missing-policies
Fix missing policies / tags
2 parents c02b8f6 + 03ca5b7 commit 718b2b4

File tree

4 files changed

+19
-13
lines changed

4 files changed

+19
-13
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

8+
## [1.2.2]
9+
10+
### Fixed
11+
12+
* 1.2.1 doesn't even show, let alone install policies [[#77](https://github.com/Shufflepuck/SplashBuddy/issues/77)]
13+
814
## [1.2.1]
915

1016
### Fixed
@@ -15,7 +21,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1521

1622
### Added
1723

18-
* `/private/tmp/SplashBuddy/` with more tag files : `criticalDone` (All critical softwares are installed), `errorWhileInstalling` (Errors while installing), `allInstalled` (All software is installed (failed or success)), `allSuccessfullyInstalled` (All software is sucessfully installed).
24+
* `/private/tmp/SplashBuddy/` with more tag files : `CriticalDone` (All critical softwares are installed), `ErrorWhileInstalling` (Errors while installing), `AllInstalled` (All software is installed (failed or success)), `AllSuccessfullyInstalled` (All software is sucessfully installed).
1925
* With `labMode` set to `true`, SplashBuddy will automatically display `complete.html` from `presentation.bundle` when all software is done installing (successfully or not) -- thank you @howardgmac
2026

2127
### Changed

SplashBuddy/Business Objects/Software/SoftwareArray.swift

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,22 +20,22 @@ class SoftwareArray: NSObject {
2020
enum StateNotification: String {
2121

2222
/// An error was detected (even if software is not in `applicationArray`)
23-
case errorWhileInstalling
23+
case errorWhileInstalling = "ErrorWhileInstalling"
2424

2525
/// All critical software were installed
26-
case canContinue
26+
case canContinue = "CanContinue"
2727

2828
/// All software were installed (either failed or success)
29-
case doneInstalling
29+
case doneInstalling = "DoneInstalling"
3030

3131
/// All software were installed successfully
32-
case allSuccess
32+
case allSuccess = "AllSuccess"
3333

3434
/// SplashBuddy will start processing the log
35-
case setupInstalling
35+
case setupInstalling = "SetupInstalling"
3636

3737
/// SplashBuddy is processing the log
38-
case processing
38+
case processing = "Processing"
3939

4040
var notification: Notification.Name {
4141
return Notification.Name(rawValue: self.rawValue)

SplashBuddy/Resources/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
<key>CFBundlePackageType</key>
1818
<string>APPL</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>1.2.1</string>
20+
<string>1.2.2</string>
2121
<key>CFBundleVersion</key>
22-
<string>23</string>
22+
<string>24</string>
2323
<key>LSMinimumSystemVersion</key>
2424
<string>$(MACOSX_DEPLOYMENT_TARGET)</string>
2525
<key>NSHumanReadableCopyright</key>

SplashBuddy/Tools/Preferences.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -176,10 +176,10 @@ class Preferences {
176176
}
177177

178178
private enum TagFile: String {
179-
case criticalDone
180-
case errorWhileInstalling
181-
case allInstalled
182-
case allSuccessfullyInstalled
179+
case criticalDone = "CriticalDone"
180+
case errorWhileInstalling = "ErrorWhileInstalling"
181+
case allInstalled = "AllInstalled"
182+
case allSuccessfullyInstalled = "AllSuccessfullyInstalled"
183183
}
184184

185185
private func createSplashBuddyTmpIfNeeded() {

0 commit comments

Comments
 (0)