Skip to content

Commit

Permalink
deploy: 980c6d2
Browse files Browse the repository at this point in the history
  • Loading branch information
jayohms committed Dec 18, 2024
1 parent 4e80bec commit 0c57716
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -191,12 +191,12 @@ <h1 class="landing-intro__text grid__item grid__item--start-2 grid__item--span-1
</div>

<div class="landing-versions">
<a class="landing-version button" href="https://github.com/hotwired/hotwire-native-ios/releases/tag/1.0.0">
Current iOS version: <em>1.0.0</em> &mdash; released Sep 25, 2024
<a class="landing-version button" href="https://github.com/hotwired/hotwire-native-ios/releases/tag/1.1.0">
Current iOS version: <em>1.1.0</em> &mdash; released Dec 18, 2024
</a>

<a class="landing-version button" href="https://github.com/hotwired/hotwire-native-android/releases/tag/1.0.1">
Current Android version: <em>1.0.1</em> &mdash; released Oct 22, 2024
<a class="landing-version button" href="https://github.com/hotwired/hotwire-native-android/releases/tag/1.1.0">
Current Android version: <em>1.1.0</em> &mdash; released Dec 18, 2024
</a>
</div>

Expand Down
2 changes: 1 addition & 1 deletion reference/path-configuration.html
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@
<section id="content" class="docs__content grid__custom-item">

<h1>Path Configuration</h1>
<p>The basics of <em>Path Configuration</em> are explained in the <a href="/overview/03-path-configuration">overview</a>. If you’re ready to build your first Path Configuration, keep reading.</p>
<p>The basics of <em>Path Configuration</em> are explained in the <a href="/overview/path-configuration">overview</a>. If you’re ready to build your first Path Configuration, keep reading.</p>
<h2 id="settings"><a class="anchor" href="#settings"></a> Settings</h2>
<p><code>settings</code> is your sandbox for App-level configuration. As explained in the overview, common use cases include feature flags or any additional information that your app may use to configure itself. Feel free to add or modify any objects or arrays here, always remembering to <a href="/overview/03-path-configuration">version</a> your path configuration if you make breaking changes.</p>
<pre class="language-json"><code class="language-json"><span class="token punctuation">{</span><br> <span class="token property">"settings"</span><span class="token operator">:</span> <span class="token punctuation">{</span><br> <span class="token property">"use_local_db"</span><span class="token operator">:</span> <span class="token boolean">true</span><span class="token punctuation">,</span><br> <span class="token property">"cable"</span><span class="token operator">:</span> <span class="token punctuation">{</span><br> <span class="token property">"script_url"</span><span class="token operator">:</span> <span class="token string">"https://hotwire-native-demo.dev/configurations/action_cable.js"</span><br> <span class="token punctuation">}</span><span class="token punctuation">,</span><br> <span class="token property">"feature_flags"</span><span class="token operator">:</span> <span class="token punctuation">[</span><br> <span class="token punctuation">{</span><br> <span class="token property">"name"</span><span class="token operator">:</span> <span class="token string">"new_onboarding_flow"</span><span class="token punctuation">,</span><br> <span class="token property">"enabled"</span><span class="token operator">:</span> <span class="token boolean">true</span><br> <span class="token punctuation">}</span><br> <span class="token punctuation">]</span><br> <span class="token punctuation">}</span><br> <span class="token property">"rules"</span><span class="token operator">:</span> <span class="token punctuation">[</span><span class="token punctuation">]</span><br><span class="token punctuation">}</span></code></pre>
Expand Down

0 comments on commit 0c57716

Please sign in to comment.