Skip to content

Commit 1ec2dbf

Browse files
graycreateclaude
andcommitted
fix: address PR review comments
- Replace hard-coded Chinese string with R.string.acc_back in BaseToolBar.java - Remove reference to non-existent GitHub build variant in SIGNING.md - Add missing semicolon in v2er.css Fixes review comments from Copilot PR review. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 44874cc commit 1ec2dbf

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

SIGNING.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,5 +52,4 @@ If you need to test release builds locally:
5252
- Never commit keystore files to the repository
5353
- Always clean up temporary keystore files after use
5454
- The `.gitignore` file excludes all `.jks` and `.keystore` files
55-
- For production releases, always use the GitHub Actions release pipeline
56-
- The GitHub build variant now uses debug signing for simplicity
55+
- For production releases, always use the GitHub Actions release pipeline

app/src/main/assets/html/v2er.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ img {
2929

3030
.dark .topic_content{
3131
background:#111214;
32-
color: rgba(255,255,255, 0.9)
32+
color: rgba(255,255,255, 0.9);
3333
}
3434

3535
div.subtle {

app/src/main/java/me/ghui/v2er/widget/BaseToolBar.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ private void init() {
3737
setContentInsetEndWithActions(0);
3838
setNavigationIcon(R.drawable.ic_arrow_back_black);
3939
getNavigationIcon().setTint(Theme.getColor(R.attr.icon_tint_color, getContext()));
40-
setNavigationContentDescription("返回");
40+
setNavigationContentDescription(R.string.acc_back);
4141
}
4242

4343
@Override

0 commit comments

Comments
 (0)