constants.ps1
|
# Copyright 2026 gor-dey # Licensed under the Apache License, Version 2.0 (the "License") # You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software distributed under the License is "AS IS" BASIS. # --- FrontNox Constants --- $NoxVersion = "1.0.0" $NoxBaseDir = Join-Path $HOME ".config\FrontNox" $NoxBinDir = Join-Path $NoxBaseDir "bin" $NoxConfigDir = $NoxBaseDir $NoxProjFile = Join-Path $NoxConfigDir "proj.json" $NoxLangFile = Join-Path $NoxConfigDir "lang.conf" $NoxI18nDir = Join-Path $NoxBinDir "i18n" $NoxProxyLogDir = "$env:TEMP\NoxProxyLogs" # Legacy paths for cleanup $NoxLegacyDocsDir = Join-Path ([Environment]::GetFolderPath("MyDocuments")) "WindowsPowerShell\Scripts\FrontNox" $NoxLegacyTempDir = Join-Path $HOME ".frontnox" |