Skip to content

Commit

Permalink
custom server UX enhancement
Browse files Browse the repository at this point in the history
  • Loading branch information
VitorVieiraZ committed May 27, 2024
1 parent dd6047b commit 3b95c42
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
6 changes: 6 additions & 0 deletions app/qml/account/MMAccountController.qml
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,12 @@ Item {
}

onChangeServerClicked: function ( newServer ) {
// Ensure the newServer string ends with a '/'
// to format it as "https://my-server-app.com/"
if ( newServer && newServer.slice( -1 ) !== '/' ) {
newServer += '/';
}

__merginApi.apiRoot = newServer
}

Expand Down
1 change: 1 addition & 0 deletions app/qml/account/MMLoginPage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,7 @@ MMPage {
textFieldBackground.color: __style.lightGreenColor

text: root.apiRoot
placeholderText: qsTr( "https://my-server-app.com/" )
textField.inputMethodHints: Qt.ImhNoPredictiveText | Qt.ImhNoAutoUppercase | Qt.ImhUrlCharactersOnly
}

Expand Down

1 comment on commit 3b95c42

@inputapp-bot
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

iOS - version 24.5.625411 just submitted!

Please sign in to comment.