Skip to content

Commit

Permalink
Merge pull request #41 from chrs1885/feature/39-wcag-color-extension
Browse files Browse the repository at this point in the history
Feature/39 wcag color extension
  • Loading branch information
chrs1885 committed Jan 31, 2019
2 parents df1feab + ca9e408 commit e80b651
Show file tree
Hide file tree
Showing 96 changed files with 5,507 additions and 1,628 deletions.
2 changes: 2 additions & 0 deletions .jazzy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,6 @@ module: Capable
readme: README.md
output: Documentation
theme: apple
clean: true
sdk: iphone
xcodebuild_arguments: [-scheme, Capable, -project, ./Capable.xcodeproj]
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## Version 0.9.0

### Features
* [Add WCAG colors extension](https://github.com/chrs1885/Capable/issues/39)
* [Add feature hearingDevice on iOS](https://github.com/chrs1885/Capable/issues/38)

### Enhancements
Expand Down
7 changes: 7 additions & 0 deletions Capable.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,13 @@ Capable lets you easily keep track of accessibility settings used by your app us
featuresSubspec.source_files = 'Source/Features/**/*.swift'
end

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

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

s.subspec 'Fonts' do |fontsSubspec|
fontsSubspec.source_files = 'Source/Fonts/**/*.swift'
end
Expand Down
88 changes: 88 additions & 0 deletions Capable.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

59 changes: 57 additions & 2 deletions Documentation/Enums.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@
<li class="nav-group-task">
<a href="Enums/CapableFeature.html">CapableFeature</a>
</li>
<li class="nav-group-task">
<a href="Enums/ConformanceLevel.html">ConformanceLevel</a>
</li>
<li class="nav-group-task">
<a href="Enums/HandicapEnabledMode.html">HandicapEnabledMode</a>
</li>
Expand All @@ -42,6 +45,9 @@
<li class="nav-group-name">
<a href="Extensions.html">Extensions</a>
<ul class="nav-group-tasks">
<li class="nav-group-task">
<a href="Extensions/Color.html">Color</a>
</li>
<li class="nav-group-task">
<a href="Extensions/Notification.html">Notification</a>
</li>
Expand Down Expand Up @@ -70,6 +76,23 @@
</li>
</ul>
</li>
<li class="nav-group-name">
<a href="Typealiases.html">Type Aliases</a>
<ul class="nav-group-tasks">
<li class="nav-group-task">
<a href="Typealiases.html#/Color">Color</a>
</li>
<li class="nav-group-task">
<a href="Typealiases.html#/s:7Capable5Colora">Color</a>
</li>
<li class="nav-group-task">
<a href="Typealiases.html#/Font">Font</a>
</li>
<li class="nav-group-task">
<a href="Typealiases.html#/s:7Capable4Fonta">Font</a>
</li>
</ul>
</li>
</ul>
</nav>
<article class="main-content">
Expand All @@ -80,6 +103,38 @@ <h1>Enumerations</h1>

</section>
<section class="section task-group-section">
<div class="task-group">
<ul>
<li class="item">
<div>
<code>
<a name="/s:7Capable16ConformanceLevelO"></a>
<a name="//apple_ref/swift/Enum/ConformanceLevel" class="dashAnchor"></a>
<a class="token" href="#/s:7Capable16ConformanceLevelO">ConformanceLevel</a>
</code>
</div>
<div class="height-container">
<div class="pointer-container"></div>
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>An enum specifying all WCAG conformance levels.</p>

<a href="Enums/ConformanceLevel.html" class="slightly-smaller">See more</a>
</div>
<div class="declaration">
<h4>Declaration</h4>
<div class="language">
<p class="aside-title">Swift</p>
<pre class="highlight swift"><code><span class="kd">public</span> <span class="kd">enum</span> <span class="kt">ConformanceLevel</span> <span class="p">:</span> <span class="kt">Int</span></code></pre>

</div>
</div>
</section>
</div>
</li>
</ul>
</div>
<div class="task-group">
<ul>
<li class="item">
Expand Down Expand Up @@ -147,8 +202,8 @@ <h4>Declaration</h4>
</section>
</section>
<section id="footer">
<p>&copy; 2018 <a class="link" href="https://github.com/chrs1885" target="_blank" rel="external">Christoph Wendt</a>. All rights reserved. (Last updated: 2018-11-15)</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>
<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>
</section>
</article>
</div>
Expand Down
27 changes: 25 additions & 2 deletions Documentation/Enums/CapableFeature.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@
<li class="nav-group-task">
<a href="../Enums/CapableFeature.html">CapableFeature</a>
</li>
<li class="nav-group-task">
<a href="../Enums/ConformanceLevel.html">ConformanceLevel</a>
</li>
<li class="nav-group-task">
<a href="../Enums/HandicapEnabledMode.html">HandicapEnabledMode</a>
</li>
Expand All @@ -42,6 +45,9 @@
<li class="nav-group-name">
<a href="../Extensions.html">Extensions</a>
<ul class="nav-group-tasks">
<li class="nav-group-task">
<a href="../Extensions/Color.html">Color</a>
</li>
<li class="nav-group-task">
<a href="../Extensions/Notification.html">Notification</a>
</li>
Expand Down Expand Up @@ -70,6 +76,23 @@
</li>
</ul>
</li>
<li class="nav-group-name">
<a href="../Typealiases.html">Type Aliases</a>
<ul class="nav-group-tasks">
<li class="nav-group-task">
<a href="../Typealiases.html#/Color">Color</a>
</li>
<li class="nav-group-task">
<a href="../Typealiases.html#/s:7Capable5Colora">Color</a>
</li>
<li class="nav-group-task">
<a href="../Typealiases.html#/Font">Font</a>
</li>
<li class="nav-group-task">
<a href="../Typealiases.html#/s:7Capable4Fonta">Font</a>
</li>
</ul>
</li>
</ul>
</nav>
<article class="main-content">
Expand Down Expand Up @@ -587,8 +610,8 @@ <h4>Return Value</h4>
</section>
</section>
<section id="footer">
<p>&copy; 2018 <a class="link" href="https://github.com/chrs1885" target="_blank" rel="external">Christoph Wendt</a>. All rights reserved. (Last updated: 2018-11-15)</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>
<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>
</section>
</article>
</div>
Expand Down
Loading

0 comments on commit e80b651

Please sign in to comment.