Skip to content

Commit

Permalink
style: Adjustment app icon
Browse files Browse the repository at this point in the history
style: Adjustment home important note
  • Loading branch information
azrael8576 committed Dec 3, 2023
1 parent 6cd6685 commit 0c3256c
Show file tree
Hide file tree
Showing 20 changed files with 698 additions and 1,602 deletions.
Binary file modified app/src/main/ic_launcher-playstore.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2,255 changes: 673 additions & 1,582 deletions app/src/main/res/drawable/ic_splash.xml

Large diffs are not rendered by default.

Binary file modified app/src/main/res/mipmap-hdpi/ic_launcher.webp
Binary file not shown.
Binary file modified app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp
Binary file not shown.
Binary file modified app/src/main/res/mipmap-hdpi/ic_launcher_round.webp
Binary file not shown.
Binary file modified app/src/main/res/mipmap-mdpi/ic_launcher.webp
Binary file not shown.
Binary file modified app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp
Binary file not shown.
Binary file modified app/src/main/res/mipmap-mdpi/ic_launcher_round.webp
Binary file not shown.
Binary file modified app/src/main/res/mipmap-xhdpi/ic_launcher.webp
Binary file not shown.
Binary file modified app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp
Binary file not shown.
Binary file modified app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp
Binary file not shown.
Binary file modified app/src/main/res/mipmap-xxhdpi/ic_launcher.webp
Binary file not shown.
Binary file modified app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp
Binary file not shown.
Binary file modified app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp
Binary file not shown.
Binary file modified app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp
Binary file not shown.
Binary file modified app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp
Binary file not shown.
Binary file modified app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -91,13 +91,21 @@ internal fun HomeScreen(
}
LazyColumn {
item {
val importantNotes = stringResource(id = R.string.important_notes)
val importantNote = stringResource(id = R.string.important_note)
val importantNoteMessage = stringResource(id = R.string.important_note_message)
Text(
text = importantNotes,
text = importantNote,
style = MaterialTheme.typography.titleLarge,
modifier = Modifier
.padding(SPACING_MEDIUM.dp)
.semantics { contentDescription = importantNote },
)
Text(
text = importantNoteMessage,
style = MaterialTheme.typography.bodyLarge,
modifier = Modifier
.padding(SPACING_MEDIUM.dp)
.semantics { contentDescription = importantNotes },
.semantics { contentDescription = importantNoteMessage },
)
}
}
Expand Down
15 changes: 7 additions & 8 deletions feature/home/src/main/res/values-zh-rTW/strings.xml
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="important_notes">
❗重要提示:\n\n
- 這個 App 使用 Pixabay API 作為圖片來源。\n\n
- 對於開發人員:請將 `${專案根目錄}/secrets.defaults.properties` 中的 API_KEY 替換為你的 Pixabay API 金鑰。\n\n
- 對於非開發人員:確保你的 App Apk 來源為 github.com/azrael8576/picquest 此專案 Releases 之 apk。\n\n
⚠️已知問題:\n\n
- 目前本專案尚未使用本地儲存方案。\n\n
- 最近搜尋關鍵字為 Screen 屏幕級別儲存,這意味著當你回退至頂部頁會清除已儲存的搜尋關鍵字。
<string name="important_note">
❗重要提示:
</string>
<string name="important_note_message">
• PicQuest 使用 Pixabay API 作為圖片來源。\n\n
• 對於開發人員:請將 `${專案根目錄}/secrets.defaults.properties` 中的 API_KEY 替換為你的 Pixabay API 金鑰。\n\n
• 對於非開發人員:確保你的 PicQuest Apk 來源為 github.com/azrael8576/picquest 此專案 Releases 之 apk。\n\n
</string>
</resources>
16 changes: 7 additions & 9 deletions feature/home/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="important_notes">
❗Important Notes:\n
- This App uses Pixabay API as its image source.\n
- For developers:\nPlease replace the API_KEY in `${Project_Root_Directory}/secrets.defaults.properties` with your Pixabay API key.\n
- For non-developers:\nEnsure that your App Apk is sourced from github.com/azrael8576/picquest, specifically from the apk in the project\'s Releases.\n
\n
⚠️Known Issues:\n
- Currently, this project does not use any local storage solution.\n
- The recent search keywords is stored at the Screen level, meaning that the keywords will be cleared when you navigate back to the top page.
<string name="important_note">
❗Important Notes:
</string>
<string name="important_note_message">
• PicQuest uses Pixabay API as its image source.\n\n
• For developers: Please replace the API_KEY in `${Project_Root_Directory}/secrets.defaults.properties` with your Pixabay API key.\n\n
• For non-developers: Ensure that your PicQuest Apk is sourced from github.com/azrael8576/picquest, specifically from the apk in the project\'s Releases.\n\n
</string>
</resources>

0 comments on commit 0c3256c

Please sign in to comment.