Skip to content

Commit

Permalink
Folder re-name
Browse files Browse the repository at this point in the history
bumped version to 4.1.0
  • Loading branch information
bartreardon committed Sep 5, 2023
1 parent 1cdcbbc commit e3cd80a
Show file tree
Hide file tree
Showing 13 changed files with 16 additions and 17 deletions.
14 changes: 7 additions & 7 deletions Outset.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@
name = Products;
sourceTree = "<group>";
};
4124EFA6293B30D6003B00F4 /* Functions */ = {
4124EFA6293B30D6003B00F4 /* Utils */ = {
isa = PBXGroup;
children = (
4124EFA2293B2F9B003B00F4 /* FileUtils.swift */,
Expand All @@ -139,15 +139,15 @@
CC3DC8292AA70E380050EE16 /* Checksum.swift */,
CC3DC8322AA7100C0050EE16 /* ShellUtils.swift */,
);
path = Functions;
path = Utils;
sourceTree = "<group>";
};
4124EFAE29414A5D003B00F4 /* Outset */ = {
isa = PBXGroup;
children = (
4124EF90293822F4003B00F4 /* Outset.swift */,
CC3DC82B2AA70EC90050EE16 /* Extensions */,
4124EFA6293B30D6003B00F4 /* Functions */,
4124EFA6293B30D6003B00F4 /* Utils */,
4124EFC329414DA4003B00F4 /* Info.plist */,
4124EFB329414A5E003B00F4 /* Assets.xcassets */,
4124EFB829414A5E003B00F4 /* Outset.entitlements */,
Expand Down Expand Up @@ -512,7 +512,7 @@
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.15;
MARKETING_VERSION = 4.0.5;
MARKETING_VERSION = 4.1.0;
PRODUCT_BUNDLE_IDENTIFIER = io.macadmins.Outset;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down Expand Up @@ -549,7 +549,7 @@
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.15;
MARKETING_VERSION = 4.0.5;
MARKETING_VERSION = 4.1.0;
PRODUCT_BUNDLE_IDENTIFIER = io.macadmins.Outset;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down Expand Up @@ -587,7 +587,7 @@
LD_RUNPATH_SEARCH_PATHS = "@executable_path/Frameworks";
"LD_RUNPATH_SEARCH_PATHS[sdk=macosx*]" = "@executable_path/../Frameworks";
MACOSX_DEPLOYMENT_TARGET = 10.15;
MARKETING_VERSION = 4.0.4;
MARKETING_VERSION = 4.1.0;
PRODUCT_BUNDLE_IDENTIFIER = io.macadmins.Outset;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down Expand Up @@ -629,7 +629,7 @@
LD_RUNPATH_SEARCH_PATHS = "@executable_path/Frameworks";
"LD_RUNPATH_SEARCH_PATHS[sdk=macosx*]" = "@executable_path/../Frameworks";
MACOSX_DEPLOYMENT_TARGET = 10.15;
MARKETING_VERSION = 4.0.4;
MARKETING_VERSION = 4.1.0;
PRODUCT_BUNDLE_IDENTIFIER = io.macadmins.Outset;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down
4 changes: 2 additions & 2 deletions Outset/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
<key>CFBundlePackageType</key>
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
<key>CFBundleShortVersionString</key>
<string>4.0.5</string>
<string>4.1.0</string>
<key>CFBundleVersion</key>
<string>4.0.5</string>
<string>4.1.0</string>
<key>LSApplicationCategoryType</key>
<string>public.app-category.utilities</string>
<key>LSMinimumSystemVersion</key>
Expand Down
15 changes: 7 additions & 8 deletions Outset/Outset.swift
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,13 @@ struct Outset: ParsableCommand {
debugMode = true
}

if version {
print(outsetVersion)
if debugMode {
writeSysReport()
}
}

if enableServices, #available(macOS 13.0, *) {
let manager = ServiceManager()
manager.registerDaemons()
Expand Down Expand Up @@ -160,7 +167,6 @@ struct Outset: ParsableCommand {
continueFirstBoot = waitForNetworkUp(timeout: floor(Double(prefs.networkTimeout) / 10))
}
if continueFirstBoot {
writeSysReport()
processItems(bootOnceDir, deleteItems: true)
} else {
writeLog("Unable to connect to network. Skipping boot-once scripts...", logLevel: .error)
Expand Down Expand Up @@ -337,12 +343,5 @@ struct Outset: ParsableCommand {
writeLog("\(filename) : \(checksum)", logLevel: .info)
}
}

if version {
print(outsetVersion)
if debugMode {
writeSysReport()
}
}
}
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit e3cd80a

Please sign in to comment.