adding ids and changing email in readme

This commit is contained in:
Chris Cochrun 2022-04-22 15:46:11 -05:00
parent 8acf57fc2b
commit bc6f6b0606
2 changed files with 8 additions and 3 deletions

View file

@ -7,12 +7,12 @@ This is an attempt at building a church presentation application in Qt/QML. QML
** Features (planned are in parentheses) ** Features (planned are in parentheses)
- Presents songs lyrics with image and video backgrounds - Presents songs lyrics with image and video backgrounds
- Use MPV as a rendering system for videos - Use MPV as a rendering system for videos
- Simple song creation with a powerful text parser - Almost fully finished
- (Present Slides) - (Present Slides)
- (Custom slide builder) - (Custom slide builder)
- (Simple song creation with a powerful text parser)
** MPV ** MPV
You will need MPV installed in order to use this. All videos run through it. This, however, enables us to make videos work very well and with a lot of control and since it uses ffmpeg underneath, nearly any codec regardless of underlying system. This prevents the need for the user to go and install other codecs to work with Windows or MacOS. It also means a much easier control system and the potential to stream web content as well. You will need MPV installed in order to use this. All videos run through it. This, however, enables us to make videos work very well and with a lot of control and since it uses ffmpeg underneath, nearly any codec regardless of underlying system. This prevents the need for the user to install other codecs to work with Windows or MacOS. It also means a much easier control system and the potential to stream web content as well without downloading first.
* Build and Run * Build and Run
First get the source code First get the source code
@ -33,4 +33,4 @@ Then run.
#+END_SRC #+END_SRC
* Contact Me * Contact Me
If, for whatever reason, you need to contact me and get something ironed out, please do so at [[mailto:chris@tfcconnection.org][chris@tfcconnection.org]] If, for whatever reason, you need to contact me and get something ironed out, please do so at [[mailto:chris@tfcconnection.org][chris@cochrun.xyz]]

View file

@ -27,13 +27,16 @@ Item {
anchors.fill: parent anchors.fill: parent
Controls.ComboBox { Controls.ComboBox {
id: fontBox
model: Qt.fontFamilies() model: Qt.fontFamilies()
implicitWidth: 300 implicitWidth: 300
editable: true editable: true
hoverEnabled: true hoverEnabled: true
flat: true
onCurrentTextChanged: showPassiveNotification(currentText) onCurrentTextChanged: showPassiveNotification(currentText)
} }
Controls.SpinBox { Controls.SpinBox {
id: fontSizeBox
editable: true editable: true
from: 5 from: 5
to: 72 to: 72
@ -44,6 +47,7 @@ Item {
model: ["Left", "Center", "Right", "Justify"] model: ["Left", "Center", "Right", "Justify"]
implicitWidth: 100 implicitWidth: 100
hoverEnabled: true hoverEnabled: true
flat: true
onActivated: updateHorizontalTextAlignment(currentText.toLowerCase()); onActivated: updateHorizontalTextAlignment(currentText.toLowerCase());
} }
Controls.ComboBox { Controls.ComboBox {
@ -51,6 +55,7 @@ Item {
model: ["Top", "Center", "Bottom"] model: ["Top", "Center", "Bottom"]
implicitWidth: 100 implicitWidth: 100
hoverEnabled: true hoverEnabled: true
flat: true
onActivated: updateVerticalTextAlignment(currentText.toLowerCase()); onActivated: updateVerticalTextAlignment(currentText.toLowerCase());
} }
Controls.ToolButton { Controls.ToolButton {