Skip to content
Snippets Groups Projects
  1. Jan 21, 2016
  2. Jan 20, 2016
  3. Jan 19, 2016
  4. Jan 18, 2016
    • Alexandre Lision's avatar
      call: fix selection · 57227777
      Alexandre Lision authored
      animation was not triggered when making a new call or receiving one
      
      Change-Id: I2b7725a1ce92e972dbf59204ee4717b5a33cfee9
      Tuleap: #202
      57227777
  5. Jan 08, 2016
  6. Jan 07, 2016
    • Alexandre Lision's avatar
      headers: update copyright · 9fe374b1
      Alexandre Lision authored
      - Happy new year
      - remove OpenSSL additionnal permission
      - remove unnecessary ifndef for headers
      
      Change-Id: I32dcd918bb3138b3cf53e6ec078f4f720ad41e15
      Tuleap: #218
      9fe374b1
  7. Dec 15, 2015
    • Alexandre Lision's avatar
      call: allow image streaming · ba9b708b
      Alexandre Lision authored
      allow user to drag and drop or select an image from the file chooser and
      stream it to a call
      
      Issue: #78547
      Change-Id: I21e73d11e143b3eb13105368ebd757427e6645cb
      ba9b708b
    • Alexandre Lision's avatar
      call actions: fix iteration · f7e1114b
      Alexandre Lision authored
      Iterating over the UserActionModel actions was going one step too far.
      It caused the ACCEPT button to be hidden for incoming calls.
      
      Change-Id: Ia84ee0e86396cdca70268ebc2e90c3aefc2170c0
      Tuleap: #199
      f7e1114b
  8. Dec 14, 2015
  9. Nov 26, 2015
    • Alexandre Lision's avatar
      ui: change person default icon · d5229f34
      Alexandre Lision authored
      This commit introduces adjustements in lists layout.
      In SmartList
      - use custom Ring default user icon
      
      In PersonsList
      - use custom Ring default user icon
      - make categories selectable
      - remove background color of categories
      
      In HistoryList
      - add photo/default Ring user icon to history entries
      
      Tuleap: #151
      Change-Id: I99bba6ef95b31f9f6ac33d14f434c0a0bd53c654
      d5229f34
  10. Nov 16, 2015
    • Alexandre Lision's avatar
      conference: first implementation · 89edc6ad
      Alexandre Lision authored
      This commit adds conferences management
      
      - create conference by joining two ongoing calls/conferences
      - create conference by calling a new peer and joining him to the ongoing
      call/conference
      - hanging up conferences
      
      This commit relies on CallModel and RecenModel selection models
      interactions to update call view and Smartlist row selected.
      
      Change-Id: Ib9f6b9b870e66c8ccfb5115ad6fdb592c625eb58
      Tuleap: #114
      89edc6ad
  11. Nov 13, 2015
  12. Nov 11, 2015
    • Alexandre Lision's avatar
      video: disconnect preview · d7b85468
      Alexandre Lision authored
      lambda registered for frameUpdated was still alive after closing the window.
      It was consuming frames, preventing the call to get them.
      It's a limitation of our implementetation: there is only one possible receiver
      of frameUpdated for a given renderer.
      
      Tuleap: #130
      Change-Id: Ic8f5b8efea60e3409c77e4510320e3eba11fe21d
      d7b85468
  13. Nov 05, 2015
    • Alexandre Lision's avatar
      remove quality button · 0e66aea4
      Alexandre Lision authored
      this is now handled automatically by the daemon
      
      Tuleap: #96
      Change-Id: Ib0011a3bd70ed875ec66edbe6fe752fb02669dcb
      0e66aea4
    • Alexandre Lision's avatar
      call: add transfer ability · 883719f5
      Alexandre Lision authored
      This commit adds attended/unattended transfer capability
      It also improves call controls visibility
      
      Tuleap: #56
      Change-Id: I66c2bc22f015f12dc58cf98768b8b3c689e6fdcb
      883719f5
  14. Nov 04, 2015
    • Alexandre Lision's avatar
      smartlist: add contact creation · 61db3557
      Alexandre Lision authored
      Same feature as in the history, possibility to link/create contacts
      with ContactMethods
      
      Tuleap: #57
      Change-Id: I54061fa7b41c77aca371f9ef501400ded24286fb
      61db3557
  15. Oct 27, 2015
  16. Oct 26, 2015
    • Alexandre Lision's avatar
      translations: fix wrong translations · c8d9f0ba
      Alexandre Lision authored
      Qt was nos taking into account english if another translated language was in
      the system preferences list. We now check if english is defined as Primary
      language.
      
      Change-Id: Ia952778293a3942ea3aae9eae7c9da208d5e149e
      Tuleap: #59
      c8d9f0ba
  17. Oct 23, 2015
    • Alexandre Lision's avatar
      smartlist: allow filtering · bf0385ee
      Alexandre Lision authored
      peopleProxy is a QSortProxyFilter we can use to filter our smartlist
      based on user input from the searchbar
      
      Issue: #81111
      Change-Id: I0dab38670e4f5f64d924effc81405d663d90dfeb
      bf0385ee
    • Alexandre Lision's avatar
      smartlist: fix selection · ee098463
      Alexandre Lision authored
      RecentModel emits a dataChanged every second for updating call timers.
      This was causing scrolling issues in the list. We don't connect to dataChanged
      from our NSTreeController but from the View directly. The reason is that there
      is no way to update a row in a NSTreeController, only insert/remove/move and
      this is causing selection updates.
      
      Tuleap: #50
      Change-Id: Ib347ff5a69f901da2bdf1d0b3a3d368fdfd23c1c
      ee098463
  18. Oct 16, 2015
  19. Oct 14, 2015
    • Guillaume Roguez's avatar
      i18n: translation update · 7f3c37de
      Guillaume Roguez authored
      add ar, es, lt, ru, uk
      update de, fr
      
      Change-Id: Ie2a1fc24a567f2afa248a39e392e0da95d65b91f
      7f3c37de
    • Alexandre Lision's avatar
      translations: fix update script · 4f187a31
      Alexandre Lision authored and Guillaume Roguez's avatar Guillaume Roguez committed
      - file command has not the same option on Mac and Linux (-I versus -i)
      - use force mode (-f) to pull every modifications
      
      Issue: #81336
      Change-Id: I67d8f791a530757f623b361c13b1bd3cbe9aeb2c
      4f187a31
    • Alexandre Lision's avatar
      renderer: adapt to daemon API · 6731e132
      Alexandre Lision authored
      Daemon exposes a new API to fix the concurrent access problem.
      Renderer class API has changed, this patch synchronizes on it.
      
      Issue: #81542
      Change-Id: I11a89a1e6c4cd4fbc185f7eb8ebc909f2c9fe544
      6731e132
  20. Oct 06, 2015
  21. Sep 30, 2015
    • Alexandre Lision's avatar
      ui: better photos · de0314b0
      Alexandre Lision authored
      enable high antialising and smoother scaling
      
      Change-Id: Icfa99994abfd1ddb1b7311b2bf419102fb56645b
      de0314b0
    • Alexandre Lision's avatar
      ui: update in-call actions · 266fca0e
      Alexandre Lision authored
      - use new button theme for call controls buttons.
      - add an icon for recording
      - gide buttons when available instead of disabling them
      
      Issue: #79400
      Change-Id: I712467b8f7b7fe16317f4283ae9d4f91bc8b9203
      266fca0e
    • Alexandre Lision's avatar
      ui: update button style · 6da08a80
      Alexandre Lision authored
      fit with wireframes. Blue circles and white icons.
      Add this changes in the Person View Controller as well.
      
      Issue: #79400
      Change-Id: I82fd0189da0ead41e87de91d4a8123a968d79fea
      6da08a80
  22. Sep 28, 2015
  23. Sep 25, 2015
  24. Sep 24, 2015
  25. Sep 23, 2015
Loading