Skip to content
Snippets Groups Projects
  • Nicolas Werner's avatar
    8c44c5e2
    Change scroll behaviour of timeline · 8c44c5e2
    Nicolas Werner authored
    This requires Qt 5.9 (to calculate overshoot).
    The default scroll behaviour of list views has far too much inertia.
    This should make scrolling feel more like scrolling the other scroll
    areas of nheko.
    8c44c5e2
    History
    Change scroll behaviour of timeline
    Nicolas Werner authored
    This requires Qt 5.9 (to calculate overshoot).
    The default scroll behaviour of list views has far too much inertia.
    This should make scrolling feel more like scrolling the other scroll
    areas of nheko.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
.travis.yml 5.60 KiB
language: cpp
sudo: required
dist: trusty

notifications:
  webhooks:
    urls:
    - https://scalar.vector.im/api/neb/services/hooks/dHJhdmlzLWNpLyU0MHJlZF9za3klM0FuaGVrby5pbS8lMjFVYkNtSWxHVEhOSWdJUlpjcHQlM0FuaGVrby5pbQ
    on_success: always
    on_failure: always
    on_start: never
  email: false

matrix:
    include:
        - os: osx
          compiler: clang
          # Use the default osx image, because that one is actually tested to work with homebrew and probably the oldest supported version
          #          osx_image: xcode9
          env:
              - DEPLOYMENT=1
              - USE_BUNDLED_BOOST=0
              - USE_BUNDLED_CMARK=0
              - USE_BUNDLED_JSON=0
              - MTX_STATIC=1
        - os: linux
          compiler: gcc
          env:
              - CXX_COMPILER=g++-5
              - C_COMPILER=gcc-5
              - QT_VERSION="-5.10.1"
              - QT_PKG=510
              - DEPLOYMENT=1
              - USE_BUNDLED_BOOST=1
              - USE_BUNDLED_CMARK=1
              - USE_BUNDLED_JSON=1
          addons:
              apt:
                  sources: ["ubuntu-toolchain-r-test"]
                  packages: ["g++-5", "ninja-build"]
        - os: linux
          compiler: gcc
          env:
              - CXX_COMPILER=g++-8
              - C_COMPILER=gcc-8
              - QT_VERSION=592
              - QT_PKG=59
              - USE_BUNDLED_BOOST=1
              - USE_BUNDLED_CMARK=1
              - USE_BUNDLED_JSON=1
          addons:
              apt:
                  sources: ["ubuntu-toolchain-r-test"]
                  packages: ["g++-8", "ninja-build"]
        - os: linux
          compiler: clang
          env:
              - CXX_COMPILER=clang++-5.0
              - C_COMPILER=clang-5.0
              - QT_VERSION=592
              - QT_PKG=59
              - USE_BUNDLED_BOOST=1
              - USE_BUNDLED_CMARK=1
              - USE_BUNDLED_JSON=1
          addons:
              apt:
                  sources: ["ubuntu-toolchain-r-test", "llvm-toolchain-trusty-5.0"]
                  packages: ["clang-5.0", "g++-7", "ninja-build"]

before_install: