Skip to content

Commit

Permalink
bump 1.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
Its-Just-Nans committed Jan 29, 2025
1 parent 49bef67 commit b417047
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 24 deletions.
1 change: 1 addition & 0 deletions fastlane/metadata/android/en-US/changelogs/10.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Change colors for night theme
1 change: 1 addition & 0 deletions fastlane/metadata/android/en-US/changelogs/9.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Change contrast colors
4 changes: 2 additions & 2 deletions sms2call/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ android {
applicationId "dev.n4n5.sms2call"
minSdk 24
targetSdk 34
versionCode 9
versionName "1.0.9"
versionCode 10
versionName "1.0.10"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
2 changes: 1 addition & 1 deletion sms2call/app/src/main/res/layout/activity_main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_margin="4dp"
android:text="Add"
android:text="@string/add"
android:textAllCaps="false"
app:layout_constraintBottom_toTopOf="@+id/idLVLanguages"
app:layout_constraintEnd_toEndOf="parent"
Expand Down
13 changes: 3 additions & 10 deletions sms2call/app/src/main/res/values-night/themes.xml
Original file line number Diff line number Diff line change
@@ -1,16 +1,9 @@
<resources xmlns:tools="http://schemas.android.com/tools">
<!-- Base application theme. -->
<style name="Theme.Sms2Call" parent="Theme.MaterialComponents.DayNight.DarkActionBar">
<!-- Primary brand color. -->
<item name="colorPrimary">@color/dark_orange</item>
<item name="colorPrimaryVariant">@color/orange</item>
<item name="colorOnPrimary">@color/black</item>
<!-- Secondary brand color. -->
<item name="colorSecondary">@color/tomato</item>
<item name="colorSecondaryVariant">@color/orange_red</item>
<item name="colorOnSecondary">@color/black</item>
<!-- Status bar color. -->
<item name="colorPrimary">@color/light_orange</item>
<item name="colorPrimaryVariant">@color/light_dark_orange</item>
<item name="colorOnPrimary">@color/white</item>
<item name="android:statusBarColor">?attr/colorPrimaryVariant</item>
<!-- Customize your theme here. -->
</style>
</resources>
6 changes: 4 additions & 2 deletions sms2call/app/src/main/res/values/colors.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@
<resources>
<color name="tomato">#C31F01</color>
<color name="orange_red">#B13000</color>
<color name="dark_orange">#935100</color>
<color name="orange">#ad5801</color>
<color name="dark_orange">#BD6315</color>
<color name="orange">#B6611D</color>
<color name="light_orange">#FF8300</color>
<color name="light_dark_orange">#A86000</color>
<color name="black">#FF000000</color>
<color name="white">#FFFFFFFF</color>
</resources>
1 change: 1 addition & 0 deletions sms2call/app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<string name="edit_placeholder">Edit %1$d</string>
<string name="button_delete">Delete</string>
<string name="delete_placeholder">Delete %1$d</string>
<string name="add">Add</string>
<string name="sms">Sms</string>
<string name="phone">Phone</string>
<string name="hint_sms">Add sms</string>
Expand Down
11 changes: 2 additions & 9 deletions sms2call/app/src/main/res/values/themes.xml
Original file line number Diff line number Diff line change
@@ -1,25 +1,18 @@
<resources xmlns:tools="http://schemas.android.com/tools">
<!-- Base application theme. -->
<style name="Theme.Sms2Call" parent="Theme.MaterialComponents.DayNight.DarkActionBar">
<!-- Primary brand color. -->
<item name="colorPrimary">@color/dark_orange</item>
<item name="colorPrimaryVariant">@color/orange</item>
<item name="colorOnPrimary">@color/white</item>
<!-- Secondary brand color. -->
<item name="colorSecondary">@color/tomato</item>
<item name="colorSecondaryVariant">@color/orange_red</item>
<item name="colorOnSecondary">@color/black</item>
<!-- Status bar color. -->
<item name="android:statusBarColor">?attr/colorPrimaryVariant</item>
<!-- Customize your theme here. -->
</style>

<style name="Theme.Sms2Call.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>

<style name="Theme.Sms2Call.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />
<style name="Theme.Sms2Call.AppBarOverlay" parent="ThemeOverlay.AppCompat.DayNight.ActionBar" />

<style name="Theme.Sms2Call.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />
<style name="Theme.Sms2Call.PopupOverlay" parent="ThemeOverlay.AppCompat.DayNight" />
</resources>
1 change: 1 addition & 0 deletions sms2call/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionSha256Sum=31c55713e40233a8303827ceb42ca48a47267a0ad4bab9177123121e71524c26

0 comments on commit b417047

Please sign in to comment.