Skip to content

Commit

Permalink
Add Game Runtime and SFSE version checks (#4)
Browse files Browse the repository at this point in the history
* Add Game Runtime version checks
* Add version checks for Starfield Script Extender
  • Loading branch information
pStyl3 authored Sep 4, 2023
1 parent 1e43c3c commit 2b6ff44
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions masterlist.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,20 @@ globals:

# Latest Version
# Starfield Game Runtime
# - <<: *versionOldX
# subs: [ '**Starfield**' ]
# condition: 'readable("../Starfield.exe") and product_version("../Starfield.exe", "1.7.23.0", >=) and product_version("../Starfield.exe", "1.7.23.0", <)'
- <<: *versionUpToDateX
subs: [ '**Starfield**' ]
condition: 'readable("../Starfield.exe") and product_version("../Starfield.exe", "1.7.23.0", >=)'
# SFSE
# https://github.com/ianpatt/sfse
# - <<: *versionOldX
# subs: [ '**[SFSE](https://www.nexusmods.com/starfield/mods/106/)**' ]
# condition: 'file("../sfse_loader.exe") and version("../sfse_loader.exe", "0.0.1.0", <) and readable("../Starfield.exe") and product_version("../Starfield.exe", "1.7.23.0", >=)'
- <<: *versionUpToDateX
subs: [ '**SFSE**' ]
condition: 'version("../sfse_loader.exe", "0.0.1.0", >=) and readable("../Starfield.exe") and product_version("../Starfield.exe", "1.7.23.0", >=)'

groups:
- name: &mainGroup Main Plugins
Expand Down

0 comments on commit 2b6ff44

Please sign in to comment.