Skip to content

Commit

Permalink
Merge pull request #669 from lindegroup/1.5.7-dev
Browse files Browse the repository at this point in the history
1.5.7 dev
  • Loading branch information
shawnhonsberger authored Mar 5, 2021
2 parents b8e1775 + df3b392 commit ee5f115
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 10 deletions.
8 changes: 4 additions & 4 deletions AutoPkgr.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -3149,7 +3149,7 @@
INFOPLIST_FILE = "AutoPkgr/Supporting Files/AutoPkgr-Info.plist";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks";
MACOSX_DEPLOYMENT_TARGET = 10.13;
MARKETING_VERSION = 1.5.6;
MARKETING_VERSION = 1.5.7;
ONLY_ACTIVE_ARCH = YES;
OTHER_CODE_SIGN_FLAGS = "";
"OTHER_CODE_SIGN_FLAGS[sdk=*]" = "--options=runtime";
Expand Down Expand Up @@ -3214,7 +3214,7 @@
INFOPLIST_FILE = "AutoPkgr/Supporting Files/AutoPkgr-Info.plist";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks";
MACOSX_DEPLOYMENT_TARGET = 10.13;
MARKETING_VERSION = 1.5.6;
MARKETING_VERSION = 1.5.7;
ONLY_ACTIVE_ARCH = YES;
OTHER_CODE_SIGN_FLAGS = "";
"OTHER_CODE_SIGN_FLAGS[sdk=*]" = "--options=runtime";
Expand Down Expand Up @@ -3339,7 +3339,7 @@
INSTALL_PATH = "";
"INSTALL_PATH[sdk=*]" = /Library/PrivilegedHelperTools/;
MACOSX_DEPLOYMENT_TARGET = 10.13;
MARKETING_VERSION = 1.5.6;
MARKETING_VERSION = 1.5.7;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
OTHER_CFLAGS = (
Expand Down Expand Up @@ -3396,7 +3396,7 @@
INSTALL_PATH = "";
"INSTALL_PATH[sdk=*]" = /Library/PrivilegedHelperTools/;
MACOSX_DEPLOYMENT_TARGET = 10.13;
MARKETING_VERSION = 1.5.6;
MARKETING_VERSION = 1.5.7;
MTL_ENABLE_DEBUG_INFO = NO;
ONLY_ACTIVE_ARCH = YES;
OTHER_CFLAGS = (
Expand Down
4 changes: 2 additions & 2 deletions AutoPkgr/Models/AutoPkg Task/LGAutoPkgRepo.m
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ - (instancetype)initWithGitHubDictionary:(NSDictionary *)dictionary
if (self = [super init]) {
_name = dictionary[@"name"];
_cloneURL = [NSURL URLWithString:dictionary[@"clone_url"]];
_defaultBranch = dictionary[@"default_branch"];
_defaultBranch = dictionary[@"default_branch"] ?: @"master";

_homeURL = [NSURL URLWithString:dictionary[@"html_url"]];
_stars = [dictionary[@"stargazers_count"] integerValue];
Expand Down Expand Up @@ -114,7 +114,7 @@ - (NSString *)path
- (NSString *)defaultBranch
{
if (!_defaultBranch) {
_defaultBranch = @"default_branch";
_defaultBranch = @"master";
}
return _defaultBranch;
}
Expand Down
4 changes: 2 additions & 2 deletions AutoPkgr/Supporting Files/AutoPkgr-Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.5.6</string>
<string>1.5.7</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1484</string>
<string>1492</string>
<key>LSApplicationCategoryType</key>
<string>public.app-category.utilities</string>
<key>LSMinimumSystemVersion</key>
Expand Down
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file. This projec

## [Unreleased](unreleased)

## [1.5.7] - 2021-03-05

### Fixed

- Corrected default branch invocation to avoid issues when working with integrations and repos. This resolves issue [#665](https://github.com/lindegroup/autopkgr/issues/665) and [#668](https://github.com/lindegroup/autopkgr/issues/668). Thanks to [@apizz](https://github.com/apizz) and [@jaw4uz](https://github.com/jaw4uz) for the reports!
- Issue [#666](https://github.com/lindegroup/autopkgr/issues/666), unrelated to AutoPkgr has been resolved by the release of [AutoPkg 2.3.1](https://github.com/autopkg/autopkg/releases/tag/v2.3.1). Thanks to [@homebysix](https://github.com/homebysix) for [#723](https://github.com/autopkg/autopkg/issues/723) and [#724](https://github.com/autopkg/autopkg/pull/724) for the reports and fixes!

## [1.5.6] - 2021-02-23

### Changed
Expand Down Expand Up @@ -505,7 +512,8 @@ All notable changes to this project will be documented in this file. This projec
- Initial public release of AutoPkgr.


[unreleased]: https://github.com/lindegroup/autopkgr/compare/v1.5.6...HEAD
[unreleased]: https://github.com/lindegroup/autopkgr/compare/v1.5.7...HEAD
[1.5.7]: https://github.com/lindegroup/autopkgr/compare/v1.5.6...v1.5.7
[1.5.6]: https://github.com/lindegroup/autopkgr/compare/v1.5.5...v1.5.6
[1.5.5]: https://github.com/lindegroup/autopkgr/compare/v1.5.4...v1.5.5
[1.5.4]: https://github.com/lindegroup/autopkgr/compare/v1.5.3...v1.5.4
Expand Down
2 changes: 1 addition & 1 deletion Privileged Helper/helper-Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<key>CFBundleName</key>
<string>com.lindegroup.AutoPkgr.helper</string>
<key>CFBundleShortVersionString</key>
<string>1.5.6</string>
<string>1.5.7</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>SMAuthorizedClients</key>
Expand Down

0 comments on commit ee5f115

Please sign in to comment.