Skip to content

Commit

Permalink
Merge tag '0.9.0' into develop
Browse files Browse the repository at this point in the history
0.9.0
  • Loading branch information
Christoph Wendt committed Feb 1, 2019
2 parents e80b651 + e9e547a commit e822e26
Show file tree
Hide file tree
Showing 50 changed files with 332 additions and 197 deletions.
2 changes: 1 addition & 1 deletion .jazzy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ module: Capable
readme: README.md
output: Documentation
theme: apple
clean: true
clean: false
sdk: iphone
xcodebuild_arguments: [-scheme, Capable, -project, ./Capable.xcodeproj]
8 changes: 4 additions & 4 deletions Capable.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'Capable'
s.version = '0.8.0'
s.version = '0.9.0'
s.summary = 'Keep track of accessibility settings and enable users with disabilities to use your iOS, tvOS, and watchOS app.'

s.description = <<-DESC
Expand All @@ -11,7 +11,7 @@ Capable lets you easily keep track of accessibility settings used by your app us
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Christoph Wendt' => 'christoph.wendt@me.com' }
s.source = { :git => 'https://github.com/chrs1885/Capable.git', :tag => s.version }
s.documentation_url = 'http://htmlpreview.github.io/?https://github.com/chrs1885/Capable/blob/0.8.0/Documentation/index.html'
s.documentation_url = 'http://htmlpreview.github.io/?https://github.com/chrs1885/Capable/blob/0.9.0/Documentation/index.html'
s.swift_version = '4.2'

s.framework = 'Foundation'
Expand All @@ -26,14 +26,14 @@ Capable lets you easily keep track of accessibility settings used by your app us
s.osx.framework = 'AppKit'
s.osx.deployment_target = '10.12'

featuresSubspec.source_files = 'Source/Features/**/*.swift'
featuresSubspec.source_files = 'Source/Features/**/*.swift', 'Source/Common/**/*.swift'
end

s.subspec 'Colors' do |colorsSubspec|
s.osx.framework = 'AppKit'
s.osx.deployment_target = '10.12'

colorsSubspec.source_files = 'Source/Colors/**/*.swift'
colorsSubspec.source_files = 'Source/Colors/**/*.swift', 'Source/Common/**/*.swift'
end

