Compare commits

..

No commits in common. "main" and "v1.0.1" have entirely different histories.
main ... v1.0.1

4 changed files with 1 additions and 36 deletions

View file

@ -1,30 +0,0 @@
name: goreleaser
on:
pull_request:
push:
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
-
name: Set up Go
uses: actions/setup-go@v2
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
with:
# either 'goreleaser' (default) or 'goreleaser-pro'
distribution: goreleaser
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Your GoReleaser Pro key, if you are using the 'goreleaser-pro' distribution
# GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }}

View file

@ -159,4 +159,3 @@ func printbanner() {
` `
fmt.Println(banner) fmt.Println(banner)
} }

View file

@ -123,8 +123,6 @@ const app = new Vue({
}, },
nextPage(){ nextPage(){
if(this.curPage<this.maxPage){ if(this.curPage<this.maxPage){
this.showLoading = true;
this.host_result={matches:[]}
this.curPage++; this.curPage++;
var params = new URLSearchParams(); var params = new URLSearchParams();
params.append("search",this.search); params.append("search",this.search);
@ -155,8 +153,6 @@ const app = new Vue({
}, },
prevPage(){ prevPage(){
if(this.curPage>this.minPage){ if(this.curPage>this.minPage){
this.showLoading = true;
this.host_result={matches:[]}
this.curPage--; this.curPage--;
var params = new URLSearchParams(); var params = new URLSearchParams();
params.append("search",this.search); params.append("search",this.search);