sync source to v0.3.8 (matches released EasyAppliance-v0.3.8.apk, verCode 11): add stand aircon image

This commit is contained in:
EJClaw Owner
2026-08-06 16:35:23 +09:00
parent a678a593df
commit ffe8f93b0a
3 changed files with 21 additions and 3 deletions

View File

@@ -24,8 +24,8 @@ android {
applicationId = "kr.tkrmagid.easyappliance"
minSdk = 24
targetSdk = 35
versionCode = (project.findProperty("verCode") as String?)?.toInt() ?: 10
versionName = (project.findProperty("verName") as String?) ?: "0.3.7"
versionCode = (project.findProperty("verCode") as String?)?.toInt() ?: 11
versionName = (project.findProperty("verName") as String?) ?: "0.3.8"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}

View File

@@ -15,7 +15,8 @@ object DeviceImages {
val builtins: List<Builtin> = listOf(
Builtin("washer", "세탁기", R.drawable.img_washer),
Builtin("aircon", "에어컨", R.drawable.img_aircon),
Builtin("aircon", "벽걸이 에어컨", R.drawable.img_aircon),
Builtin("aircon_stand", "스탠드 에어컨", R.drawable.img_aircon_stand),
Builtin("fridge", "냉장고", R.drawable.img_fridge),
Builtin("tv", "TV", R.drawable.img_tv),
Builtin("device", "기타 기기", R.drawable.img_device),

View File

@@ -0,0 +1,17 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="96dp" android:height="96dp"
android:viewportWidth="48" android:viewportHeight="48">
<!-- tall standing body -->
<path android:fillColor="#1565C0"
android:pathData="M18,5 h12 a3,3 0 0 1 3,3 v32 a3,3 0 0 1 -3,3 h-12 a3,3 0 0 1 -3,-3 v-32 a3,3 0 0 1 3,-3 z" />
<!-- top intake vent -->
<path android:fillColor="#90CAF9" android:pathData="M19.5,9 h9 v3 h-9 z" />
<!-- display strip -->
<path android:fillColor="#FFFFFF" android:pathData="M21,15 h6 v2 h-6 z" />
<!-- lower air outlet -->
<path android:fillColor="#FFFFFF" android:pathData="M18.5,34 h11 v2.4 h-11 z" />
<!-- airflow curls under the outlet -->
<path android:fillColor="#00000000"
android:strokeColor="#42A5F5" android:strokeWidth="1.3"
android:pathData="M20,39 q1.5,2.5 3,0 M25,39 q1.5,2.5 3,0" />
</vector>