-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #956 from hyperskill/release/1.53
Release 1.53
- Loading branch information
Showing
193 changed files
with
2,149 additions
and
881 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
androidHyperskillApp/fastlane/metadata/android/en-US/full_description.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
Unleash your potential on-the-go with MyHyperskill. Boost your coding and transform your journey into real-world expertise. With over 50 tracks and 300+ projects, we provide a comprehensive learning experience. Tackle today's challenges with our «Problem of the Day» and set your pace with adjustable daily reminders. From Python to Scala, we cover all modern programming languages and frameworks, ensuring you're primed for the evolving tech landscape. Hyperskill is your stepping stone to the tech world! | ||
Unleash your potential on-the-go with Hyperskill. Boost your coding and transform your journey into real-world expertise. With over 50 tracks and 300+ projects, we provide a comprehensive learning experience. Tackle today's challenges with our «Problem of the Day» and set your pace with adjustable daily reminders. From Python to Scala, we cover all modern programming languages and frameworks, ensuring you're primed for the evolving tech landscape. Hyperskill is your stepping stone to the tech world! |
2 changes: 1 addition & 1 deletion
2
androidHyperskillApp/fastlane/metadata/android/en-US/short_description.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
Master coding on-the-go with MyHyperskill! Immerse yourself in curated lessons, keep your streak and sharpen your knowledge with 3000+ hands-on topics. | ||
Master coding on-the-go with Hyperskill! Immerse yourself in curated lessons, keep your streak and sharpen your knowledge with 3000+ hands-on topics. |
9 changes: 9 additions & 0 deletions
9
...erskillApp/src/main/java/org/hyperskill/app/android/core/extensions/EditTextExtensions.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,19 @@ | ||
package org.hyperskill.app.android.core.extensions | ||
|
||
import android.content.Context | ||
import android.view.inputmethod.InputMethodManager | ||
import android.widget.EditText | ||
import kotlin.math.max | ||
|
||
fun EditText.insertText(text: String, offset: Int) { | ||
val start = max(this.selectionStart - offset, 0) | ||
val end = max(this.selectionEnd, 0) | ||
this.text.replace(start, end, text, 0, text.length) | ||
} | ||
|
||
fun EditText.requestFocus(context: Context) { | ||
requestFocus() | ||
val inputMethodManager = | ||
context.getSystemService(Context.INPUT_METHOD_SERVICE) as InputMethodManager | ||
inputMethodManager.showSoftInput(this, InputMethodManager.SHOW_IMPLICIT) | ||
} |
16 changes: 0 additions & 16 deletions
16
...lApp/src/main/java/org/hyperskill/app/android/core/extensions/SingleTapGestureDetector.kt
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../src/main/java/org/hyperskill/app/android/step_quiz/view/delegate/StepQuizFormDelegate.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.