Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master' into impatient
Browse files Browse the repository at this point in the history
  • Loading branch information
vt-idiot committed Jan 15, 2024
2 parents 5bbbc63 + 82a7b92 commit 3eca75f
Show file tree
Hide file tree
Showing 95 changed files with 1,327 additions and 816 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@ jobs:
steps:

- name: Install Go
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: 1.19.x
go-version: 1.21.x

- name: Install Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '12'

- name: Checkout code
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4

- name: Check code formatting using gofmt
uses: Jerome1337/gofmt-action@v1.0.5
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
with:
submodules: 'true'
fetch-depth: 0

- name: Set up QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3

- name: Build UI
run: cd ui && yarn install && yarn build
Expand Down
2 changes: 1 addition & 1 deletion .gitpod.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ENV HOME=/home/gitpod
WORKDIR $HOME
USER gitpod

ENV GO_VERSION=1.19.6 \
ENV GO_VERSION=1.21.4 \
GOPATH=$HOME/go-packages \
GOROOT=$HOME/go
RUN export PATH=$(echo "$PATH" | sed -e 's|:/workspace/go/bin||' -e 's|:/home/gitpod/go/bin||' -e 's|:/home/gitpod/go-packages/bin||')
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
GORELEASER_CROSS_VERSION ?= v1.19.6
GORELEASER_CROSS_VERSION ?= v1.21.4

