1
0
mirror of https://github.com/c9fe/22120.git synced 2024-11-10 04:52:43 +01:00

V2 of 22120 / Ex Libris: Now with Full Text Search

Full text search over your archive. New in Version 2.

Also includes stability increases, and other improvements.


Former-commit-id: a81810ffd6c671827bb7d9ce4e77292c793c6aec
This commit is contained in:
Cris Stringfellow 2021-12-28 00:08:25 +08:00
parent 0f81bbbe15
commit 4848543d6f
5 changed files with 8 additions and 11 deletions

View File

@ -1 +1 @@
92c6eb953c2be649afdf60cafd107f52b6bbeecb
aea9b1f9bf9d2cfedef40511424703a4a90ce3bd

View File

@ -1 +1 @@
4520c3d10093d4ad7a4b16c5db0693b626398b34
082ccd9acd8ba8cf59c87de42022a3c02ffb5e77

View File

@ -1 +1 @@
43c1c1e1f92b0b8e597cb51a9300f32ce9e5ecfd
8843d87c2230fad90d9ee785cdf3d4a5a9b6a7bd

View File

@ -5,7 +5,7 @@ echo "Installing nexe and upx..."
mkdir -p bin/
mkdir -p build/
nexe || npm i -g nexe
pkg || npm i -g pkg
curl -L -o upx.tar.xz https://github.com/upx/upx/releases/download/v3.96/upx-3.96-amd64_linux.tar.xz
tar -xJf upx.tar.xz
rm upx.tar.xz
@ -14,7 +14,7 @@ rm -rf upx-3.96-amd64_linux
./dl-node.sh
cd ~/.nexe/
cd ~/.pkg-cache/v3.2/
chmod +x *
upx * || :

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
unset npm_config_prefix
source $HOME/.nvm/nvm.sh
@ -6,10 +6,7 @@ source $HOME/.nvm/nvm.sh
nvm install v14.15.3
nvm use v14.15.3
npx nexe -t linux-x64 -o bin/hello.nix -i ./hello.js -r \"./build/*\"
npx nexe -t windows -o bin/hello.exe -i ./hello.js -r \"./build/*\"
npx nexe -t macos-x64 -o bin/hello.mac -i ./hello.js -r \"./build/*\"
npx nexe -t windows-x32 -o bin/hello.win32.exe -i ./hello.js -r \"./build/*\" && npx nexe -t linux-x32 -o bin/hello.nix32 -i ./hello.js -r \"./build/*\"
pkg ./hello.js
rm -rf bin/hello.*
rm -rf hello-*