summaryrefslogtreecommitdiff
path: root/src/gui/guiConfirmRegistration.cpp
Commit message (Collapse)AuthorAge
* Drop wide/narrow conversion functionssfan52021-02-02
| | | | | | | | | The only valid usecase for these is interfacing with OS APIs that want a locale/OS-specific multibyte encoding. But they weren't used for that anywhere, instead UTF-8 is pretty much assumed when it comes to that. Since these are only a potential source of bugs and do not fulfil their purpose at all, drop them entirely.
* Android: Fix ConfirmRegistration and PasswordChange input and scale size ↵Maksim2020-07-21
| | | | (#10182)
* Formspecs: volume and key settings windows can now be closed by ↵Zughy2020-07-14
| | | | | | | doubleclicking/tapping (#10128) Co-authored-by: Xx_Crazyminer_xX <carlo.digioia@hotmail.it> Co-authored-by: Marco <4279489-marco_a@users.noreply.gitlab.com>
* Formspecs: Add state-selection to style elements (#9378)Hugues Ross2020-04-11
|
* guiConfirmRegistration: Fix hidden error messageSmallJoker2019-12-09
|
* Add more visual feedback for button states (#8916)Hugues Ross2019-10-12
| | | | | | - Add style properties for overriding the the hovered/pressed state - By default, hovered buttons are a lighter version of the base color - By default, pressed buttons are a darker version of the base color - Add hovered bg image support for image buttons (style property)
* guiConfirmRegistration: Set focus to text field (#8761)ANAND2019-08-07
|
* Drop GUIConfirmRegistration::m_address unused fieldLoïc Blot2019-03-12
|
* Confirm registration GUI: Remove positional strings to fix Windows bug (#8258)Paramat2019-03-10
| | | | Positional strings don't work on some Windows builds. Remove server address string, leave player name string present.
* Move client-specific files to 'src/client' (#7902)Quentin Bazin2018-11-28
| | | | | Update Android.mk Remove 'src/client' from include_directories
* Make non-formspec modal menus respect gui scale (#7850)stujones112018-11-26
|
* Move touchscreen input handling to base GUIModalMenu classstujones112018-10-29
|
* Add a MSVC / Windows compatible snprintf function (#7353)nOOb31672018-07-22
| | | Use sizeof where applicable for mt_snprintf
* Fix memory leak in guiConfirmRegistrationHybridDog2018-07-06
|
* Fix crash guiConfirmRegistration quit menu (#7313)Vincent Glize2018-05-10
|
* Server: delegate mod management & config to ServerModConfiguration (#7131)Loïc Blot2018-03-16
| | | | | | | | * Server: delegate mod management & config to ServerModConfiguration (rename it to ServerModManager) * Use c++11 range based loops * Add unittests + experimental/default mod as a test case to permit testing mod loading in future tests
* Fix Android build, but there is a remaining linking issue in ↵Loic Blot2018-03-11
| | | | | | guiConfirmRegistration * Also fix variable name overloading in guiConfirmRegistration
* Registration dialog: Larger text field with scrollbars (#7047)SmallJoker2018-02-23
| | | Center text, text area doubled now
* Registration confirmation dialog: Fix grammarMuhammad Rifqi Priyo Susanto2018-01-13
| | | | Fixes commit 792752997c5ae2aaa4f54d0a2e2af2a96d7d1e9f.
* Add confirmation on new player registration (#6849)Muhammad Rifqi Priyo Susanto2018-01-13
* Attempt to add registration confirmation Using SRP auth mechanism, if server sent AUTH_MECHANISM_FIRST_SRP that means the player isn't exist. Also tell player about the server and chosen username. Local game has localhost as IP address of the server. Add RenderingEngine::draw_menu_scene() to draw GUI and clouds background. aborted -> connection_aborted * Rewrite information message text Client::promptConfirmRegister() -> Client::promptConfirmRegistration()