Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gluschenko/forge-launcher
Deployment application for BC 2.0
https://github.com/gluschenko/forge-launcher
dotnet dotnet-core wpf
Last synced: about 2 months ago
JSON representation
Deployment application for BC 2.0
- Host: GitHub
- URL: https://github.com/gluschenko/forge-launcher
- Owner: gluschenko
- License: mit
- Created: 2019-09-26T18:59:42.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-12-11T17:21:51.000Z (about 1 year ago)
- Last Synced: 2023-12-11T18:34:30.665Z (about 1 year ago)
- Topics: dotnet, dotnet-core, wpf
- Language: C#
- Homepage:
- Size: 735 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Launcher
My launcher application for **deployment and managing versions** of Windows client applications.
Requirements:
* .NET 6.0 LTS
* Windows 7 SP1 / Windows 8.1 / Windows 10
* WPF## Configuration
You can customize the **logo**, **background** and **title** of the main window. All these parameters are included in Launcher.json. Icon is not configurable from json config.
#### Launcher.json:
```
{
"Title": "My Launcher",
"Logo": "Logo.png",
"Background": "Background.png",
"VersionsURL": "https://domain.com/version.json",
"BuildExecutable": "Bootstrap.exe"
}
```* `Title` - Title of main window
* `Logo` - Logo picture relative path (.png)
* `Background` - Background picture relative path (.png)
* `VersionsURL` - Meta data about latest versions (example is below)
* `BuildExecutable` - Main executable file (must be in each version folder)#### Web response example (version.json):
```
{
"Version": "2.3",
"URL": "https://domain.com/prod/2.3.zip",
"InstallerURL": "https://domain.com/prod/Setup_2.3.exe",
"WindowsVersions": [
"2.3",
"2.2",
"2.1"
],
"WindowsBuilds": [
"https://domain.com/prod/Setup_2.3.exe",
"https://domain.com/prod/Setup_2.2.exe",
"https://domain.com/prod/Setup_2.1.exe"
]
}
```* `Version` - Latest version
* `URL` - [LEGACY FIELD]
* `InstallerURL` - Latest vesrion installer
* `WindowsVersions` - List of available versions (displays on downloads page)
* `WindowsBuilds` - List of available installers (corresponds to the previous field)## Catalog structure
* Versions
* 2.1
* 2.2
* 2.3
* Downloads
* [...]
* Launcher.exe
* Launcher.Core.dll
* Launcher.json
* LauncherPrefs.json## Showcase
![](/.media/screen_1.png)
![](/.media/screen_2.png)