Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix some problems #242

Merged
merged 6 commits into from
Dec 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ A tiny judging environment for OI contest based on Lemon + LemonPlus

同时支持 Qt5 和 Qt6, 使用 `-DLEMON_QT6=ON` 以使用 Qt6 编译。

现已支持 Linux,Windows以及 macOS
现已支持 Linux,Windows 以及 macOS

[![Linux Static](https://github.com/Project-LemonLime/Project_LemonLime/actions/workflows/linux-static.yml/badge.svg)](https://github.com/Project-LemonLime/Project_LemonLime/actions/workflows/linux-static.yml)

Expand Down Expand Up @@ -45,6 +45,7 @@ A tiny judging environment for OI contest based on Lemon + LemonPlus
| Fedora | 31-1.9 | amd64 | XFCE |
| openSUSE | Leap 15.1 | amd64 | iceWM |
| openSUSE | Tumbleweed | amd64 | KDE-Xorg |
| macOS | 15.2 Beta | arm64 | Aqua |

如果您在您的系统上做了测试,请前往
[#49](https://github.com/Project-LemonLime/Project_LemonLime/issues/49)
Expand Down
2 changes: 1 addition & 1 deletion assets/lemon-lime.desktop.in
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Keywords=OI;Qt;Judge;
Keywords[zh_CN]=OI;Qt;评测;
Keywords[zh_TW]=OI;Qt;評測;
Keywords[ja]=OI;Qt;評価;
Categories=Utility;Education;
Categories=Utility;Education;Competition;
Terminal=false
Path=/usr/bin
Exec=lemon
Expand Down
7 changes: 4 additions & 3 deletions assets/lemon-lime.metainfo.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@
<url type="homepage">https://github.com/Project-LemonLime/Project_LemonLime</url>
<url type="bugtracker">https://github.com/Project-LemonLime/Project_LemonLime/issues</url>
<categories>
<category>Development</category>
<category>Education</category>
<category>Development</category>
<category>Education</category>
<category>Competition</category>
</categories>
<screenshots>
<screenshot type="default">
Expand All @@ -25,6 +26,6 @@
<binary>lemon</binary>
</provides>
<releases>
<release version="0.2.6" date="2020-10-31"/>
<release version="0.3.5" date="2024-7-15"/>
</releases>
</component>
2 changes: 1 addition & 1 deletion cmake/platforms/macos.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ set_target_properties(lemon
MACOSX_BUNDLE TRUE
MACOSX_BUNDLE_INFO_PLIST "${CMAKE_SOURCE_DIR}/assets/MacOSXInfo.plist.in"
MACOSX_BUNDLE_BUNDLE_NAME "LemonLime"
MACOSX_BUNDLE_COPYRIGHT "Copyright (c) 2019-2020 Project LemonLime"
MACOSX_BUNDLE_COPYRIGHT "Copyright (c) 2019-2024 Project LemonLime"
MACOSX_BUNDLE_BUNDLE_VERSION ${VERSION_STRING}
MACOSX_BUNDLE_LONG_VERSION_STRING ${VERSION_STRING}
MACOSX_BUNDLE_SHORT_VERSION_STRING ${VERSION_STRING}
Expand Down
Loading