-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement Inspector::getApplicationInfo
- Loading branch information
Showing
19 changed files
with
786 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
install(FILES appimage_logo.svg DESTINATION ${CMAKE_INSTALL_DATADIR}/icons/hicolor/scalable/apps COMPONENT APPIMAGE_SERVICES) | ||
install(FILES org.appimage.services.desktop DESTINATION ${CMAKE_INSTALL_DATADIR}/applications COMPONENT APPIMAGE_SERVICES) | ||
install(FILES org.appimage.services.appdata.xml DESTINATION ${CMAKE_INSTALL_DATADIR}/metainfo COMPONENT APPIMAGE_SERVICES) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<component type="desktop-application"> | ||
<id>org.appimage.services</id> | ||
<metadata_license>FSFAP</metadata_license> | ||
<project_license>MIT</project_license> | ||
<name>AppImage Services</name> | ||
<summary>AppImage desktop integration services</summary> | ||
<description> | ||
<p> | ||
Collection of DBus services to extend the AppImage experience in desktop environments. | ||
|
||
Includes: | ||
|
||
Launcher: Provides system launcher integration of AppImages | ||
Updater: Provides a way of updating AppImages | ||
Inspector: Allows to extract the application metadata from AppImage files | ||
</p> | ||
</description> | ||
| ||
<url type="homepage">https://github.com/azubieta/AppImageService</url> | ||
<project_group>AppImage</project_group> | ||
<releases> | ||
<release version="0.2.0" date="2019-06-14"> | ||
</release> | ||
</releases> | ||
<provides> | ||
<binary>appimage-services</binary> | ||
<dbus type="system">org.appimage.Services1.Launcher</dbus> | ||
<dbus type="system">org.appimage.Services1.Updater</dbus> | ||
<dbus type="system">org.appimage.Services1.Inspector</dbus> | ||
</provides> | ||
</component> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
find_package(Qt5 CONFIG REQUIRED Core) | ||
|
||
add_library(AppImageServicesCommon OBJECT utils.cpp) | ||
add_library(AppImageServicesCommon STATIC utils.cpp) | ||
target_link_libraries(AppImageServicesCommon PUBLIC Qt5::Core) | ||
target_include_directories(AppImageServicesCommon PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,8 @@ | ||
#include "utils.h" | ||
|
||
QString removeUriProtocolFromPath(const QString& uri) { | ||
if (uri.startsWith("file://")) | ||
return uri.mid(7); | ||
else | ||
return uri; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.