Skip to content

Commit b417047

Browse files
committed
bump 1.0.10
1 parent 49bef67 commit b417047

File tree

9 files changed

+16
-24
lines changed

9 files changed

+16
-24
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Change colors for night theme
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Change contrast colors

sms2call/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ android {
1212
applicationId "dev.n4n5.sms2call"
1313
minSdk 24
1414
targetSdk 34
15-
versionCode 9
16-
versionName "1.0.9"
15+
versionCode 10
16+
versionName "1.0.10"
1717

1818
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1919
}

sms2call/app/src/main/res/layout/activity_main.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
android:layout_height="wrap_content"
3434
android:layout_alignParentEnd="true"
3535
android:layout_margin="4dp"
36-
android:text="Add"
36+
android:text="@string/add"
3737
android:textAllCaps="false"
3838
app:layout_constraintBottom_toTopOf="@+id/idLVLanguages"
3939
app:layout_constraintEnd_toEndOf="parent"
Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,9 @@
11
<resources xmlns:tools="http://schemas.android.com/tools">
22
<!-- Base application theme. -->
33
<style name="Theme.Sms2Call" parent="Theme.MaterialComponents.DayNight.DarkActionBar">
4-
<!-- Primary brand color. -->
5-
<item name="colorPrimary">@color/dark_orange</item>
6-
<item name="colorPrimaryVariant">@color/orange</item>
7-
<item name="colorOnPrimary">@color/black</item>
8-
<!-- Secondary brand color. -->
9-
<item name="colorSecondary">@color/tomato</item>
10-
<item name="colorSecondaryVariant">@color/orange_red</item>
11-
<item name="colorOnSecondary">@color/black</item>
12-
<!-- Status bar color. -->
4+
<item name="colorPrimary">@color/light_orange</item>
5+
<item name="colorPrimaryVariant">@color/light_dark_orange</item>
6+
<item name="colorOnPrimary">@color/white</item>
137
<item name="android:statusBarColor">?attr/colorPrimaryVariant</item>
14-
<!-- Customize your theme here. -->
158
</style>
169
</resources>

sms2call/app/src/main/res/values/colors.xml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@
22
<resources>
33
<color name="tomato">#C31F01</color>
44
<color name="orange_red">#B13000</color>
5-
<color name="dark_orange">#935100</color>
6-
<color name="orange">#ad5801</color>
5+
<color name="dark_orange">#BD6315</color>
6+
<color name="orange">#B6611D</color>
7+
<color name="light_orange">#FF8300</color>
8+
<color name="light_dark_orange">#A86000</color>
79
<color name="black">#FF000000</color>
810
<color name="white">#FFFFFFFF</color>
911
</resources>

sms2call/app/src/main/res/values/strings.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
<string name="edit_placeholder">Edit %1$d</string>
1010
<string name="button_delete">Delete</string>
1111
<string name="delete_placeholder">Delete %1$d</string>
12+
<string name="add">Add</string>
1213
<string name="sms">Sms</string>
1314
<string name="phone">Phone</string>
1415
<string name="hint_sms">Add sms</string>
Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,18 @@
11
<resources xmlns:tools="http://schemas.android.com/tools">
22
<!-- Base application theme. -->
33
<style name="Theme.Sms2Call" parent="Theme.MaterialComponents.DayNight.DarkActionBar">
4-
<!-- Primary brand color. -->
54
<item name="colorPrimary">@color/dark_orange</item>
65
<item name="colorPrimaryVariant">@color/orange</item>
76
<item name="colorOnPrimary">@color/white</item>
8-
<!-- Secondary brand color. -->
9-
<item name="colorSecondary">@color/tomato</item>
10-
<item name="colorSecondaryVariant">@color/orange_red</item>
11-
<item name="colorOnSecondary">@color/black</item>
12-
<!-- Status bar color. -->
137
<item name="android:statusBarColor">?attr/colorPrimaryVariant</item>
14-
<!-- Customize your theme here. -->
158
</style>
169

1710
<style name="Theme.Sms2Call.NoActionBar">
1811
<item name="windowActionBar">false</item>
1912
<item name="windowNoTitle">true</item>
2013
</style>
2114

22-
<style name="Theme.Sms2Call.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />
15+
<style name="Theme.Sms2Call.AppBarOverlay" parent="ThemeOverlay.AppCompat.DayNight.ActionBar" />
2316

24-
<style name="Theme.Sms2Call.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />
17+
<style name="Theme.Sms2Call.PopupOverlay" parent="ThemeOverlay.AppCompat.DayNight" />
2518
</resources>

sms2call/gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME
77
zipStorePath=wrapper/dists
8+
distributionSha256Sum=31c55713e40233a8303827ceb42ca48a47267a0ad4bab9177123121e71524c26

0 commit comments

Comments
 (0)