diff --git a/.travis.yml b/.travis.yml index 69afe27..fc3e0ae 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,8 +9,6 @@ matrix: script: - xcodebuild -configuration Debug -arch x86_64 -arch i386 ONLY_ACTIVE_ARCH=NO - xcodebuild -configuration Release -arch x86_64 -arch i386 ONLY_ACTIVE_ARCH=NO - - xcodebuild analyze -quiet -scheme gfxutil -configuration Debug CLANG_ANALYZER_OUTPUT=plist-html CLANG_ANALYZER_OUTPUT_DIR="$(pwd)/clang-analyze" && [ "$(find clang-analyze -name "*.html")" = "" ] - - xcodebuild analyze -quiet -scheme gfxutil -configuration Release CLANG_ANALYZER_OUTPUT=plist-html CLANG_ANALYZER_OUTPUT_DIR="$(pwd)/clang-analyze" && [ "$(find clang-analyze -name "*.html")" = "" ] deploy: provider: releases @@ -21,3 +19,11 @@ matrix: secure: kh3CAy7WchPAuzP8Ke6+6WyqC6XNsOv2j2bB+7TSmV3u3kugHhZ1X31RoP4zTXRwjoRQvPcCNRDDFBJxj787iVabZ1ewe9Zdy+gfelvtABViVa394L0NGKz5b9+1RQb2L8fBlvniri9ANe9ilHt8xm0YfSPbDw9k6i5q9WDjzoMjuNQ5Drlis/KknJ9ZksGZtbvnWiA8clmzEvhO/P9Er1v8+2qbLHMvYHbrfgNxfEiaHAz3jvJc6gBVRQJ7qCfITqnC9pdRodYeoR5kt1fctW22y9OsxVkBiwl6+RWO/SpXyd8EmzyALRJthlCtMIv+ycaFu4nOMFdYA/F+x05MkEI4UqBkvpKK5lRHUV3cX+XkQRTFFgbcKx/TQEQLqYgiIddvovLhDEIwRWevDiC+VlekZiUAR4bG9cIhizU3ebjFJqsDCGDzkH0hfQ+J05O2V70v555i8dOeRtOazvzPZ3njNuM+s0l/3/Wb9ejxsWeDnjjEDeF1vodv61xHJBEltRI5WL3lDpJvdVCbo1gcv3mJ73vlmQM/ixsdJUfqYQO9ibK7+V3rLZANtx+QoiPrims5/NGpQeQjK7hSqk0c2mX7n+f899DQepQwATSxvgcSXhPYsSsW6rWodvt2OrxpEvN7BfkgavVQA01jQjQz8+wVVXal7ByEGHRfk9RfKFE= on: tags: true + + - os: osx + osx_image: xcode9.4 + compiler: clang + + script: + - xcodebuild analyze -quiet -scheme gfxutil -configuration Debug CLANG_ANALYZER_OUTPUT=plist-html CLANG_ANALYZER_OUTPUT_DIR="$(pwd)/clang-analyze" && [ "$(find clang-analyze -name "*.html")" = "" ] + - xcodebuild analyze -quiet -scheme gfxutil -configuration Release CLANG_ANALYZER_OUTPUT=plist-html CLANG_ANALYZER_OUTPUT_DIR="$(pwd)/clang-analyze" && [ "$(find clang-analyze -name "*.html")" = "" ] diff --git a/Changelog.md b/Changelog.md new file mode 100644 index 0000000..9811e66 --- /dev/null +++ b/Changelog.md @@ -0,0 +1,10 @@ +gfxutil changelog +================= + +#### 1.77b +- Fix string saving cutting down 2 bytes +- Fix string detection to match IORegistryExplorer behaviour + +#### 1.76b +- x86_64 support +- Minor bugfixes diff --git a/gfxutil.xcodeproj/project.pbxproj b/gfxutil.xcodeproj/project.pbxproj index ad3dc3d..9aefe8e 100644 --- a/gfxutil.xcodeproj/project.pbxproj +++ b/gfxutil.xcodeproj/project.pbxproj @@ -37,6 +37,7 @@ 98CAD1230D322BF900808BB2 /* efidevp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = efidevp.c; sourceTree = ""; }; 98CAD3FE0D3381B500808BB2 /* main.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = main.h; sourceTree = ""; }; C6859E970290921104C91782 /* gfxutil.1 */ = {isa = PBXFileReference; lastKnownFileType = text.man; path = gfxutil.1; sourceTree = ""; }; + CE147CCF2185E87400536AE6 /* Changelog.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = Changelog.md; sourceTree = ""; }; CE363A8120FE90F000ED7DC0 /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IOKit.framework; path = System/Library/Frameworks/IOKit.framework; sourceTree = SDKROOT; }; CE363A8320FE90FC00ED7DC0 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = System/Library/Frameworks/CoreFoundation.framework; sourceTree = SDKROOT; }; CEC0494720FEA1B300FBCAC9 /* README.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; @@ -92,6 +93,7 @@ children = ( C6859E970290921104C91782 /* gfxutil.1 */, CEC0494720FEA1B300FBCAC9 /* README.md */, + CE147CCF2185E87400536AE6 /* Changelog.md */, ); name = Documentation; sourceTree = "";