Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
ninxsoft committed Aug 25, 2021
1 parent 2025f4d commit f650f56
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 7 deletions.
4 changes: 2 additions & 2 deletions KMART.pkgproj
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@
<key>USE_HFS+_COMPRESSION</key>
<false/>
<key>VERSION</key>
<string>1.1</string>
<string>1.2</string>
</dict>
<key>PROJECT_COMMENTS</key>
<dict>
Expand Down Expand Up @@ -731,7 +731,7 @@
</dict>
</array>
<key>NAME</key>
<string>KMART 1.1</string>
<string>KMART 1.2</string>
<key>PAYLOAD_ONLY</key>
<false/>
</dict>
Expand Down
10 changes: 6 additions & 4 deletions KMART.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -812,27 +812,29 @@
57E2539625D8CB7E00931A0B /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CODE_SIGN_IDENTITY = "Developer ID Application";
CODE_SIGN_STYLE = Manual;
DEVELOPMENT_TEAM = 7K3HVCLV7Z;
ENABLE_HARDENED_RUNTIME = YES;
MACOSX_DEPLOYMENT_TARGET = 10.15;
PRODUCT_BUNDLE_IDENTIFIER = com.ninxsoft.kmart;
PRODUCT_NAME = kmart;
PROVISIONING_PROFILE_SPECIFIER = "";
SWIFT_VERSION = 5.0;
};
name = Debug;
};
57E2539725D8CB7E00931A0B /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CODE_SIGN_IDENTITY = "Developer ID Application";
CODE_SIGN_STYLE = Manual;
DEVELOPMENT_TEAM = 7K3HVCLV7Z;
ENABLE_HARDENED_RUNTIME = YES;
MACOSX_DEPLOYMENT_TARGET = 10.15;
PRODUCT_BUNDLE_IDENTIFIER = com.ninxsoft.kmart;
PRODUCT_NAME = kmart;
PROVISIONING_PROFILE_SPECIFIER = "";
SWIFT_VERSION = 5.0;
};
name = Release;
Expand Down
2 changes: 1 addition & 1 deletion KMART/Commands/Version.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import Foundation

struct Version {

static let version: String = "1.1"
static let version: String = "1.2"

static func run() {
print(version)
Expand Down
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,20 @@ Grab the latest version of KMART from the [releases page](https://github.com/nin

## Version History

* 1.2
* Added support for sending reports via Slack
* Read [Basic app setup](https://api.slack.com/authentication/basics) to create a Slack app with a Bot token
* **Note:** The Bot token will require the `chat:write` and `files:write` [permission scopes](https://api.slack.com/scopes)
* See [Sample Configs](Sample%20Configs#slack) for more information
* Added `mac_devices_unmanaged` and `mobile_devices_unmanaged` report types
* Mac and Mobile device reports now exclude unmanaged devices
* Added support for custom `api_timeout` value (default: `10`)
* Mac Packages now also display Categories in Markdown / HTML reports
* Improved file handling for Mac Extension Attributes and Mac Scripts over 64KB
* Fixed escaping of `\` in JSON reports
* Fixed escaping of `_` in Markdown / HTML reports
* Reduced verbosity of output messaging (reads much nicer)

* 1.1
* Report on one-off Mac Policies that were created via Jamf Remote (`mac_policies_jamf_remote`)
* Less ambiguous descriptions for Markdown / HTML output
Expand Down

0 comments on commit f650f56

Please sign in to comment.