fix: add missing semicolon to Categories in desktop entry#203
Conversation
Categories field in desktop entry requires a trailing semicolon per the FreeDesktop specification. 修复desktop文件中Categories字段末尾缺少分号的问题。 Log: 修复desktop文件Categories缺少分号 PMS: https://pms.uniontech.com/bug-view-366913.html Influence: 修复后desktop-file-validate不再报错,应用分类显示正确。
Reviewer's guide (collapsed on small PRs)Reviewer's GuideEnsures the desktop entry's Categories field conforms to the FreeDesktop specification by adding a required trailing semicolon, fixing validation errors and category display issues. File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
deepin pr auto review★ 总体评分:100分■ 【总体评价】
■ 【详细分析】
■ 【改进建议代码示例】 diff --git a/deepin-font-manager-assets/deepin-font-manager.desktop b/deepin-font-manager-assets/deepin-font-manager.desktop
index f05f7c81..0b6fba25 100644
--- a/deepin-font-manager-assets/deepin-font-manager.desktop
+++ b/deepin-font-manager-assets/deepin-font-manager.desktop
@@ -1,5 +1,5 @@
[Desktop Entry]
-Categories=Utility
+Categories=Utility;
Exec=deepin-font-manager %F
GenericName=Font Manager
Icon=deepin-font-manager |
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: add-uos, lzwind The full list of commands accepted by this bot can be found here. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
|
/merge |
Categories field in desktop entry requires a trailing semicolon per the FreeDesktop specification.
修复desktop文件中Categories字段末尾缺少分号的问题。
Log: 修复desktop文件Categories缺少分号
PMS: https://pms.uniontech.com/bug-view-366913.html
Influence: 修复后desktop-file-validate不再报错,应用分类显示正确。
Summary by Sourcery
Bug Fixes: