Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <Project Sdk="Microsoft.NET.Sdk"> | |
| <PropertyGroup> | |
| <TargetFramework>net7.0</TargetFramework> | |
| <ImplicitUsings>enable</ImplicitUsings> | |
| <Nullable>enable</Nullable> | |
| </PropertyGroup> | |
| <ItemGroup> | |
| <Reference Include="ATAS.Indicators"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # loop over all files in the current folder | |
| # and process the file if the name ends with _connection_params.txt | |
| import os | |
| import re | |
| import sys |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import gitlab | |
| # Replace these values with your GitLab information | |
| gitlab_url = "https://gitlab.com" | |
| private_token = "" | |
| group_id = "" | |
| # Create a GitLab API connection | |
| gl = gitlab.Gitlab(gitlab_url, private_token=private_token) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Colors] | |
| Color0=0 | |
| Color1=14013135 | |
| Color2=14013135 | |
| Color3=8478743 | |
| Color4=0 | |
| Color5=3307724 | |
| Color6=9079434 | |
| Color7=11117660 | |
| Color8=14013135 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "0": { | |
| "file": "common\\genes\\05_genes_special_accessories_clothes.txt", | |
| "count": 4, | |
| "mods": [ | |
| "Unofficial Patch", | |
| "Community Flavor Pack", | |
| "Ethnicities and Portraits Expanded", | |
| "CFP + EPE Compatibility Patch" | |
| ], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "database": { | |
| "unofficialpatch": { | |
| "name": "Unofficial Patch", | |
| "loadBefore": { | |
| "*": {} | |
| } | |
| }, | |
| "rice": { | |
| "name": "Regional Immersion and Cultural Enrichment (RICE)", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash -l | |
| set -euxo pipefail | |
| # Source first argument if it exists | |
| if [ -n "${1-}" ]; then | |
| set -o allexport | |
| source "$1" | |
| set +o allexport | |
| fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 1. '-b' flag in jq gets rid of the line breaks | |
| # which is problematic on windows CLRF | |
| # 2. '| xargs' after jq is used to trim the extra quotes | |
| # that are problematic when passing the arguments to other | |
| # command into a subshell | |
| # get the arguments for the e2e tests | |
| _get_e2e_args: | |
| #!/bin/bash | |
| jq -b -n -r --slurpfile b .build/.build_data.json \ |