A music player that connects to your cloud/distributed storage.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: typos

+5 -5
+5 -5
src/themes/loader/constituent/index.vto
··· 147 147 <li> 148 148 <span>Fill the queue automatically <small>(infinite play)</small></span> 149 149 <div class="list-description"> 150 - <code>foundation.feature.fillQueueAutomatically()</code> 150 + <code>foundation.features.fillQueueAutomatically()</code> 151 151 </div> 152 152 </li> 153 153 <li> 154 154 <span>Play audio from the queue</span> 155 155 <div class="list-description"> 156 - <code>foundation.feature.playAudioFromQueue()</code> 156 + <code>foundation.features.playAudioFromQueue()</code> 157 157 </div> 158 158 </li> 159 159 <li> 160 160 <span>Process inputs <small>(into tracks, etc)</small></span> 161 161 <div class="list-description"> 162 - <code>foundation.feature.processInputs()</code> 162 + <code>foundation.features.processInputs()</code> 163 163 </div> 164 164 </li> 165 165 <li> 166 166 <span>Search through your collection</span> 167 167 <div class="list-description" style="margin-bottom: 0;"> 168 - <code>foundation.feature.searchThroughCollection()</code> 168 + <code>foundation.features.searchThroughCollection()</code> 169 169 </div> 170 170 </li> 171 171 </ul> ··· 174 174 While you have the ability to do whatever you want in a custom constituent, the existing constituents are designed to work a certain way; so here's some things to keep in mind: 175 175 </p> 176 176 <ul> 177 - <li><span>In most cases you'll want to call <code>foundation.feature.processInputs()</code> so that your audio files and streams actually show up.</span></li> 177 + <li><span>In most cases you'll want to call <code>foundation.features.processInputs()</code> so that your audio files and streams actually show up.</span></li> 178 178 <li><span>Most elements are configured in broadcast mode so they communicate across tabs. There are a few exceptions such as inputs, where we prefer parallelisation.</span></li> 179 179 </ul> 180 180 </section>