summaryrefslogtreecommitdiffstats
path: root/GUI/Libraries/fetch.ps1
diff options
context:
space:
mode:
authoryum <yum.food.vr@gmail.com>2023-02-25 19:49:02 -0800
committeryum <yum.food.vr@gmail.com>2023-02-25 20:19:31 -0800
commit97dcd16492b4ce85138988461a85f6694fd7b264 (patch)
tree50d01829837003570b8151bae60ecc18bc6b88b4 /GUI/Libraries/fetch.ps1
parenta8d1b69d2afbb6ba43c3f97e383dc71b097f69fd (diff)
Drop ryml
Rapidyaml started refusing to parse config files so I dropped it. * Add ConfigMarshal clas to support very simple config marshalling * No versioning, no type indicators, nothing. * Supports int, bool, and string. * Bool are serialized as int. * Log no longer segfaults if given nullptr wxTextCtrl*. * Fix how whisper CPP GUI fields restore from config
Diffstat (limited to 'GUI/Libraries/fetch.ps1')
-rw-r--r--GUI/Libraries/fetch.ps116
1 files changed, 0 insertions, 16 deletions
diff --git a/GUI/Libraries/fetch.ps1 b/GUI/Libraries/fetch.ps1
index 22b088b..ac9ccd5 100644
--- a/GUI/Libraries/fetch.ps1
+++ b/GUI/Libraries/fetch.ps1
@@ -31,22 +31,6 @@ if (-Not (Test-Path wx)) {
popd > $null
}
-# RAPIDYAML
-if ((Test-Path rapidyaml) -And ($overwrite)) {
- rm -Recurse rapidyaml
-}
-
-if (-Not (Test-Path rapidyaml)) {
- git clone https://github.com/biojppm/rapidyaml
- pushd rapidyaml > $null
- git checkout v0.5.0
- git submodule update --init --recursive
-
- python3 tools/amalgamate.py ryml.h
- cp ryml.h ../../GUI/GUI/ryml.h
- popd
-}
-
if ((Test-Path whisper) -And ($overwrite)) {
rm -Recurse whisper
}