feat: Add itch.io as possible platform

This commit is contained in:
Philip Kristoffersen
2021-09-29 22:08:15 +02:00
parent 750379202e
commit 05dbaa95e4
8 changed files with 60 additions and 11 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ pub enum EpicGamesManifestsError {
ReadDirError { path: String, error: std::io::Error },
}
pub fn get_egs_manifests(
pub(crate) fn get_egs_manifests(
settings: &EpicGamesLauncherSettings,
) -> Result<Vec<ManifestItem>, EpicGamesManifestsError> {
use EpicGamesManifestsError::*;
+1 -1
View File
@@ -2,7 +2,7 @@ use serde::{Deserialize, Serialize};
use steam_shortcuts_util::{Shortcut, shortcut::ShortcutOwned};
#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct ManifestItem {
pub(crate) struct ManifestItem {
#[serde(alias = "LaunchExecutable")]
pub launch_executable: String,