Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/valkryst/vterminalpaletteeditor
A standalone GUI application for creating and editing VTerminal palettes.
https://github.com/valkryst/vterminalpaletteeditor
2d 2d-graphics ascii gamedev roguelike roguelike-library swing terminal unicode vterminal
Last synced: 14 days ago
JSON representation
A standalone GUI application for creating and editing VTerminal palettes.
- Host: GitHub
- URL: https://github.com/valkryst/vterminalpaletteeditor
- Owner: Valkryst
- License: apache-2.0
- Created: 2021-01-03T01:39:27.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2024-11-14T19:31:17.000Z (about 2 months ago)
- Last Synced: 2024-11-14T20:25:45.123Z (about 2 months ago)
- Topics: 2d, 2d-graphics, ascii, gamedev, roguelike, roguelike-library, swing, terminal, unicode, vterminal
- Language: Java
- Homepage:
- Size: 20.5 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
## MSI Compilation
```shell
mkdir temp
del "VTerminal Palette Editor.msi" 2>nul
copy "VTerminal-jar-with-dependencies.jar" "temp\VTerminal-jar-with-dependencies.jar""C:\Program Files\Java\jdk-15\bin\jpackage.exe" ^
--type msi ^
--copyright "Valkryst, 2021" ^
--name "VTerminal Palette Editor" ^
--vendor "Valkryst" ^
--verbose ^
--input "%~dp0temp" ^
--main-class "com.valkryst.VTerminalPaletteEditor.Driver" ^
--main-jar "VTerminal-jar-with-dependencies.jar" ^
--win-dir-chooser ^
--win-shortcutrmdir /S /Q "%~dp0temp
pause
```