s.subspec 'Fonts' do |fontsSubspec|
Expand Down
38 changes: 27 additions & 11 deletions Capable.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,31 @@
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
44AD88B9220482AF00266F4A /* Common */ = {
isa = PBXGroup;
children = (
44AD88BB220487CD00266F4A /* Logger */,
);
path = Common;
sourceTree = "<group>";
};
44AD88BA220482D400266F4A /* Common */ = {
isa = PBXGroup;
children = (
833CE9AB2196261200D741DE /* LoggerTests.swift */,
);
path = Common;
sourceTree = "<group>";
};
44AD88BB220487CD00266F4A /* Logger */ = {
isa = PBXGroup;
children = (
83648E9D218A36560095D208 /* Logger.swift */,
833CE9A92194CCF400D741DE /* OSLogType+greaterEqual.swift */,
);
path = Logger;
sourceTree = "<group>";
};
44FE2E3721147F7A00029869 /* Protocols */ = {
isa = PBXGroup;
children = (
Expand All @@ -223,7 +248,6 @@
834C72332131F55100DCEBDC /* HandicapNotificationsTests.swift */,
8323D8E72167C2550015F8A3 /* HandicapStatusesTests.swift */,
83648E962187BD000095D208 /* HandicapTests.swift */,
833CE9AB2196261200D741DE /* LoggerTests.swift */,
83DC7B5F2149BB4800AF12A7 /* NotificationsTests.swift */,
);
path = Features;
Expand Down Expand Up @@ -297,14 +321,6 @@
path = Models;
sourceTree = "<group>";
};
837EE71220F1590500AC8A11 /* Utilities */ = {
isa = PBXGroup;
children = (
83648E9D218A36560095D208 /* Logger.swift */,
);
path = Utilities;
sourceTree = "<group>";
};
8382A327206EC73400E264A3 /* Notifications */ = {
isa = PBXGroup;
children = (
Expand All @@ -325,7 +341,6 @@
833DB9C0206C187C00C8DA02 /* Models */,
8382A327206EC73400E264A3 /* Notifications */,
83B5FFE720653AC000E8E83F /* Statuses */,
837EE71220F1590500AC8A11 /* Utilities */,
);
path = Features;
sourceTree = "<group>";
Expand Down Expand Up @@ -421,6 +436,7 @@
isa = PBXGroup;
children = (
83DAF4B221A4A0F10076F542 /* Colors */,
44AD88B9220482AF00266F4A /* Common */,
83973AD6206FD1B80057CD4F /* Features */,
83973AD7206FD1E00057CD4F /* Fonts */,
83DA75EB2065167600303D8F /* Capable.h */,
Expand All @@ -433,6 +449,7 @@
isa = PBXGroup;
children = (
83097DA321A9732500703F29 /* Colors */,
44AD88BA220482D400266F4A /* Common */,
44FE2E382114804600029869 /* Features */,
44FE2E392114807F00029869 /* Fonts */,
83DA75F82065167600303D8F /* Info.plist */,
Expand All @@ -456,7 +473,6 @@
83D2A46820F006000032054C /* CGFloat+contentSizeString.swift */,
83C6A352219E0FF200BB039D /* HearingDeviceEar+stringValue.swift */,
833DB9BE206C164B00C8DA02 /* Notification+Name.swift */,
833CE9A92194CCF400D741DE /* OSLogType+greaterEqual.swift */,
83C6A350219E08DB00BB039D /* String+isDefaultContentSize.swift */,
83DB72452069891200384B3F /* UIContentSizeCategory+values.swift */,
);
Expand Down
4 changes: 2 additions & 2 deletions Documentation/Enums.html
Original file line number Diff line number Diff line change
Expand Up @@ -202,8 +202,8 @@ <h4>Declaration</h4>
</section>
</section>
<section id="footer">
<p>&copy; 2019 <a class="link" href="https://github.com/chrs1885" target="_blank" rel="external">Christoph Wendt</a>. All rights reserved. (Last updated: 2019-01-31)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.5</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
<p>&copy; 2019 <a class="link" href="https://github.com/chrs1885" target="_blank" rel="external">Christoph Wendt</a>. All rights reserved. (Last updated: 2019-02-01)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</article>
</div>
Expand Down
4 changes: 2 additions & 2 deletions Documentation/Enums/CapableFeature.html
Original file line number Diff line number Diff line change
Expand Up @@ -610,8 +610,8 @@ <h4>Return Value</h4>
</section>
</section>
<section id="footer">
<p>&copy; 2019 <a class="link" href="https://github.com/chrs1885" target="_blank" rel="external">Christoph Wendt</a>. All rights reserved. (Last updated: 2019-01-31)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.5</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
<p>&copy; 2019 <a class="link" href="https://github.com/chrs1885" target="_blank" rel="external">Christoph Wendt</a>. All rights reserved. (Last updated: 2019-02-01)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</article>
</div>
Expand Down
4 changes: 2 additions & 2 deletions Documentation/Enums/ConformanceLevel.html
Original file line number Diff line number Diff line change
Expand Up @@ -298,8 +298,8 @@ <h4>Parameters</h4>
</section>
</section>
<section id="footer">
<p>&copy; 2019 <a class="link" href="https://github.com/chrs1885" target="_blank" rel="external">Christoph Wendt</a>. All rights reserved. (Last updated: 2019-01-31)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.5</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
<p>&copy; 2019 <a class="link" href="https://github.com/chrs1885" target="_blank" rel="external">Christoph Wendt</a>. All rights reserved. (Last updated: 2019-02-01)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</article>
</div>
Expand Down
4 changes: 2 additions & 2 deletions Documentation/Enums/HandicapEnabledMode.html
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,8 @@ <h4>Declaration</h4>
</section>
</section>
<section id="footer">
<p>&copy; 2019 <a class="link" href="https://github.com/chrs1885" target="_blank" rel="external">Christoph Wendt</a>. All rights reserved. (Last updated: 2019-01-31)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.5</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
<p>&copy; 2019 <a class="link" href="https://github.com/chrs1885" target="_blank" rel="external">Christoph Wendt</a>. All rights reserved. (Last updated: 2019-02-01)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</article>
</div>
Expand Down
4 changes: 2 additions & 2 deletions Documentation/Extensions.html
Original file line number Diff line number Diff line change
Expand Up @@ -185,8 +185,8 @@ <h4>Declaration</h4>
</section>
</section>
<section id="footer">
<p>&copy; 2019 <a class="link" href="https://github.com/chrs1885" target="_blank" rel="external">Christoph Wendt</a>. All rights reserved. (Last updated: 2019-01-31)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.5</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
<p>&copy; 2019 <a class="link" href="https://github.com/chrs1885" target="_blank" rel="external">Christoph Wendt</a>. All rights reserved. (Last updated: 2019-02-01)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</article>
</div>
Expand Down
4 changes: 2 additions & 2 deletions Documentation/Extensions/Color.html
Original file line number Diff line number Diff line change
Expand Up @@ -500,8 +500,8 @@ <h4>Return Value</h4>
</section>
</section>
<section id="footer">
<p>&copy; 2019 <a class="link" href="https://github.com/chrs1885" target="_blank" rel="external">Christoph Wendt</a>. All rights reserved. (Last updated: 2019-01-31)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.5</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
<p>&copy; 2019 <a class="link" href="https://github.com/chrs1885" target="_blank" rel="external">Christoph Wendt</a>. All rights reserved. (Last updated: 2019-02-01)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</article>
</div>
Expand Down
4 changes: 2 additions & 2 deletions Documentation/Extensions/Notification.html
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,8 @@ <h4>Declaration</h4>
</section>
</section>
<section id="footer">
<p>&copy; 2019 <a class="link" href="https://github.com/chrs1885" target="_blank" rel="external">Christoph Wendt</a>. All rights reserved. (Last updated: 2019-01-31)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.5</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
<p>&copy; 2019 <a class="link" href="https://github.com/chrs1885" target="_blank" rel="external">Christoph Wendt</a>. All rights reserved. (Last updated: 2019-02-01)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</article>
</div>
Expand Down
4 changes: 2 additions & 2 deletions Documentation/Extensions/Notification/Name.html
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,8 @@ <h4>Declaration</h4>
</section>
</section>
<section id="footer">
<p>&copy; 2019 <a class="link" href="https://github.com/chrs1885" target="_blank" rel="external">Christoph Wendt</a>. All rights reserved. (Last updated: 2019-01-31)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.5</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
<p>&copy; 2019 <a class="link" href="https://github.com/chrs1885" target="_blank" rel="external">Christoph Wendt</a>. All rights reserved. (Last updated: 2019-02-01)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</article>
</div>
Expand Down
16 changes: 2 additions & 14 deletions Documentation/Extensions/UIFont.html
Original file line number Diff line number Diff line change
Expand Up @@ -158,10 +158,6 @@ <h1>UIFont</h1>
<div class="abstract">
<p>Creates a scalable system font with a given reference font size.</p>

<ul>
<li><p>fontSize: The reference font size to use.</p></li>
</ul>

</div>
</section>
</div>
Expand All @@ -181,10 +177,6 @@ <h1>UIFont</h1>
<div class="abstract">
<p>Creates a scalable bold system font with a given reference font size.</p>

<ul>
<li><p>fontSize: The reference font size to use.</p></li>
</ul>

</div>
</section>
</div>
Expand All @@ -204,10 +196,6 @@ <h1>UIFont</h1>
<div class="abstract">
<p>Creates a scalable italic system font with a given reference font size.</p>

<ul>
<li><p>fontSize: The reference font size to use.</p></li>
</ul>

</div>
</section>
</div>
Expand All @@ -217,8 +205,8 @@ <h1>UIFont</h1>
</section>
</section>
<section id="footer">
<p>&copy; 2019 <a class="link" href="https://github.com/chrs1885" target="_blank" rel="external">Christoph Wendt</a>. All rights reserved. (Last updated: 2019-01-31)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.5</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
<p>&copy; 2019 <a class="link" href="https://github.com/chrs1885" target="_blank" rel="external">Christoph Wendt</a>. All rights reserved. (Last updated: 2019-02-01)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</article>
</div>
Expand Down
Binary file added Documentation/Images/features_example_app.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions Documentation/Structs.html
Original file line number Diff line number Diff line change
Expand Up @@ -234,8 +234,8 @@ <h4>Declaration</h4>
</section>
</section>
<section id="footer">
<p>&copy; 2019 <a class="link" href="https://github.com/chrs1885" target="_blank" rel="external">Christoph Wendt</a>. All rights reserved. (Last updated: 2019-01-31)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.5</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
<p>&copy; 2019 <a class="link" href="https://github.com/chrs1885" target="_blank" rel="external">Christoph Wendt</a>. All rights reserved. (Last updated: 2019-02-01)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.3</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</article>
</div>
Expand Down
Loading

0 comments on commit e822e26

Please sign in to comment.