From fd731a66e1ae7e7ceecebead4ea1bf5209739757 Mon Sep 17 00:00:00 2001 From: Dummerle Date: Mon, 15 Mar 2021 17:45:37 +0100 Subject: [PATCH] Rename legendary folder --- {legendary => custom-legendary}/__init__.py | 0 {legendary => custom-legendary}/api/__init__.py | 0 {legendary => custom-legendary}/api/egs.py | 0 {legendary => custom-legendary}/cli.py | 0 {legendary => custom-legendary}/core.py | 0 {legendary => custom-legendary}/downloader/__init__.py | 0 {legendary => custom-legendary}/downloader/manager.py | 0 {legendary => custom-legendary}/downloader/workers.py | 0 {legendary => custom-legendary}/lfs/__init__.py | 0 {legendary => custom-legendary}/lfs/egl.py | 0 {legendary => custom-legendary}/lfs/lgndry.py | 0 {legendary => custom-legendary}/models/__init__.py | 0 {legendary => custom-legendary}/models/chunk.py | 0 {legendary => custom-legendary}/models/downloading.py | 0 {legendary => custom-legendary}/models/egl.py | 0 {legendary => custom-legendary}/models/exceptions.py | 0 {legendary => custom-legendary}/models/game.py | 0 {legendary => custom-legendary}/models/json_manifest.py | 0 {legendary => custom-legendary}/models/manifest.py | 0 {legendary => custom-legendary}/utils/__init__.py | 0 {legendary => custom-legendary}/utils/cli.py | 0 {legendary => custom-legendary}/utils/custom_parser.py | 0 {legendary => custom-legendary}/utils/game_workarounds.py | 0 {legendary => custom-legendary}/utils/lfs.py | 0 {legendary => custom-legendary}/utils/manifests.py | 0 {legendary => custom-legendary}/utils/rolling_hash.py | 0 {legendary => custom-legendary}/utils/savegame_helper.py | 0 {legendary => custom-legendary}/utils/selective_dl.py | 0 {legendary => custom-legendary}/utils/wine_helpers.py | 0 29 files changed, 0 insertions(+), 0 deletions(-) rename {legendary => custom-legendary}/__init__.py (100%) rename {legendary => custom-legendary}/api/__init__.py (100%) rename {legendary => custom-legendary}/api/egs.py (100%) rename {legendary => custom-legendary}/cli.py (100%) rename {legendary => custom-legendary}/core.py (100%) rename {legendary => custom-legendary}/downloader/__init__.py (100%) rename {legendary => custom-legendary}/downloader/manager.py (100%) rename {legendary => custom-legendary}/downloader/workers.py (100%) rename {legendary => custom-legendary}/lfs/__init__.py (100%) rename {legendary => custom-legendary}/lfs/egl.py (100%) rename {legendary => custom-legendary}/lfs/lgndry.py (100%) rename {legendary => custom-legendary}/models/__init__.py (100%) rename {legendary => custom-legendary}/models/chunk.py (100%) rename {legendary => custom-legendary}/models/downloading.py (100%) rename {legendary => custom-legendary}/models/egl.py (100%) rename {legendary => custom-legendary}/models/exceptions.py (100%) rename {legendary => custom-legendary}/models/game.py (100%) rename {legendary => custom-legendary}/models/json_manifest.py (100%) rename {legendary => custom-legendary}/models/manifest.py (100%) rename {legendary => custom-legendary}/utils/__init__.py (100%) rename {legendary => custom-legendary}/utils/cli.py (100%) rename {legendary => custom-legendary}/utils/custom_parser.py (100%) rename {legendary => custom-legendary}/utils/game_workarounds.py (100%) rename {legendary => custom-legendary}/utils/lfs.py (100%) rename {legendary => custom-legendary}/utils/manifests.py (100%) rename {legendary => custom-legendary}/utils/rolling_hash.py (100%) rename {legendary => custom-legendary}/utils/savegame_helper.py (100%) rename {legendary => custom-legendary}/utils/selective_dl.py (100%) rename {legendary => custom-legendary}/utils/wine_helpers.py (100%) diff --git a/legendary/__init__.py b/custom-legendary/__init__.py similarity index 100% rename from legendary/__init__.py rename to custom-legendary/__init__.py diff --git a/legendary/api/__init__.py b/custom-legendary/api/__init__.py similarity index 100% rename from legendary/api/__init__.py rename to custom-legendary/api/__init__.py diff --git a/legendary/api/egs.py b/custom-legendary/api/egs.py similarity index 100% rename from legendary/api/egs.py rename to custom-legendary/api/egs.py diff --git a/legendary/cli.py b/custom-legendary/cli.py similarity index 100% rename from legendary/cli.py rename to custom-legendary/cli.py diff --git a/legendary/core.py b/custom-legendary/core.py similarity index 100% rename from legendary/core.py rename to custom-legendary/core.py diff --git a/legendary/downloader/__init__.py b/custom-legendary/downloader/__init__.py similarity index 100% rename from legendary/downloader/__init__.py rename to custom-legendary/downloader/__init__.py diff --git a/legendary/downloader/manager.py b/custom-legendary/downloader/manager.py similarity index 100% rename from legendary/downloader/manager.py rename to custom-legendary/downloader/manager.py diff --git a/legendary/downloader/workers.py b/custom-legendary/downloader/workers.py similarity index 100% rename from legendary/downloader/workers.py rename to custom-legendary/downloader/workers.py diff --git a/legendary/lfs/__init__.py b/custom-legendary/lfs/__init__.py similarity index 100% rename from legendary/lfs/__init__.py rename to custom-legendary/lfs/__init__.py diff --git a/legendary/lfs/egl.py b/custom-legendary/lfs/egl.py similarity index 100% rename from legendary/lfs/egl.py rename to custom-legendary/lfs/egl.py diff --git a/legendary/lfs/lgndry.py b/custom-legendary/lfs/lgndry.py similarity index 100% rename from legendary/lfs/lgndry.py rename to custom-legendary/lfs/lgndry.py diff --git a/legendary/models/__init__.py b/custom-legendary/models/__init__.py similarity index 100% rename from legendary/models/__init__.py rename to custom-legendary/models/__init__.py diff --git a/legendary/models/chunk.py b/custom-legendary/models/chunk.py similarity index 100% rename from legendary/models/chunk.py rename to custom-legendary/models/chunk.py diff --git a/legendary/models/downloading.py b/custom-legendary/models/downloading.py similarity index 100% rename from legendary/models/downloading.py rename to custom-legendary/models/downloading.py diff --git a/legendary/models/egl.py b/custom-legendary/models/egl.py similarity index 100% rename from legendary/models/egl.py rename to custom-legendary/models/egl.py diff --git a/legendary/models/exceptions.py b/custom-legendary/models/exceptions.py similarity index 100% rename from legendary/models/exceptions.py rename to custom-legendary/models/exceptions.py diff --git a/legendary/models/game.py b/custom-legendary/models/game.py similarity index 100% rename from legendary/models/game.py rename to custom-legendary/models/game.py diff --git a/legendary/models/json_manifest.py b/custom-legendary/models/json_manifest.py similarity index 100% rename from legendary/models/json_manifest.py rename to custom-legendary/models/json_manifest.py diff --git a/legendary/models/manifest.py b/custom-legendary/models/manifest.py similarity index 100% rename from legendary/models/manifest.py rename to custom-legendary/models/manifest.py diff --git a/legendary/utils/__init__.py b/custom-legendary/utils/__init__.py similarity index 100% rename from legendary/utils/__init__.py rename to custom-legendary/utils/__init__.py diff --git a/legendary/utils/cli.py b/custom-legendary/utils/cli.py similarity index 100% rename from legendary/utils/cli.py rename to custom-legendary/utils/cli.py diff --git a/legendary/utils/custom_parser.py b/custom-legendary/utils/custom_parser.py similarity index 100% rename from legendary/utils/custom_parser.py rename to custom-legendary/utils/custom_parser.py diff --git a/legendary/utils/game_workarounds.py b/custom-legendary/utils/game_workarounds.py similarity index 100% rename from legendary/utils/game_workarounds.py rename to custom-legendary/utils/game_workarounds.py diff --git a/legendary/utils/lfs.py b/custom-legendary/utils/lfs.py similarity index 100% rename from legendary/utils/lfs.py rename to custom-legendary/utils/lfs.py diff --git a/legendary/utils/manifests.py b/custom-legendary/utils/manifests.py similarity index 100% rename from legendary/utils/manifests.py rename to custom-legendary/utils/manifests.py diff --git a/legendary/utils/rolling_hash.py b/custom-legendary/utils/rolling_hash.py similarity index 100% rename from legendary/utils/rolling_hash.py rename to custom-legendary/utils/rolling_hash.py diff --git a/legendary/utils/savegame_helper.py b/custom-legendary/utils/savegame_helper.py similarity index 100% rename from legendary/utils/savegame_helper.py rename to custom-legendary/utils/savegame_helper.py diff --git a/legendary/utils/selective_dl.py b/custom-legendary/utils/selective_dl.py similarity index 100% rename from legendary/utils/selective_dl.py rename to custom-legendary/utils/selective_dl.py diff --git a/legendary/utils/wine_helpers.py b/custom-legendary/utils/wine_helpers.py similarity index 100% rename from legendary/utils/wine_helpers.py rename to custom-legendary/utils/wine_helpers.py