mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-23 20:14:05 +00:00
fix typo of app id
This commit is contained in:
parent
ca92abbe9c
commit
f9b1d3fa92
2
.github/workflows/ubuntu-6.2.yml
vendored
2
.github/workflows/ubuntu-6.2.yml
vendored
|
@ -109,7 +109,7 @@ jobs:
|
|||
chmod a+x linuxdeploy-plugin-qt-x86_64.AppImage
|
||||
wget -c -nv "https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/linuxdeploy-x86_64.AppImage"
|
||||
chmod a+x linuxdeploy-x86_64.AppImage
|
||||
./linuxdeploy-x86_64.AppImage --appdir appdir --output appimage --plugin qt -i redist/icons/goldendict.png -d redist/io.github.xiayifang.goldendict_ng.desktop
|
||||
./linuxdeploy-x86_64.AppImage --appdir appdir --output appimage --plugin qt -i redist/icons/goldendict.png -d redist/io.github.xiaoyifang.goldendict_ng.desktop
|
||||
|
||||
- name: changelog
|
||||
id: changelog
|
||||
|
|
2
.github/workflows/ubuntu.yml
vendored
2
.github/workflows/ubuntu.yml
vendored
|
@ -93,7 +93,7 @@ jobs:
|
|||
chmod a+x linuxdeploy-plugin-qt-x86_64.AppImage
|
||||
wget -c -nv "https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/linuxdeploy-x86_64.AppImage"
|
||||
chmod a+x linuxdeploy-x86_64.AppImage
|
||||
./linuxdeploy-x86_64.AppImage --appdir appdir --output appimage --plugin qt -i redist/icons/goldendict.png -d redist/io.github.xiayifang.goldendict_ng.desktop
|
||||
./linuxdeploy-x86_64.AppImage --appdir appdir --output appimage --plugin qt -i redist/icons/goldendict.png -d redist/io.github.xiaoyifang.goldendict_ng.desktop
|
||||
|
||||
- name: changelog
|
||||
id: changelog
|
||||
|
|
|
@ -191,8 +191,8 @@ if (APPLE)
|
|||
endif ()
|
||||
|
||||
if (LINUX OR BSD)
|
||||
install(FILES ${CMAKE_SOURCE_DIR}/redist/io.github.xiayifang.goldendict_ng.desktop DESTINATION share/applications)
|
||||
install(FILES ${CMAKE_SOURCE_DIR}/redist/io.github.xiayifang.goldendict_ng.metainfo.xml DESTINATION share/metainfo)
|
||||
install(FILES ${CMAKE_SOURCE_DIR}/redist/io.github.xiaoyifang.goldendict_ng.desktop DESTINATION share/applications)
|
||||
install(FILES ${CMAKE_SOURCE_DIR}/redist/io.github.xiaoyifang.goldendict_ng.metainfo.xml DESTINATION share/metainfo)
|
||||
|
||||
install(FILES ${CMAKE_SOURCE_DIR}/redist/icons/goldendict.png DESTINATION share/pixmaps)
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- Copyright 2019 Vitaly Zaitsev <vitaly@easycoding.org> -->
|
||||
<component type="desktop">
|
||||
<id>io.github.xiayifang.goldendict_ng</id>
|
||||
<id>io.github.xiaoyifang.goldendict_ng</id>
|
||||
<metadata_license>CC0-1.0</metadata_license>
|
||||
<project_license>GPL-3.0-or-later</project_license>
|
||||
<name>GoldenDict-ng</name>
|
||||
|
@ -36,7 +36,7 @@
|
|||
<url type="contact">https://github.com/xiaoyifang/goldendict-ng/discussions</url>
|
||||
<url type="vcs-browser">https://github.com/xiaoyifang/goldendict-ng</url>
|
||||
<update_contact>https://github.com/xiaoyifang/goldendict-ng</update_contact>
|
||||
<launchable type="desktop-id">io.github.xiayifang.goldendict_ng.desktop</launchable>
|
||||
<launchable type="desktop-id">io.github.xiaoyifang.goldendict_ng.desktop</launchable>
|
||||
<content_rating type="oars-1.0"/>
|
||||
<provides>
|
||||
<id>org.goldendict_ng.desktop</id>
|
|
@ -3089,7 +3089,7 @@ void MainWindow::setAutostart( bool autostart )
|
|||
return; // Nothing to do.
|
||||
if ( autostart ) {
|
||||
const QString sourcePath =
|
||||
Config::getProgramDataDir() + "../applications/io.github.xiayifang.goldendict_ng.desktop";
|
||||
Config::getProgramDataDir() + "../applications/io.github.xiaoyifang.goldendict_ng.desktop";
|
||||
QFile::copy( sourcePath, destinationPath );
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue