mirror of
https://gitlab.com/openlp/website.git
synced 2024-10-31 16:52:25 +00:00
Update the 2.9.5 blog post with a message about the bug
This commit is contained in:
parent
dab6033c08
commit
ffdf63c482
@ -12,11 +12,16 @@ Today we are announcing the release of OpenLP 2.9.5. This is the second release
|
|||||||
|
|
||||||
.. warning::
|
.. warning::
|
||||||
|
|
||||||
|
Unfortunately there is a bug in this release which causes an error when you edit a song. A
|
||||||
|
temporary workaround for this is to enable chords in Settings -> Songs -> Enable Chords. In the
|
||||||
|
light of this, we are working on a new release.
|
||||||
|
|
||||||
|
.. caution::
|
||||||
|
|
||||||
Installing this version of OpenLP will override any other installation of OpenLP you already have.
|
Installing this version of OpenLP will override any other installation of OpenLP you already have.
|
||||||
Please make a backup of your data!
|
Please make a backup of your data!
|
||||||
|
|
||||||
|
.. note::
|
||||||
.. warning::
|
|
||||||
|
|
||||||
macOS may report OpenLP as damaged. If you encounter this problem, you can try the following solution. From
|
macOS may report OpenLP as damaged. If you encounter this problem, you can try the following solution. From
|
||||||
Applications / Utilities run Terminal. In Terminal, type in the following command::
|
Applications / Utilities run Terminal. In Terminal, type in the following command::
|
||||||
@ -25,7 +30,7 @@ Today we are announcing the release of OpenLP 2.9.5. This is the second release
|
|||||||
|
|
||||||
We are working on a remedy for this problem, but this command should tie you over till we get it sorted out.
|
We are working on a remedy for this problem, but this command should tie you over till we get it sorted out.
|
||||||
|
|
||||||
.. warning::
|
.. note::
|
||||||
|
|
||||||
For Linux users, due to the immaturity of Wayland, OpenLP does not behave well and it is recommended
|
For Linux users, due to the immaturity of Wayland, OpenLP does not behave well and it is recommended
|
||||||
that X11 is used as the display manager.
|
that X11 is used as the display manager.
|
||||||
|
@ -369,3 +369,92 @@ div.screenshot {
|
|||||||
border: 4px solid #efefef;
|
border: 4px solid #efefef;
|
||||||
margin: 0 10px;
|
margin: 0 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
aside.admonition, aside.attention, aside.caution, aside.danger, aside.error,
|
||||||
|
aside.hint, aside.important, aside.note, aside.tip, aside.warning, aside.sidebar,
|
||||||
|
aside.system-message,
|
||||||
|
div.admonition, div.attention, div.caution, div.danger, div.error,
|
||||||
|
div.hint, div.important, div.note, div.tip, div.warning, div.sidebar,
|
||||||
|
div.system-message {
|
||||||
|
/* stolen from Boostrap 4 (.card) */
|
||||||
|
margin-bottom: 2rem;
|
||||||
|
position: relative;
|
||||||
|
display: -webkit-box;
|
||||||
|
display: -ms-flexbox;
|
||||||
|
display: flex;
|
||||||
|
-webkit-box-orient: vertical;
|
||||||
|
-webkit-box-direction: normal;
|
||||||
|
-ms-flex-direction: column;
|
||||||
|
flex-direction: column;
|
||||||
|
min-width: 0;
|
||||||
|
word-wrap: break-word;
|
||||||
|
background-color: #fff;
|
||||||
|
color: #212529;
|
||||||
|
background-clip: border-box;
|
||||||
|
border: 1px solid rgba(0,0,0,.125);
|
||||||
|
border-radius: .25rem;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* aside.admonition {
|
||||||
|
padding: 0;
|
||||||
|
border-radius: 3px;
|
||||||
|
} */
|
||||||
|
|
||||||
|
aside.attention, aside.caution, aside.danger, aside.error {
|
||||||
|
border-color: #dc3545!important;
|
||||||
|
}
|
||||||
|
|
||||||
|
aside.admonition p, aside.hint p,
|
||||||
|
aside.important p, aside.note p,
|
||||||
|
aside.tip p, aside.sidebar p,
|
||||||
|
aside.attention p, aside.caution p,
|
||||||
|
aside.danger p, aside.error p,
|
||||||
|
aside.warning p, aside.system-message p {
|
||||||
|
padding-left: 1rem;
|
||||||
|
padding-right: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
aside.admonition p.admonition-title, aside.hint p.admonition-title,
|
||||||
|
aside.important p.admonition-title, aside.note p.admonition-title,
|
||||||
|
aside.tip p.admonition-title, aside.sidebar p.sidebar-title,
|
||||||
|
aside.attention p.admonition-title, aside.caution p.admonition-title,
|
||||||
|
aside.danger p.admonition-title, aside.error p.admonition-title,
|
||||||
|
aside.warning p.admonition-title, aside.system-message p.system-message-title {
|
||||||
|
font-weight: 400;
|
||||||
|
padding: .75rem 1.25rem;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
background-color: rgba(0,0,0,.03);
|
||||||
|
}
|
||||||
|
|
||||||
|
aside.attention p.admonition-title, aside.caution p.admonition-title,
|
||||||
|
aside.danger p.admonition-title, aside.error p.admonition-title,
|
||||||
|
aside.system-message p.system-message-title {
|
||||||
|
background-color: #dc3545;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
aside.important,
|
||||||
|
aside.warning {
|
||||||
|
border-color: #ffc107 !important
|
||||||
|
}
|
||||||
|
|
||||||
|
aside.important p.admonition-title,
|
||||||
|
aside.warning p.admonition-title {
|
||||||
|
background-color: #ffc107 !important;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
aside.information,
|
||||||
|
aside.hint,
|
||||||
|
aside.tip,
|
||||||
|
aside.note {
|
||||||
|
border-color: #17a2b8 !important
|
||||||
|
}
|
||||||
|
|
||||||
|
aside.hint p.admonition-title,
|
||||||
|
aside.note p.admonition-title,
|
||||||
|
aside.tip p.admonition-title {
|
||||||
|
background-color: #17a2b8 !important;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
@ -378,7 +378,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="modal-body">
|
<div class="modal-body">
|
||||||
<div class="alert alert-info small" role="alert">
|
<div class="alert alert-info small" role="alert">
|
||||||
<p><i class="fa fa-fw fa-info-circle notranslate"></i> OpenLP only supports Canonical-supported versions of Ubuntu from 16.04 and up.</p>
|
<p><i class="fa fa-fw fa-info-circle notranslate"></i> OpenLP only supports Canonical-supported versions of Ubuntu from 18.04 and up.</p>
|
||||||
</div>
|
</div>
|
||||||
<p>To install OpenLP, either search for OpenLP in Software Center, or run the following command:</p>
|
<p>To install OpenLP, either search for OpenLP in Software Center, or run the following command:</p>
|
||||||
<pre>$ sudo apt install openlp</pre>
|
<pre>$ sudo apt install openlp</pre>
|
||||||
|
Loading…
Reference in New Issue
Block a user