i18n: automatic bump

Change-Id: Ibd0d14da0d83877b78dfc7b6408b682eedf2d1df
1 file changed
tree: 87a9af3a3862ccd3075642b597996d6b70c2f951
  1. .tx/
  2. docker/
  3. images/
  4. translations/
  5. .gitignore
  6. .gitmodules
  7. .gitreview
  8. aboutdialog.cpp
  9. aboutdialog.h
  10. aboutdialog.ui
  11. accountdetails.cpp
  12. accountdetails.h
  13. accountdetails.ui
  14. accountitemdelegate.cpp
  15. accountitemdelegate.h
  16. accountlistmodel.cpp
  17. accountlistmodel.h
  18. accountserializationadapter.cpp
  19. accountserializationadapter.h
  20. accountstatedelegate.cpp
  21. accountstatedelegate.h
  22. bannedcontactswidget.cpp
  23. bannedcontactswidget.h
  24. bannedcontactswidget.ui
  25. callutilsdialog.cpp
  26. callutilsdialog.h
  27. callutilsdialog.ui
  28. callwidget.cpp
  29. callwidget.h
  30. callwidget.ui
  31. configurationwidget.cpp
  32. configurationwidget.h
  33. configurationwidget.ui
  34. contactdialog.ui
  35. contactpicker.cpp
  36. contactpicker.h
  37. contactpicker.ui
  38. contactrequestwidget.cpp
  39. contactrequestwidget.h
  40. contactrequestwidget.ui
  41. conversationfilterbutton.cpp
  42. conversationfilterbutton.h
  43. conversationitemdelegate.cpp
  44. conversationitemdelegate.h
  45. conversationsfilterwidget.cpp
  46. conversationsfilterwidget.h
  47. currentaccountcombobox.cpp
  48. currentaccountcombobox.h
  49. deleteaccountdialog.cpp
  50. deleteaccountdialog.h
  51. deleteaccountdialog.ui
  52. fetch-qrencodewin32.bat
  53. fetch-winsparkle.bat
  54. globalsystemtray.cpp
  55. globalsystemtray.h
  56. ico.rc
  57. idlabel.cpp
  58. idlabel.h
  59. imdelegate.cpp
  60. imdelegate.h
  61. instantmessagingwidget.cpp
  62. instantmessagingwidget.h
  63. instantmessagingwidget.ui
  64. invitebuttonswidget.cpp
  65. invitebuttonswidget.h
  66. invitebuttonswidget.ui
  67. License.rtf
  68. lrcinstance.h
  69. main.cpp
  70. mainwindow.cpp
  71. mainwindow.h
  72. mainwindow.ui
  73. messagemodel.cpp
  74. messagemodel.h
  75. navwidget.cpp
  76. navwidget.h
  77. photoboothdialog.cpp
  78. photoboothdialog.h
  79. photoboothdialog.ui
  80. photoboothwidget.cpp
  81. photoboothwidget.h
  82. photoboothwidget.ui
  83. pixbufmanipulator.cpp
  84. pixbufmanipulator.h
  85. qualitydialog.cpp
  86. qualitydialog.h
  87. qualitydialog.ui
  88. quickactcontactrequestwidget.ui
  89. README.md
  90. ressources.qrc
  91. ring-client-windows.sln
  92. ring-client-windows.vcxproj
  93. ring-client-windows.vcxproj.filters
  94. ring.nsi
  95. ringbutton.cpp
  96. ringbutton.h
  97. ringbutton.ui
  98. ringcontactlineedit.cpp
  99. ringcontactlineedit.h
  100. ringthemeutils.h
  101. RingWinClient.pro
  102. selectareadialog.cpp
  103. selectareadialog.h
  104. sendcontactrequestwidget.cpp
  105. sendcontactrequestwidget.h
  106. sendcontactrequestwidget.ui
  107. settingskey.h
  108. shmclient.cpp
  109. shmclient.h
  110. smartlistmodel.cpp
  111. smartlistmodel.h
  112. smartlistselectorbuttonnotifier.cpp
  113. smartlistselectorbuttonnotifier.h
  114. smartlistview.cpp
  115. smartlistview.h
  116. stylesheet.css
  117. update-translations.py
  118. utils.cpp
  119. utils.h
  120. videooverlay.cpp
  121. videooverlay.h
  122. videooverlay.ui
  123. videoview.cpp
  124. videoview.h
  125. videoview.ui
  126. videowidget.cpp
  127. videowidget.h
  128. windowscontactbackend.cpp
  129. windowscontactbackend.h
  130. wizarddialog.cpp
  131. wizarddialog.h
  132. wizarddialog.ui
  133. wizardwidget.cpp
  134. wizardwidget.h
  135. wizardwidget.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