mirror of
https://github.com/yairm210/Unciv.git
synced 2025-09-27 13:55:54 -04:00
Fixes warnings in desktop-file-validate
(#5822)
Trying to validate this desktop entry with `desktop-file-validate` (default tool for desktop entry validation) shows the following warnings. ```bash ~$ desktop-file-validate unciv.desktop unciv.desktop: warning: key "Encoding" in group "Desktop Entry" is deprecated unciv.desktop: warning: boolean key "Terminal" in group "Desktop Entry" has value "0", which is deprecated: boolean values should be "false" or "true" ``` Thus deprecated lines were removed or edited.
This commit is contained in:
parent
b30576d115
commit
237016d3d6
@ -1,5 +1,4 @@
|
|||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Encoding=UTF-8
|
|
||||||
Comment=Open-source Android/Desktop remake of Civ V
|
Comment=Open-source Android/Desktop remake of Civ V
|
||||||
Exec=Unciv
|
Exec=Unciv
|
||||||
GenericName=4X Game
|
GenericName=4X Game
|
||||||
@ -7,6 +6,6 @@ Icon=unciv
|
|||||||
Name=Unciv
|
Name=Unciv
|
||||||
NoDisplay=false
|
NoDisplay=false
|
||||||
StartupNotify=true
|
StartupNotify=true
|
||||||
Terminal=0
|
Terminal=false
|
||||||
Type=Application
|
Type=Application
|
||||||
Categories=Game
|
Categories=Game
|
||||||
|
Loading…
x
Reference in New Issue
Block a user