SYSROOT_DIR ?= sysroots
SYSROOT_ARCHIVE ?= sysroots.tar.bz2
Expand Down
19 changes: 17 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ Ask your questions and suggest features on [Discord](https://discord.gg/wdCHXAG)

Make sure you have following installed:

- Go 1.19
- Go 1.21
- Node.js 12.x
- Yarn 1.17.x
- air (run `go install github.com/cosmtrek/air@latest` outside project directory)
Expand Down Expand Up @@ -134,4 +134,19 @@ o - previous actor
p - next actor
left arrow - cycles backwards in gallery
right arrow - cycles forward in gallery
esc - closes details pane
esc - closes details pane

#### using Command Line Arguments
| Command line parameter | Type | Description |
|------------------------|-------|--------------
| `--enableLocalStorage` | boolean |Use local folder to store application data|
| `--app_dir` | String|path to the application directory|
| `--cache_dir` | String|path to the tempoarary scraper cache directory|
| `--imgproxy_dir` | String|path to the imageproxy directory|
| `--search_dir` | String| path to the Search Index directory|
| `--preview_dir` | String| path to the Scraper Cache directory|
| `--scriptsheatmap_dir` | String| path to the scripts_heatmap directory|
| `--myfiles_dir` | String| path to the myfiles directory for serving users own content (eg images|
| `--databaseurl` | String|override default database path|
| `--web_port` | Int| override default Web Page port 9999|
| `--ws_addr` | String| override default Websocket address from the default 0.0.0.0:9998|
50 changes: 26 additions & 24 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
module github.com/xbapps/xbvr

go 1.19
go 1.21

require (
github.com/ProtonMail/go-appdir v1.1.0
github.com/PuerkitoBio/goquery v1.8.1
github.com/abbot/go-http-auth v0.4.0
github.com/anacrolix/ffprobe v1.1.0
github.com/araddon/dateparse v0.0.0-20210429162001-6b43995a97de
github.com/avast/retry-go/v4 v4.5.0
github.com/avast/retry-go/v4 v4.5.1
github.com/blevesearch/bleve/v2 v2.3.10
github.com/bregydoc/gtranslate v0.0.0-20200913051839-1bd07f6c1fc5
github.com/creasty/defaults v1.7.0
github.com/darwayne/go-timecode v1.1.0
github.com/disintegration/imaging v1.6.2
github.com/djherbis/times v1.5.0
github.com/djherbis/times v1.6.0
github.com/dustin/go-humanize v1.0.1
github.com/emicklei/go-restful-openapi/v2 v2.9.1
github.com/emicklei/go-restful/v3 v3.11.0
github.com/emicklei/go-restful/v3 v3.11.2
github.com/gammazero/nexus/v3 v3.2.1
github.com/getlantern/systray v1.2.2
github.com/go-openapi/spec v0.20.9
github.com/go-resty/resty/v2 v2.7.0
github.com/go-openapi/spec v0.20.14
github.com/go-resty/resty/v2 v2.11.0
github.com/go-test/deep v1.1.0
github.com/gocolly/colly/v2 v2.1.0
github.com/gorilla/mux v1.8.0
github.com/gorilla/mux v1.8.1
github.com/gosimple/slug v1.13.1
github.com/gowww/log v1.0.0
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79
Expand All @@ -37,7 +37,7 @@ require (
github.com/lucasb-eyer/go-colorful v1.2.0
github.com/marcsauter/single v0.0.0-20201009143647-9f8d81240be2
github.com/markphelps/optional v0.11.0
github.com/mattn/go-sqlite3 v1.14.17
github.com/mattn/go-sqlite3 v1.14.19
github.com/mcuadros/go-version v0.0.0-20190830083331-035f6764e8d2
github.com/mholt/archiver v3.1.1+incompatible
github.com/mozillazg/go-slugify v0.2.0
Expand All @@ -46,24 +46,26 @@ require (
github.com/peterbourgon/diskv v2.0.1+incompatible
github.com/pkg/errors v0.9.1
github.com/putdotio/go-putio v1.7.1
github.com/robertkrimen/otto v0.2.1
github.com/robertkrimen/otto v0.3.0
github.com/robfig/cron/v3 v3.0.1
github.com/rs/cors v1.9.0
github.com/rs/cors v1.10.1
github.com/sirupsen/logrus v1.9.3
github.com/skratchdot/open-golang v0.0.0-20200116055534-eef842397966
github.com/thoas/go-funk v0.9.3
github.com/tidwall/gjson v1.16.0
github.com/tidwall/gjson v1.17.0
github.com/x-cray/logrus-prefixed-formatter v0.5.2
github.com/xo/dburl v0.16.0
golang.org/x/crypto v0.14.0
golang.org/x/net v0.17.0
golang.org/x/oauth2 v0.11.0
golang.org/x/sys v0.13.0
golang.org/x/text v0.13.0
github.com/xo/dburl v0.20.2
golang.org/x/crypto v0.18.0
golang.org/x/net v0.20.0
golang.org/x/oauth2 v0.16.0
golang.org/x/sys v0.16.0
golang.org/x/text v0.14.0
gopkg.in/gormigrate.v1 v1.6.0
willnorris.com/go/imageproxy v0.11.3-0.20230802154432-da55ecefd3a9
willnorris.com/go/imageproxy v0.11.3-0.20231113231555-ef50c1f9a64e
)

require gopkg.in/yaml.v3 v3.0.1 // indirect

require (
github.com/RoaringBitmap/roaring v1.2.3 // indirect
github.com/andybalholm/cascadia v1.3.1 // indirect
Expand All @@ -72,7 +74,7 @@ require (
github.com/antchfx/xpath v1.1.10 // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/bits-and-blooms/bitset v1.2.0 // indirect
github.com/blevesearch/bleve_index_api v1.0.6
github.com/blevesearch/bleve_index_api v1.1.4
github.com/blevesearch/geo v0.1.18 // indirect
github.com/blevesearch/go-porterstemmer v1.0.3 // indirect
github.com/blevesearch/gtreap v0.1.1 // indirect
Expand All @@ -96,9 +98,9 @@ require (
github.com/getlantern/hex v0.0.0-20190417191902-c6586a6fe0b7 // indirect
github.com/getlantern/hidden v0.0.0-20190325191715-f02dbb02be55 // indirect
github.com/getlantern/ops v0.0.0-20190325191751-d70cb0d6f85f // indirect
github.com/go-openapi/jsonpointer v0.19.5 // indirect
github.com/go-openapi/jsonreference v0.20.0 // indirect
github.com/go-openapi/swag v0.19.15 // indirect
github.com/go-openapi/jsonpointer v0.20.2 // indirect
github.com/go-openapi/jsonreference v0.20.4 // indirect
github.com/go-openapi/swag v0.22.6 // indirect
github.com/go-sql-driver/mysql v1.5.0 // indirect
github.com/go-stack/stack v1.8.0 // indirect
github.com/gobwas/glob v0.2.3 // indirect
Expand All @@ -112,7 +114,7 @@ require (
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/josharian/intern v1.0.0 // indirect
github.com/kennygrant/sanitize v1.2.4 // indirect
github.com/mailru/easyjson v0.7.6 // indirect
github.com/mailru/easyjson v0.7.7 // indirect
github.com/mattn/go-colorable v0.1.1 // indirect
github.com/mattn/go-isatty v0.0.7 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
Expand Down Expand Up @@ -143,7 +145,7 @@ require (
github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8 // indirect
go.etcd.io/bbolt v1.3.7 // indirect
golang.org/x/image v0.10.0 // indirect
golang.org/x/term v0.13.0 // indirect
golang.org/x/term v0.16.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/protobuf v1.31.0 // indirect
gopkg.in/sourcemap.v1 v1.0.5 // indirect
Expand Down
Loading

0 comments on commit 3eca75f

Please sign in to comment.