This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash -e | |
echo "🤡 Applying carthage 12 and 13 workaround 🤡" | |
xcconfig=$(mktemp /tmp/static.xcconfig.XXXXXX) | |
# For Xcode 12 make sure EXCLUDED_ARCHS is set to arm architectures otherwise | |
# the build will fail on lipo due to duplicate architectures. | |
CURRENT_XCODE_VERSION=$(xcodebuild -version | grep "Build version" | cut -d' ' -f3) | |
echo 'EXCLUDED_ARCHS__EFFECTIVE_PLATFORM_SUFFIX_simulator__NATIVE_ARCH_64_BIT_x86_64__XCODE_1200 = arm64 arm64e armv7 armv7s armv6 armv8' > $xcconfig | |
echo "EXCLUDED_ARCHS__EFFECTIVE_PLATFORM_SUFFIX_simulator__NATIVE_ARCH_64_BIT_x86_64__XCODE_1200__BUILD_$CURRENT_XCODE_VERSION = arm64 arm64e armv7 armv7s armv6 armv8" >> $xcconfig |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// | |
// NTSolar.swift | |
// | |
// Created by Neil Tiffin on 5/8/19. | |
// Copyright © 2019 Performance Champions, Inc. | |
// Copyright © 2019 Neil Tiffin. | |
// | |
// Released to the public domain by Neil Tiffin, May 2019 | |
// Released to the public domain by Performance Champions, Inc., May 2019 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Old | New | |
---|---|---|
.hidden | .d-none | |
.hidden-xs-up | .d-none | |
.hidden-xs | .d-none .d-sm-[value] | |
.visible-xs | .d-sm-none | |
.visible-xs-block | .d-block .d-sm-none | |
.visible-xs-inline | .d-inline .d-sm-none | |
.visible-xs-inline-block | .d-inline-block .d-sm-none | |
.hidden-xs-down | .d-none .d-sm-[value] | |
.hidden-sm | .d-sm-none .d-md-[value] |