profile: implement account pixbuf method

Change-Id: I6b63cb1ba6bef7c5fe5cdf5e8e9ead2b48377c0e
Tuleap: #531
2 files changed
tree: 1007d309f2d70a7002f562f9764e53eca9abecbc
  1. .tx/
  2. docker/
  3. images/
  4. translations/
  5. .gitignore
  6. .gitmodules
  7. .gitreview
  8. .packer.yml
  9. aboutdialog.cpp
  10. aboutdialog.h
  11. aboutdialog.ui
  12. accountdetails.cpp
  13. accountdetails.h
  14. accountdetails.ui
  15. accountserializationadapter.cpp
  16. accountserializationadapter.h
  17. accountstatedelegate.cpp
  18. accountstatedelegate.h
  19. callutilsdialog.cpp
  20. callutilsdialog.h
  21. callutilsdialog.ui
  22. callwidget.cpp
  23. callwidget.h
  24. callwidget.ui
  25. combar.cpp
  26. combar.h
  27. combar.ui
  28. configurationwidget.cpp
  29. configurationwidget.h
  30. configurationwidget.ui
  31. contactdelegate.cpp
  32. contactdelegate.h
  33. contactdialog.ui
  34. contactmethodpicker.cpp
  35. contactmethodpicker.h
  36. contactmethodpicker.ui
  37. contactpicker.cpp
  38. contactpicker.h
  39. contactpicker.ui
  40. globalsystemtray.cpp
  41. globalsystemtray.h
  42. historydelegate.cpp
  43. historydelegate.h
  44. ico.rc
  45. idlabel.cpp
  46. idlabel.h
  47. imdelegate.cpp
  48. imdelegate.h
  49. instantmessagingwidget.cpp
  50. instantmessagingwidget.h
  51. instantmessagingwidget.ui
  52. License.rtf
  53. main.cpp
  54. mainwindow.cpp
  55. mainwindow.h
  56. mainwindow.ui
  57. navstack.cpp
  58. navstack.h
  59. navwidget.cpp
  60. navwidget.h
  61. pathpassworddialog.cpp
  62. pathpassworddialog.h
  63. pathpassworddialog.ui
  64. pixbufmanipulator.cpp
  65. pixbufmanipulator.h
  66. qualitydialog.cpp
  67. qualitydialog.h
  68. qualitydialog.ui
  69. README.md
  70. ressources.qrc
  71. ring.nsi
  72. ringbutton.cpp
  73. ringbutton.h
  74. ringbutton.ui
  75. ringcontactlineedit.cpp
  76. ringcontactlineedit.h
  77. ringthemeutils.h
  78. RingWinClient.pro
  79. selectareadialog.cpp
  80. selectareadialog.h
  81. settingskey.h
  82. shmclient.cpp
  83. shmclient.h
  84. smartlist.cpp
  85. smartlist.h
  86. smartlistdelegate.cpp
  87. smartlistdelegate.h
  88. stylesheet.css
  89. utils.cpp
  90. utils.h
  91. videooverlay.cpp
  92. videooverlay.h
  93. videooverlay.ui
  94. videoview.cpp
  95. videoview.h
  96. videoview.ui
  97. videowidget.cpp
  98. videowidget.h
  99. windowscontactbackend.cpp
  100. windowscontactbackend.h
  101. wizarddialog.cpp
  102. wizarddialog.h
  103. wizarddialog.ui
README.md

Windows client for Ring

For more information about the ring project, see the following:

Requirements

  • Ring client library and Ring daemon
  • Mingw-w64 build environment
  • Qt5 (we link against Qt5Core, Qt5Widgets, Qt5Gui) built with Mingw
  • Qt5 Svg, Qt5 ImageFormats & Qt5 WinExtras built with Mingw

Get the source code

  • git clone https://gerrit-ring.savoirfairelinux.com/ring-client-windows

Build instructions

USE THE QMAKE OF Qt BUILT WITH MINGW (e.g. /usr/bin/[i686 | x86_64]-w64-mingw32-qmake-qt5)

cd ring-client-windows
mkdir build && cd build
export QTDIR=<path to mingw qt> (e.g. /usr/[i686 | x86_64]-w64-mingw32/lib/qt)
git submodule init && git submodule update
cd libqrencode
./autogen.sh && ./configure --host=[i686 | x86_64]-w64-mingw32 --prefix=<Install dir of Ring and LRC>
make
make install
cd ..
qmake ../RingWinClient.pro -r -spec win32-g++ RING=<Install dir of Ring and LRC> [BUILD=Debug]
make
make install

You will find all files in ./release directory.

#Auto update

If you want to enable auto-update

  • Build winsparkle In the client directory after having initialized the submodule
    cd winsparkle
    mkdir build && cd build
    cmake -DCMAKE_TOOLCHAIN_FILE=<LRC Directory>/cmake/winBuild.cmake -DCMAKE_INSTALL_PREFIX=Install dir of Ring and LRC> ../cmake",
    make
    make install
    
  • Compile the client with ENABLE_AUTOUPDATE=True

Debugging

Compile the client with 'BUILD=Debug' and libRingClient with '-DCMAKE_BUILD_TYPE=Debug'

Packaging

cd build/release
makensis ring.nsi