aboutsummaryrefslogtreecommitdiff
path: root/src/gui/guiConfirmRegistration.cpp
AgeCommit message (Collapse)Author
2022-06-05Add register dialog to separate login/register (#12185)rubenwardy
New users find Minetest's account system confusing. This change moves username/password to a new dialog, with login and register buttons added to the Join Game tab. The old registration confirmation dialog is removed in favour of the new dialog. Fixes #8138
2022-05-22Replace all uses of core::list with std::list (#12313)paradust7
2021-09-26Touch UI support for desktop builds (#10729)TheBrokenRail
2021-03-19Drop old text input workarounds (#11089)sfan5
* Drop unused intlGUIEditBox * Drop unnecessary Linux text input workarounds
2021-02-02Drop wide/narrow conversion functionssfan5
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.
2020-07-21Android: Fix ConfirmRegistration and PasswordChange input and scale size ↵Maksim
(#10182)
2020-07-14Formspecs: volume and key settings windows can now be closed by ↵Zughy
doubleclicking/tapping (#10128) Co-authored-by: Xx_Crazyminer_xX <carlo.digioia@hotmail.it> Co-authored-by: Marco <4279489-marco_a@users.noreply.gitlab.com>
2020-04-11Formspecs: Add state-selection to style elements (#9378)Hugues Ross
2019-12-09guiConfirmRegistration: Fix hidden error messageSmallJoker
2019-10-12Add more visual feedback for button states (#8916)Hugues Ross
- 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)
2019-08-07guiConfirmRegistration: Set focus to text field (#8761)ANAND
2019-03-12Drop GUIConfirmRegistration::m_address unused fieldLoïc Blot
2019-03-10Confirm registration GUI: Remove positional strings to fix Windows bug (#8258)Paramat
Positional strings don't work on some Windows builds. Remove server address string, leave player name string present.
2018-11-28Move client-specific files to 'src/client' (#7902)Quentin Bazin
Update Android.mk Remove 'src/client' from include_directories
2018-11-26Make non-formspec modal menus respect gui scale (#7850)stujones11
2018-10-29Move touchscreen input handling to base GUIModalMenu classstujones11
2018-07-22Add a MSVC / Windows compatible snprintf function (#7353)nOOb3167
Use sizeof where applicable for mt_snprintf
2018-07-06Fix memory leak in guiConfirmRegistrationHybridDog
2018-05-10Fix crash guiConfirmRegistration quit menu (#7313)Vincent Glize
2018-03-16Server: delegate mod management & config to ServerModConfiguration (#7131)Loïc Blot
* 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
2018-03-11Fix Android build, but there is a remaining linking issue in ↵Loic Blot
guiConfirmRegistration * Also fix variable name overloading in guiConfirmRegistration
2018-02-23Registration dialog: Larger text field with scrollbars (#7047)SmallJoker
Center text, text area doubled now
2018-01-13Registration confirmation dialog: Fix grammarMuhammad Rifqi Priyo Susanto
Fixes commit 792752997c5ae2aaa4f54d0a2e2af2a96d7d1e9f.
2018-01-13Add confirmation on new player registration (#6849)Muhammad Rifqi Priyo Susanto
* 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()