diff options
| -rw-r--r-- | .travis.yml | 6 | ||||
| -rw-r--r-- | player.cpp | 2 | ||||
| -rw-r--r-- | player.ui | 8 |
3 files changed, 10 insertions, 6 deletions
diff --git a/.travis.yml b/.travis.yml index f47a297..aafbbd1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,11 +1,13 @@ language: cpp +sudo: require +dist: trusty before_install: - sudo apt-get install libtag1-dev qt5-qmake libqt5x11extras5-dev qt5-default qttools5-dev-tools libqt5svg5-dev qtmultimedia5-dev libgtk2.0-dev script: - qmake - - make - - make install INSTALL_ROOT=appdir + - make -j$(nproc) + - make install INSTALL_ROOT=appdir -j$(nproc) install ; find appdir/ - wget -c -nv "https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage" - chmod a+x linuxdeployqt-continuous-x86_64.AppImage - "./linuxdeployqt-continuous-x86_64.AppImage appdir/usr/share/applications/*.desktop -bundle-non-qt-libs" @@ -32,6 +32,8 @@ Player::Player(QWidget *parent) : QMainWindow(parent) , ui(new Ui::Player) { + QSlider volumeSlider; + //connect() ui->setupUi(this); } @@ -7,7 +7,7 @@ <x>0</x> <y>0</y> <width>800</width> - <height>600</height> + <height>607</height> </rect> </property> <property name="windowTitle"> @@ -57,7 +57,7 @@ <rect> <x>560</x> <y>500</y> - <width>160</width> + <width>211</width> <height>31</height> </rect> </property> @@ -93,9 +93,9 @@ <widget class="QLabel" name="label"> <property name="geometry"> <rect> - <x>570</x> + <x>650</x> <y>530</y> - <width>58</width> + <width>51</width> <height>18</height> </rect> </property> |
