feat: add network update for certificate revocation list#53
Open
Ylarod wants to merge 2 commits intovvb2060:masterfrom
Open
feat: add network update for certificate revocation list#53Ylarod wants to merge 2 commits intovvb2060:masterfrom
Ylarod wants to merge 2 commits intovvb2060:masterfrom
Conversation
- 添加网络权限以支持从 googleapis.com 下载吊销列表 - 实现 RevocationList.updateFromNetwork() 方法用于下载和缓存吊销列表 - 支持自动读取系统配置的自定义吊销列表URL - 新增吊销列表信息查询功能,显示发布时间和最后更新时间 - 在主菜单中添加"更新吊销列表"和"吊销列表信息"选项 - 添加多语言支持(简体中文、繁体中文、葡萄牙语) - 添加 CLAUDE.md 项目文档,为 Claude Code 提供代码库上下文 - 更新 .gitignore 忽略 .kotlin 目录 实现细节: - 下载的吊销列表保存到应用私有目录以持久化 - 优先使用缓存的吊销列表,内置列表作为后备 - 使用 SharedPreferences 记录更新时间和发布时间 - 网络请求在后台线程执行,避免阻塞UI 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
Use HTTP Last-Modified response header to get the actual server-side modification time of the revocation list, instead of using the local download time. This provides more accurate information about when the revocation list was actually published. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
实现细节:
🤖 Generated with Claude Code