Research Date: December 18, 2025
Total Documentation: ~95 KB across 7 comprehensive files
Coverage: Icon requirements, AppData metadata, Desktop files, Tauri configuration, Screenshots
Quality: HIGH confidence (95%) for standards; MEDIUM-HIGH (75%) for Tauri specifics
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 | |
| set -e | |
| SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" | |
| DOCKER_IMAGE_NAME="${DOCKER_IMAGE_NAME:-opencode-builder}" | |
| DOCKER_BASE_IMAGE="${DOCKER_BASE_IMAGE:-fedora:latest}" | |
| # Display usage | |
| usage() { |
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
| 17:54:25 Dedicated host created. | |
| 17:54:25 [Inputs] Loading inputs default "bin/constants.xml" | |
| 17:54:25 [Inputs] Loading inputs default "bin/specific.xml" | |
| 17:54:25 [Inputs] Loading inputs cfg "/home/zenobius/.local/share/DayZ Other Profiles/Server\Server.core.xml" | |
| 17:54:25 [Inputs] Exporting inputs cfg "/home/zenobius/.local/share/DayZ Other Profiles/Server\Server.core.xml" | |
| 17:54:28 BattlEye Server: Initialized (v1.219, DayZ 1.28.160123) | |
| [S_API] SteamAPI_Init(): Loaded local 'steamclient.so' OK. | |
| CAppInfoCacheReadFromDiskThread took 4 milliseconds to initialize | |
| Setting breakpad minidump AppID = 221100 | |
| SteamInternal_SetMinidumpSteamID: Caching Steam ID: 76561197960265728 [API loaded no] |
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
| #!/usr/bin/env bash | |
| find_eslint_config() { | |
| local dir | |
| dir="$1" | |
| while [ "$dir" != "/" ]; do | |
| if [ -f "$dir/eslint.config.cjs" ]; then |
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
| #!/usr/bin/env bash | |
| # set errors to fail the script | |
| set -e | |
| function require_arg() { | |
| if [[ -z "${1}" ]]; then | |
| echo "${2} is required." | |
| exit 1 | |
| 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
| #!/usr/bin/env pwsh | |
| function List-AvailableDistros { | |
| # List available WSL distros and only include first column | |
| $distroList = wsl --list --online | Where-Object { $_ -ne "" } | Select-Object -Skip 3 | ForEach-Object { $_.Split(" ")[0] } | Where-Object { $_ -ne "" } | |
| if ($LASTEXITCODE -ne 0) { | |
| Write-Error "Failed to list available WSL distros." | |
| exit 1 | |
| } |
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 | |
| # read the JSON input from stdin | |
| inputs=$(cat); | |
| # pick the paths_released from the JSON input and turn it into a bash array | |
| paths_array=$(jq -r '.paths_released | fromjson | .[]' <<< "$inputs") | |
| for release in $paths_array; do | |
| echo "Creating release branch for $release" |
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 { | |
| createContext, | |
| useCallback, | |
| useContext, | |
| useEffect, | |
| useState, | |
| } from 'react'; | |
| import type { Context, PropsWithChildren } from 'react'; |
NewerOlder