Skip to content

Commit 7bf4c71

Browse files
authored
Merge pull request #368 from kercre123/lua-scripting
Continuous conversations, basic Lua scripting, user interface enhancements
2 parents fa4690a + 5bd7996 commit 7bf4c71

34 files changed

+849
-629
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,12 @@ Check out the [wiki](https://github.com/kercre123/wire-pod/wiki) for more inform
1616

1717
If you want to :P
1818

19-
[![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.com/donate/?business=53VQ3Q95TD2M6&no_recurring=0&currency_code=USD)
19+
[![Buy Me A Coffee](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://buymeacoffee.com/kercre123)
2020

2121
## Credits
2222

2323
- [Digital Dream Labs](https://github.com/digital-dream-labs) for open sourcing chipper and creating escape pod (which made this possible)
24+
- [bliteknight](https://github.com/bliteknight) for making wire-pod more accessible with his easy-to-use pre-setup Linux boxes
2425
- [dietb](https://github.com/dietb) for rewriting chipper and giving tips
2526
- [fforchino](https://github.com/fforchino) for adding many features such as localization and multilanguage, and for helping out
2627
- [xanathon](https://github.com/xanathon) for the publicity and web interface help

chipper/go.mod

Lines changed: 32 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,56 +25,81 @@ require (
2525
github.com/sashabaranov/go-openai v1.24.0
2626
github.com/soheilhy/cmux v0.1.5
2727
github.com/soundhound/houndify-sdk-go v0.3.5
28+
github.com/vadv/gopher-lua-libs v0.5.0
2829
github.com/wlynxg/anet v0.0.1
29-
golang.org/x/crypto v0.16.0
30+
github.com/yuin/gopher-lua v1.1.1
31+
golang.org/x/crypto v0.21.0
32+
golang.org/x/text v0.14.0
3033
google.golang.org/grpc v1.60.0
3134
gopkg.in/ini.v1 v1.67.0
3235
)
3336

3437
require (
38+
github.com/VividCortex/ewma v1.1.1 // indirect
3539
github.com/agnivade/levenshtein v1.1.1 // indirect
3640
github.com/akavel/rsrc v0.10.2 // indirect
37-
github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc // indirect
38-
github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf // indirect
41+
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect
42+
github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d // indirect
43+
github.com/alessio/shellescape v1.4.1 // indirect
44+
github.com/aws/aws-sdk-go v1.34.28 // indirect
45+
github.com/beorn7/perks v1.0.1 // indirect
46+
github.com/cbroglie/mustache v1.0.1 // indirect
3947
github.com/cenkalti/backoff v2.2.1+incompatible // indirect
48+
github.com/cespare/xxhash/v2 v2.2.0 // indirect
49+
github.com/cheggaaa/pb/v3 v3.0.5 // indirect
4050
github.com/currantlabs/ble v0.0.0-20171229162446-c1d21c164cf8 // indirect
4151
github.com/dchest/jsmin v0.0.0-20220218165748-59f39799265f // indirect
52+
github.com/dustin/go-humanize v1.0.0 // indirect
53+
github.com/fatih/color v1.7.0 // indirect
4254
github.com/fsnotify/fsnotify v1.4.9 // indirect
4355
github.com/go-audio/riff v1.0.0 // indirect
56+
github.com/go-sql-driver/mysql v1.5.0 // indirect
4457
github.com/golang/protobuf v1.5.3 // indirect
4558
github.com/grd/ogg v0.0.0-20130623210630-0dae53159b70 // indirect
4659
github.com/grpc-ecosystem/go-grpc-middleware v1.2.2 // indirect
4760
github.com/grpc-ecosystem/grpc-gateway/v2 v2.3.0 // indirect
4861
github.com/hashicorp/hcl v1.0.0 // indirect
4962
github.com/jamesruan/sodium v0.0.0-20181216154042-9620b83ffeae // indirect
63+
github.com/jmespath/go-jmespath v0.4.0 // indirect
5064
github.com/josephspurrier/goversioninfo v1.4.0 // indirect
5165
github.com/kr/text v0.2.0 // indirect
66+
github.com/lib/pq v1.7.0 // indirect
5267
github.com/magiconair/properties v1.8.1 // indirect
5368
github.com/mattn/go-colorable v0.1.8 // indirect
5469
github.com/mattn/go-isatty v0.0.12 // indirect
70+
github.com/mattn/go-runewidth v0.0.10 // indirect
71+
github.com/mattn/go-sqlite3 v1.14.3 // indirect
72+
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
5573
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect
5674
github.com/mgutz/logxi v0.0.0-20161027140823-aebf8a7d67ab // indirect
5775
github.com/miekg/dns v1.1.41 // indirect
5876
github.com/mitchellh/mapstructure v1.4.3 // indirect
77+
github.com/montanaflynn/stats v0.6.3 // indirect
5978
github.com/pelletier/go-toml v1.8.0 // indirect
79+
github.com/prometheus/client_golang v1.11.1 // indirect
80+
github.com/prometheus/client_model v0.2.0 // indirect
81+
github.com/prometheus/common v0.26.0 // indirect
82+
github.com/prometheus/procfs v0.6.0 // indirect
6083
github.com/randall77/makefat v0.0.0-20210315173500-7ddd0e42c844 // indirect
84+
github.com/rivo/uniseg v0.2.0 // indirect
6185
github.com/sirupsen/logrus v1.7.0 // indirect
6286
github.com/spf13/afero v1.2.2 // indirect
6387
github.com/spf13/cast v1.3.1 // indirect
6488
github.com/spf13/jwalterweatherman v1.1.0 // indirect
6589
github.com/spf13/pflag v1.0.5 // indirect
6690
github.com/spf13/viper v1.7.1 // indirect
6791
github.com/subosito/gotenv v1.2.0 // indirect
68-
github.com/yuin/gopher-lua v1.1.1 // indirect
92+
github.com/technoweenie/multipartstreamer v1.0.1 // indirect
93+
github.com/yuin/gluamapper v0.0.0-20150323120927-d836955830e7 // indirect
6994
golang.org/x/image v0.10.0 // indirect
70-
golang.org/x/net v0.16.0 // indirect
71-
golang.org/x/sys v0.15.0 // indirect
72-
golang.org/x/text v0.14.0 // indirect
95+
golang.org/x/net v0.22.0 // indirect
96+
golang.org/x/sys v0.18.0 // indirect
7397
google.golang.org/genproto v0.0.0-20231002182017-d307bd883b97 // indirect
7498
google.golang.org/genproto/googleapis/api v0.0.0-20231002182017-d307bd883b97 // indirect
7599
google.golang.org/genproto/googleapis/rpc v0.0.0-20231002182017-d307bd883b97 // indirect
76100
google.golang.org/protobuf v1.31.0 // indirect
77101
gopkg.in/alecthomas/kingpin.v2 v2.2.6 // indirect
78102
gopkg.in/hraban/opus.v2 v2.0.0-20201025103112-d779bb1cc5a2 // indirect
103+
gopkg.in/xmlpath.v2 v2.0.0-20150820204837-860cbeca3ebc // indirect
79104
gopkg.in/yaml.v2 v2.4.0 // indirect
80105
)

0 commit comments

Comments
 (0)