Support some undocumented variants of Path template arguments
This commit is contained in:
parent
c945aadb3e
commit
11e9228262
2 changed files with 22 additions and 0 deletions
|
@ -91406,6 +91406,10 @@ Cats are Liquid:
|
|||
- when:
|
||||
- os: windows
|
||||
store: steam
|
||||
registry:
|
||||
HKEY_CURRENT_USER/SOFTWARE/LastQuarter Studios/Cats are Liquid:
|
||||
tags:
|
||||
- config
|
||||
steam:
|
||||
id: 498330
|
||||
Cats are Liquid - A Better Place:
|
||||
|
|
18
src/wiki.rs
18
src/wiki.rs
|
@ -795,6 +795,15 @@ static MAPPED_PATHS: Lazy<HashMap<&'static str, MappedPath>> = Lazy::new(|| {
|
|||
..Default::default()
|
||||
},
|
||||
),
|
||||
(
|
||||
"hkey_current_user",
|
||||
MappedPath {
|
||||
manifest: "HKEY_CURRENT_USER",
|
||||
os: Some(Os::Windows),
|
||||
kind: Some(PathKind::Registry),
|
||||
..Default::default()
|
||||
},
|
||||
),
|
||||
(
|
||||
"hklm",
|
||||
MappedPath {
|
||||
|
@ -804,6 +813,15 @@ static MAPPED_PATHS: Lazy<HashMap<&'static str, MappedPath>> = Lazy::new(|| {
|
|||
..Default::default()
|
||||
},
|
||||
),
|
||||
(
|
||||
"hkey_local_machine",
|
||||
MappedPath {
|
||||
manifest: "HKEY_LOCAL_MACHINE",
|
||||
os: Some(Os::Windows),
|
||||
kind: Some(PathKind::Registry),
|
||||
..Default::default()
|
||||
},
|
||||
),
|
||||
(
|
||||
"wow64",
|
||||
MappedPath {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue