Skip to content

Commit aaa5ff7

Browse files
committed
test
1 parent f9f3b67 commit aaa5ff7

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

CMakeLists.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -74,13 +74,13 @@ install(TARGETS ${LIRI_EXECUTABLE_NAME}
7474
LIBRARY DESTINATION lib
7575
BUNDLE DESTINATION .)
7676

77-
install(FILES io.github.petitlapin.appdata.xml DESTINATION "${CMAKE_INSTALL_DATADIR}/appdata/")
78-
install(FILES io.github.petitlapin.desktop DESTINATION "${CMAKE_INSTALL_DATADIR}/applications/")
79-
install(FILES data/Li-ri-icon-16x16.png DESTINATION "${CMAKE_INSTALL_DATADIR}/icons/hicolor/16x16/apps/" RENAME li-ri.png)
80-
install(FILES data/Li-ri-icon-32x32.png DESTINATION "${CMAKE_INSTALL_DATADIR}/icons/hicolor/32x32/apps/" RENAME li-ri.png)
81-
install(FILES data/Li-ri-icon-48x48.png DESTINATION "${CMAKE_INSTALL_DATADIR}/icons/hicolor/48x48/apps/" RENAME li-ri.png)
82-
install(FILES data/Li-ri-icon-64x64.png DESTINATION "${CMAKE_INSTALL_DATADIR}/icons/hicolor/64x64/apps/" RENAME li-ri.png)
83-
install(FILES data/Li-ri-icon-128x128.png DESTINATION "${CMAKE_INSTALL_DATADIR}/icons/hicolor/128x128/apps/" RENAME li-ri.png)
77+
install(FILES io.github.petitlapin.Li-ri.appdata.xml DESTINATION "${CMAKE_INSTALL_DATADIR}/appdata/")
78+
install(FILES io.github.petitlapin.Li-ri.desktop DESTINATION "${CMAKE_INSTALL_DATADIR}/applications/")
79+
install(FILES data/Li-ri-icon-16x16.png DESTINATION "${CMAKE_INSTALL_DATADIR}/icons/hicolor/16x16/apps/" RENAME io.github.petitlapin.Li-ri.png)
80+
install(FILES data/Li-ri-icon-32x32.png DESTINATION "${CMAKE_INSTALL_DATADIR}/icons/hicolor/32x32/apps/" RENAME io.github.petitlapin.Li-ri.png)
81+
install(FILES data/Li-ri-icon-48x48.png DESTINATION "${CMAKE_INSTALL_DATADIR}/icons/hicolor/48x48/apps/" RENAME io.github.petitlapin.Li-ri.png)
82+
install(FILES data/Li-ri-icon-64x64.png DESTINATION "${CMAKE_INSTALL_DATADIR}/icons/hicolor/64x64/apps/" RENAME io.github.petitlapin.Li-ri.png)
83+
install(FILES data/Li-ri-icon-128x128.png DESTINATION "${CMAKE_INSTALL_DATADIR}/icons/hicolor/128x128/apps/" RENAME io.github.petitlapin.Li-ri.png)
8484

8585
if(WIN32)
8686
install(DIRECTORY ${CMAKE_SOURCE_DIR}/data/ DESTINATION bin)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<component type="desktop-application">
3-
<id>io.github.petitlapin.desktop</id>
3+
<id>io.github.petitlapin.Li-ri.desktop</id>
44
<name>Li-Ri</name>
55
<summary>Li-Ri is a arcade game where you drive a toy wood engine.</summary>
66
<metadata_license>CC0-1.0</metadata_license>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Name=Li-ri
55
GenericName=Li-ri Arcade Game
66
Comment=Drive a toy wood engine
77
Exec=Li-ri
8-
Icon=li-ri
8+
Icon=io.github.petitlapin.Li-ri
99
Terminal=false
1010
Type=Application
1111
Categories=ArcadeGame;Simulation;Game;KidsGame;

tools/bump_version.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ function usage() {
1414
echo " -h, --help displays this help"
1515
}
1616

17-
if [ ! -f io.github.petitlapin.appdata.xml ]
17+
if [ ! -f io.github.petitlapin.Li-ri.appdata.xml ]
1818
then
1919
echo "ERROR: Run me from the top level source dir"
2020
exit 1
@@ -76,8 +76,8 @@ git add CMakeLists.txt android/app/src/main/AndroidManifest.xml src/main.cc && g
7676

7777
if [[ "${CHANGELOG}" ]]
7878
then
79-
appstreamcli news-to-metainfo ./NEWS.yaml ./io.github.petitlapin.appdata.xml
79+
appstreamcli news-to-metainfo ./NEWS.yaml ./io.github.petitlapin.Li-ri.appdata.xml
8080
python tools/fdroid_create_fastlane_changelogs.py
8181

82-
git add fastlane/metadata/android/en-US/changelogs/ io.github.petitlapin.appdata.xml && git commit -m "update changelog for ${major}.${minor}.${patch}"
82+
git add fastlane/metadata/android/en-US/changelogs/ io.github.petitlapin.Li-ri.appdata.xml && git commit -m "update changelog for ${major}.${minor}.${patch}"
8383
fi

0 commit comments

Comments
 (0)