make password optional in account creation

To reflect the fact that it is possible to not set
a password for an account, the wizard now offers the choice
to disable the password.
The action is made positive by providing a checkbox to do so,
hence avoiding non encrypted accounts on misclicks.

Change-Id: Ie2c552423484ef42926cdf989e62e61cebeda878
Reviewed-by: Anthony Léonard <anthony.leonard@savoirfairelinux.com>
2 files changed
tree: 4a649859ca04dda57101675c1d6e37920f2d9028
  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. accountserializationadapter.cpp
  15. accountserializationadapter.h
  16. accountstatedelegate.cpp
  17. accountstatedelegate.h
  18. bannedcontactswidget.cpp
  19. bannedcontactswidget.h
  20. bannedcontactswidget.ui
  21. callutilsdialog.cpp
  22. callutilsdialog.h
  23. callutilsdialog.ui
  24. callwidget.cpp
  25. callwidget.h
  26. callwidget.ui
  27. combar.cpp
  28. combar.h
  29. combar.ui
  30. configurationwidget.cpp
  31. configurationwidget.h
  32. configurationwidget.ui
  33. contactdialog.ui
  34. contactmethodpicker.cpp
  35. contactmethodpicker.h
  36. contactmethodpicker.ui
  37. contactpicker.cpp
  38. contactpicker.h
  39. contactpicker.ui
  40. contactrequestitemdelegate.cpp
  41. contactrequestitemdelegate.h
  42. contactrequestlistwidget.cpp
  43. contactrequestlistwidget.h
  44. contactrequestwidget.cpp
  45. contactrequestwidget.h
  46. contactrequestwidget.ui
  47. currentaccountwidget.cpp
  48. currentaccountwidget.h
  49. currentaccountwidget.ui
  50. deleteaccountdialog.cpp
  51. deleteaccountdialog.h
  52. deleteaccountdialog.ui
  53. deletecontactdialog.cpp
  54. deletecontactdialog.h
  55. deletecontactdialog.ui
  56. globalsystemtray.cpp
  57. globalsystemtray.h
  58. ico.rc
  59. idlabel.cpp
  60. idlabel.h
  61. imdelegate.cpp
  62. imdelegate.h
  63. instantmessagingwidget.cpp
  64. instantmessagingwidget.h
  65. instantmessagingwidget.ui
  66. License.rtf
  67. main.cpp
  68. mainwindow.cpp
  69. mainwindow.h
  70. mainwindow.ui
  71. navwidget.cpp
  72. navwidget.h
  73. pathpassworddialog.cpp
  74. pathpassworddialog.h
  75. pathpassworddialog.ui
  76. photoboothdialog.cpp
  77. photoboothdialog.h
  78. photoboothdialog.ui
  79. photoboothwidget.cpp
  80. photoboothwidget.h
  81. photoboothwidget.ui
  82. pixbufmanipulator.cpp
  83. pixbufmanipulator.h
  84. qualitydialog.cpp
  85. qualitydialog.h
  86. qualitydialog.ui
  87. quickactcontactrequestwidget.cpp
  88. quickactcontactrequestwidget.h
  89. quickactcontactrequestwidget.ui
  90. README.md
  91. ressources.qrc
  92. ring.nsi
  93. ringbutton.cpp
  94. ringbutton.h
  95. ringbutton.ui
  96. ringcontactlineedit.cpp
  97. ringcontactlineedit.h
  98. ringthemeutils.h
  99. RingWinClient.pro
  100. selectareadialog.cpp
  101. selectareadialog.h
  102. sendcontactrequestwidget.cpp
  103. sendcontactrequestwidget.h
  104. sendcontactrequestwidget.ui
  105. settingskey.h
  106. shmclient.cpp
  107. shmclient.h
  108. smartlist.cpp
  109. smartlist.h
  110. smartlistdelegate.cpp
  111. smartlistdelegate.h
  112. stylesheet.css
  113. update-translations.py
  114. utils.cpp
  115. utils.h
  116. videooverlay.cpp
  117. videooverlay.h
  118. videooverlay.ui
  119. videoview.cpp
  120. videoview.h
  121. videoview.ui
  122. videowidget.cpp
  123. videowidget.h
  124. windowscontactbackend.cpp
  125. windowscontactbackend.h
  126. wizarddialog.cpp
  127. wizarddialog.h
  128. 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