-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
418 additions
and
495 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,27 +9,24 @@ | |
<update_contact>[email protected]</update_contact> | ||
<description> | ||
<p> | ||
Linux Show Player (or LiSP for short) is a free cue player designed for sound-playback in stage production. | ||
The goal of the project is to provide a complete playback software for musical plays, | ||
theater shows and similar. | ||
Linux Show Player, LiSP for short, is a free cue player, mainly intended for sound-playback in stage productions, | ||
the goal is to provide a complete playback software for musical plays, theater shows and similar. | ||
</p> | ||
<p>Some of the features include:</p> | ||
<p>Some highlights:</p> | ||
<ul> | ||
<li>Cart layout suited for touchscreens</li> | ||
<li>List layout suited for keyboards</li> | ||
<li>List layout</li> | ||
<li>Cart layout (buttons) for touchscreens</li> | ||
<li>Concurrent cues playback</li> | ||
<li>Pre/Post wait</li> | ||
<li>Undo/Redo changes</li> | ||
<li>Multiple concurrent cue playback</li> | ||
<li>Realtime sound effects: equalization, pitch shift, speed control, compression, ...</li> | ||
<li>Realtime sound effects: equalization, pitch shift, speed control, compression</li> | ||
<li>Peak and ReplayGain normalization</li> | ||
<li>Remote control over network, between two or more sessions</li> | ||
<li>MIDI support</li> | ||
<li>OSC support</li> | ||
<li>Large media-format support thanks to GStreamer</li> | ||
<li>Send/Receive MIDI and OSC messages</li> | ||
<li>Large media-format support thanks to Gstreamer</li> | ||
</ul> | ||
</description> | ||
<url type="homepage">http://linux-show-player.sourceforge.net</url> | ||
<url type="homepage">https://www.linux-show-player.org/</url> | ||
<url type="bugtracker">https://github.com/FrancescoCeruti/linux-show-player/issues</url> | ||
<url type="help">http://linux-show-player-users.readthedocs.io/en/latest/index.html</url> | ||
<url type="translate">https://github.com/FrancescoCeruti/linux-show-player/wiki/Translations</url> | ||
<url type="help">https://linux-show-player-users.readthedocs.io/en/latest/index.html</url> | ||
<url type="translate">https://crowdin.com/project/linux-show-player</url> | ||
</component> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,12 @@ | ||
.align-middle { | ||
vertical-align: middle; | ||
} | ||
|
||
.sidebar-brand-text { | ||
text-align: center; | ||
} | ||
|
||
.sidebar-brand-version { | ||
text-align: center; | ||
color: var(--color-foreground-muted); | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<a class="sidebar-brand{% if logo %} centered{% endif %}" href="{{ pathto(master_doc) }}"> | ||
{% block brand_content %} | ||
{%- if logo_url %} | ||
<div class="sidebar-logo-container"> | ||
<img class="sidebar-logo" src="{{ logo_url }}" alt="Logo"/> | ||
</div> | ||
{%- endif %} | ||
{%- if theme_light_logo and theme_dark_logo %} | ||
<div class="sidebar-logo-container"> | ||
<img class="sidebar-logo only-light" src="{{ pathto('_static/' + theme_light_logo, 1) }}" alt="Light Logo"/> | ||
<img class="sidebar-logo only-dark" src="{{ pathto('_static/' + theme_dark_logo, 1) }}" alt="Dark Logo"/> | ||
</div> | ||
{%- endif %} | ||
{% if not theme_sidebar_hide_name %} | ||
<span class="sidebar-brand-text">{{ docstitle if docstitle else project }}</span> | ||
<span class="sidebar-brand-version">{{ release }}</span> | ||
{%- endif %} | ||
{% endblock brand_content %} | ||
</a> |
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
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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.