Skip to content
Snippets Groups Projects
  1. Oct 21, 2022
    • Sébastien Blin's avatar
      conversationmodel: fix loading for some conversations · 1a994173
      Sébastien Blin authored
      If there was too much following merge commits, sometimes the
      conversation was not correctly loaded.
      Moreover, the lastMessageUID was not correctly calculated from
      time to time, leading to empty conversations in the smartlist.
      
      Change-Id: I1224269c5df72936ae51f34211ce3f63dbf606ff
      Unverified
      1a994173
    • Andreas Traczyk's avatar
      chat-view: fix data transfer image size reload loops · 644c841a
      Andreas Traczyk authored and Sébastien Blin's avatar Sébastien Blin committed
      Changing the source size property of the QML Image component causes
      a reload using the new source dimensions. The image loading process
      was triggering reloading that was not recognized as a binding loop.
      
      This commit also corrects the image sizing algorithm to prefer and
      restrict height, which prevents images that are too tall from
      taking up too much vertical space in the chat list view.
      
      GitLab: #857
      Change-Id: I049b1bb8ea4d23a753e7b54de884d9c1eafdf83c
      644c841a
  2. Oct 20, 2022
    • Aline Gondim Santos's avatar
      camera: fix closing · c0315bbc
      Aline Gondim Santos authored
      - camera stays open after call with dbus
      - camera stays open after call to account on same device
      
      Change-Id: I2f2adf37b681009adfced6fe4d02d326b9408866
      GitLab: #858
      c0315bbc
  3. Oct 19, 2022
  4. Oct 18, 2022
  5. Oct 17, 2022
    • Jenkins's avatar
      i18n: automatic bump · 536da22e
      Jenkins authored
      Change-Id: I034a72ca0147a552e1791d497e86dac8551717b8
      536da22e
    • Amin Bandali's avatar
      build: Add daemon submodule and optionally use it. · ca7b1e70
      Amin Bandali authored and Sébastien Blin's avatar Sébastien Blin committed
      This allows invoking cmake with -DWITH_DAEMON_SUBMODULE=true to use
      the daemon header files and library from the submodule.  Note that it
      is currently still necessary to build the daemon separately first,
      either manually or using the build.py convenience script.
      
      The goal is to eventually add support for building the daemon with
      CMake in the future, so that we could add_subdirectory(${DAEMON_DIR})
      in client-qt's CMakeLists.txt and have CMake take care of everything.
      
      Change-Id: I3a16c44837e6c79616b3101fea8a6ff3defa3ab5
      ca7b1e70
    • Amin Bandali's avatar
      build: Simplify FindLibJami.cmake module. · 3f1bc76c
      Amin Bandali authored and Sébastien Blin's avatar Sébastien Blin committed
      * extras/build/cmake/modules/FindLibJami.cmake: find_library's NAMES
      option can take multiple library names.  So, just use that instead of
      multiple almost-duplicate calls to find_library for trying different
      names.
      
      Change-Id: I9ae5d96e1abcb8117ad65b79b3cc27424b4f87d7
      3f1bc76c
    • Jenkins's avatar
      i18n: automatic bump · e31c4f8a
      Jenkins authored and Adrien Béraud's avatar Adrien Béraud committed
      Change-Id: I37e6de330dde179efaf8b1d6436adea45de01aad
      e31c4f8a
    • Sébastien Blin's avatar
      swarmdetailspanel: link to setConversationPreferences · ef2d588a
      Sébastien Blin authored
      Save current color, and notification's preferences
      
      Change-Id: I3197be53bf622528aa3bc2e3f0d9aea29068e144
      ef2d588a
  6. Oct 14, 2022
  7. Oct 12, 2022
  8. Oct 11, 2022
  9. Oct 07, 2022
  10. Oct 06, 2022
  11. Oct 05, 2022
  12. Oct 04, 2022
    • Nicolas Vengeon's avatar
      tooltips: changes on tooltips management · dbd7aa52
      Nicolas Vengeon authored
      -Tips are no longer deleted
      -Tips are shown randomly
      -Custom tooltip and backup tooltip are shown first if needed
      
      Gitlab: #846
      Change-Id: Icadc1dcef23ff7d5783e840d3d1528d399166e24
      dbd7aa52
    • Amin Bandali's avatar
      misc: Set SortFilterProxyModel submodule's branch to 'qt-6'. · d6e7a6b7
      Amin Bandali authored
      * .gitmodules: Set the 'branch' property for the SortFilterProxyModel
      submodule to 'qt-6'.  This is needed because by default git picks
      'master' when the '--remote' option is given for submodule update,
      and our fork of the SortFilterProxyModel repository currently has the
      latest changes only in the 'qt-6' branch.
      
      Change-Id: I3d7797d847324ff4a7268f682b11ec88630931fa
      d6e7a6b7
    • Aline Gondim Santos's avatar
      misc: fix call hold · 3250c029
      Aline Gondim Santos authored
      GitLab: jami-daemon#769
      
      Change-Id: I209215e0f81fe0e810a5cf243f122db9bb7065b6
      3250c029
    • Amin Bandali's avatar
      build: Tweak CMakeLists.txt pkg-config usage for finding avutil. · 7fb102ed
      Amin Bandali authored
      * CMakeLists.txt: Prepend CMAKE_PREFIX_PATH with the location of
      libavutil.pc from daemon's contrib before trying to find libavutil
      using pkg-config, and remove it afterwards.  Further, there is no need
      to link the application executable against libavutil; the application
      only needs its headers (libclient, however, does already link against
      libavutil).
      
      Change-Id: Iffa5af43bfd1bb62bc24cc94dce292f87e9ecb2a
      7fb102ed
    • Amin Bandali's avatar
      build: Fix find_library for contrib avutil on GNU/Linux. · fb94c385
      Amin Bandali authored
      * src/libclient/CMakeLists.txt: Set the right 'hint' path for the call
      to find_library for ffmpeg avutil from daemon's contrib, to match the
      directory name used by daemon's 'contrib/bootstrap' script: the name
      of the directory is the value returned by the C++ compiler (either GNU
      or Clang) when invoked with the '-dumpmachine' option.
      
      Change-Id: I03de150aa941a1e32471e5b4cbe507e5d09787f5
      fb94c385
  13. Sep 30, 2022
  14. Sep 29, 2022
    • Andreas Traczyk's avatar
      avmodel: use synchronous callbacks for DecodingStarted/Stopped · 15e13330
      Andreas Traczyk authored and Adrien Béraud's avatar Adrien Béraud committed
      This is an older issue that has resurfaced where mobile device rotation
      at the beginning of a call cause a frame-copy to a stale buffer because
      the DecodingStarted event is handled asynchronously.
      
      Noticed on Windows but I believe any non-dbus build should have it.
      
      So we make all the connections blocking and adjust some parameters.
      This commit also removes the DecodingStarted handler in CallModel which
      was causing the client's target video frame to be reallocated for each
      account present.
      
      Change-Id: I23ac4e0bd4b446e7a532f0d362f7ecd209d3c790
      GitLab: #536
      15e13330
  15. Sep 28, 2022
Loading