Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Staging #415

Merged
merged 27 commits into from
Apr 15, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
73af5fd
Group recent calls
vbh Apr 9, 2022
ba43715
Fixed PRs code
roeiedri Apr 6, 2022
86912a3
Fix numbers custom label showing as 'custom', Fixes #397
roeiedri Apr 6, 2022
0c1c524
fix: settings text color not visible in dark theme mode
vbh Apr 8, 2022
84f3e68
Changed recent type image to be the contact's image, and moved the ty…
roeiedri Apr 8, 2022
05608b2
Removed numbers background from dialpad
roeiedri Apr 8, 2022
88ae99d
Fixed search bar icon position
roeiedri Apr 8, 2022
129c40e
Fixed dialpad reverse on rtl, fixes #392
roeiedri Apr 8, 2022
06813c9
update Persian translation
mojienjoyment Mar 30, 2022
1318483
Update Persian translation
mojienjoyment Mar 30, 2022
6790b8c
Increased app version
roeiedri Apr 8, 2022
336d470
removed unnecesarry window flags and implemented a working one
Esarve Apr 13, 2022
4379aaf
Merge branch 'staging' of github.com:Chooloo/koler into staging
roeiedri Apr 13, 2022
bde05cc
Merge pull request #411 from Esarve/fix/fixed_light_mode_statusbar_co…
roeiedri Apr 13, 2022
078642a
Merge branch 'staging' of github.com:Chooloo/koler into staging
roeiedri Apr 13, 2022
4d343ea
Fixed and improved status bar color pr
roeiedri Apr 13, 2022
680bd07
Merge pull request #409 from vbh/group-recents
roeiedri Apr 13, 2022
880ba76
ptbr update
Apr 14, 2022
410e7f5
few fixes
Apr 14, 2022
9355c03
Merge pull request #412 from inkh0rn/master
roeiedri Apr 15, 2022
a25c251
Added group recents preference and improved groups ux
roeiedri Apr 15, 2022
0338693
Fixed some recents image renders as a black image
roeiedri Apr 15, 2022
8c9421f
Merge pull request #413 from Chooloo/feature/groups
roeiedri Apr 15, 2022
afea99e
Merge pull request #414 from Chooloo/fix/blackimages
roeiedri Apr 15, 2022
2777904
Fixed call type icon position
roeiedri Apr 15, 2022
6aaf68d
Fixed permissions related crashes, fixes #408
roeiedri Apr 15, 2022
c3ff2f0
Increased app version
roeiedri Apr 15, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Removed numbers background from dialpad
  • Loading branch information
roeiedri committed Apr 10, 2022
commit 05608b23e7b5c758f307bd92dfc2948a1eabd35d
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ class DialpadEditText : AppCompatEditText {
textAlignment = TEXT_ALIGNMENT_CENTER
inputType = InputType.TYPE_CLASS_PHONE
background = ContextCompat.getDrawable(context, R.drawable.round_outline)
backgroundTintList = ColorStateList.valueOf(context.getAttrColor(R.attr.colorSurface))
filters = arrayOf(InputFilter { source, _, _, _, _, _ ->
source.filter { char -> char.isDigit() || char in arrayOf('*', '#', '+') }
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ class DialpadKey : LinearLayout {
_lettersTextView = TextView(context, attrs, defStyleRes).apply {
layoutParams = LayoutParams(WRAP_CONTENT, WRAP_CONTENT)

setPadding(0, context.getSizeInDp(5), 0, 0)
setTextAppearance(R.style.Chooloo_Text_Caption)
setPadding(0, context.getSizeInDp(2), 0, 0)
typeface = ResourcesCompat.getFont(context, R.font.google_sans_medium)
}.also {
addView(it)
Expand Down
2 changes: 1 addition & 1 deletion chooloolib/src/main/res/layout/dialpad.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/default_spacing_big"
android:layout_marginEnd="@dimen/default_spacing_big"
android:layout_marginBottom="@dimen/default_spacing_big"
android:layout_marginBottom="@dimen/default_spacing_small"
android:minWidth="200dp"
app:layout_constraintBottom_toTopOf="@id/dialpad_keys_layout"
app:layout_constraintEnd_toEndOf="parent"
Expand Down