umu-commander 1.5.1__tar.gz → 1.5.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of umu-commander might be problematic. Click here for more details.

Files changed (29) hide show
  1. {umu_commander-1.5.1 → umu_commander-1.5.2}/PKG-INFO +10 -2
  2. {umu_commander-1.5.1 → umu_commander-1.5.2}/README.md +9 -1
  3. {umu_commander-1.5.1 → umu_commander-1.5.2}/pyproject.toml +1 -1
  4. {umu_commander-1.5.1 → umu_commander-1.5.2}/src/umu_commander/main.py +1 -0
  5. {umu_commander-1.5.1 → umu_commander-1.5.2}/.gitignore +0 -0
  6. {umu_commander-1.5.1 → umu_commander-1.5.2}/.idea/.gitignore +0 -0
  7. {umu_commander-1.5.1 → umu_commander-1.5.2}/.idea/inspectionProfiles/Project_Default.xml +0 -0
  8. {umu_commander-1.5.1 → umu_commander-1.5.2}/.idea/inspectionProfiles/profiles_settings.xml +0 -0
  9. {umu_commander-1.5.1 → umu_commander-1.5.2}/.idea/misc.xml +0 -0
  10. {umu_commander-1.5.1 → umu_commander-1.5.2}/.idea/modules.xml +0 -0
  11. {umu_commander-1.5.1 → umu_commander-1.5.2}/.idea/umu-commander.iml +0 -0
  12. {umu_commander-1.5.1 → umu_commander-1.5.2}/.idea/vcs.xml +0 -0
  13. {umu_commander-1.5.1 → umu_commander-1.5.2}/.idea/workspace.xml +0 -0
  14. {umu_commander-1.5.1 → umu_commander-1.5.2}/LICENSE.txt +0 -0
  15. {umu_commander-1.5.1 → umu_commander-1.5.2}/example_config.toml +0 -0
  16. {umu_commander-1.5.1 → umu_commander-1.5.2}/src/umu_commander/__init__.py +0 -0
  17. {umu_commander-1.5.1 → umu_commander-1.5.2}/src/umu_commander/classes.py +0 -0
  18. {umu_commander-1.5.1 → umu_commander-1.5.2}/src/umu_commander/configuration.py +0 -0
  19. {umu_commander-1.5.1 → umu_commander-1.5.2}/src/umu_commander/database.py +0 -0
  20. {umu_commander-1.5.1 → umu_commander-1.5.2}/src/umu_commander/proton.py +0 -0
  21. {umu_commander-1.5.1 → umu_commander-1.5.2}/src/umu_commander/tracking.py +0 -0
  22. {umu_commander-1.5.1 → umu_commander-1.5.2}/src/umu_commander/umu_config.py +0 -0
  23. {umu_commander-1.5.1 → umu_commander-1.5.2}/src/umu_commander/util.py +0 -0
  24. {umu_commander-1.5.1 → umu_commander-1.5.2}/tests/__init__.py +0 -0
  25. {umu_commander-1.5.1 → umu_commander-1.5.2}/tests/test_config.py +0 -0
  26. {umu_commander-1.5.1 → umu_commander-1.5.2}/tests/test_db.py +0 -0
  27. {umu_commander-1.5.1 → umu_commander-1.5.2}/tests/test_manual.py +0 -0
  28. {umu_commander-1.5.1 → umu_commander-1.5.2}/tests/test_proton.py +0 -0
  29. {umu_commander-1.5.1 → umu_commander-1.5.2}/tests/test_tracking.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: umu-commander
3
- Version: 1.5.1
3
+ Version: 1.5.2
4
4
  Summary: umu-commander is an interactive CLI tool to help you manage umu.
5
5
  Project-URL: Homepage, https://github.com/Mpaxlamitsounas/umu-commander
6
6
  Project-URL: Issues, https://github.com/Mpaxlamitsounas/umu-commander/issues
@@ -21,7 +21,15 @@ What directories each Proton version is being used by is tracked within `trackin
21
21
 
22
22
  Vanilla umu configuration files currently do not support setting environmental variables, this tool adds such functionality by adding an extra TOML table in the umu config itself. An example config is available under the name `example_config.toml`.
23
23
 
24
- umu-commander will look for your installed Proton versions using a predetermined list of directories, if you notice some versions missing, the listed can be edited within the `configuration.py` file in the src directory.
24
+ ### Config
25
+ The configuration file lives at `~/.config/umu-commander.toml`. Within it, you can edit the following:
26
+ * PROTON_PATHS: List of directories umu-commander will search for Proton versions.
27
+ * UMU_PROTON_PATH: Directory where umu itself downloads its umu Proton versions.
28
+ * DB_NAME: Tracking DB filename.
29
+ * DB_DIR: Directory where the Tracking DB is stored.
30
+ * UMU_CONFIG_NAME: Name of the umu config created using umu-commander run.
31
+ * DEFAULT_PREFIX_DIR: Directory where WINE prefixes are scanned.
32
+ * [DLL_OVERRIDES_OPTIONS]: Category to list possible DLL overrides in "Label" = "Override string" format.
25
33
 
26
34
  ### Verbs
27
35
  umu-commander needs one of the following verbs specified after the executable name:
@@ -6,7 +6,15 @@ What directories each Proton version is being used by is tracked within `trackin
6
6
 
7
7
  Vanilla umu configuration files currently do not support setting environmental variables, this tool adds such functionality by adding an extra TOML table in the umu config itself. An example config is available under the name `example_config.toml`.
8
8
 
9
- umu-commander will look for your installed Proton versions using a predetermined list of directories, if you notice some versions missing, the listed can be edited within the `configuration.py` file in the src directory.
9
+ ### Config
10
+ The configuration file lives at `~/.config/umu-commander.toml`. Within it, you can edit the following:
11
+ * PROTON_PATHS: List of directories umu-commander will search for Proton versions.
12
+ * UMU_PROTON_PATH: Directory where umu itself downloads its umu Proton versions.
13
+ * DB_NAME: Tracking DB filename.
14
+ * DB_DIR: Directory where the Tracking DB is stored.
15
+ * UMU_CONFIG_NAME: Name of the umu config created using umu-commander run.
16
+ * DEFAULT_PREFIX_DIR: Directory where WINE prefixes are scanned.
17
+ * [DLL_OVERRIDES_OPTIONS]: Category to list possible DLL overrides in "Label" = "Override string" format.
10
18
 
11
19
  ### Verbs
12
20
  umu-commander needs one of the following verbs specified after the executable name:
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "umu-commander"
7
- version = "1.5.1"
7
+ version = "1.5.2"
8
8
  authors = [
9
9
  { name="Mpaxlamitsounas", email="worldstudy123@gmail.com" },
10
10
  ]
@@ -59,6 +59,7 @@ def main() -> ExitCode:
59
59
 
60
60
  tracking.untrack_unlinked()
61
61
  db.dump()
62
+ config.dump()
62
63
 
63
64
  return ExitCode.SUCCESS
64
65
 
File without changes
File without changes