Skip to content

Commit

Permalink
Merge pull request #79 from rule110-io/v1.0.1-beta
Browse files Browse the repository at this point in the history
bugfix: not showing more than 8 seeds/files
  • Loading branch information
WizardOfCodez authored Jan 23, 2022
2 parents 39ec24c + 03085d3 commit 3c79d9c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "surge",
"author": "Rule110",
"private": true,
"version": "1.0.0-beta",
"version": "1.0.1-beta",
"scripts": {
"serve": "vue-cli-service build --watch --mode production",
"build": "vue-cli-service build",
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/store/modules/files.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ const getDefaultState = () => {
orderBy: "FileName",
isDesc: true,
skip: 0,
get: 8,
get: 1000000,
},
remoteFilesConfig: {
topicName: "",
search: "",
orderBy: "SeederCount",
isDesc: true,
skip: 0,
get: 8,
get: 1000000,
},
activeFile: {},
selectedFiles: [],
Expand Down
2 changes: 1 addition & 1 deletion project.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"name": "Christian Busch",
"email": "[email protected]"
},
"version": "1.0.0-beta",
"version": "1.0.1-beta",
"binaryname": "surge",
"frontend": {
"dir": "frontend",
Expand Down
2 changes: 1 addition & 1 deletion surge.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "Surge"
#define MyAppVersion "1.0.0-beta"
#define MyAppVersion "1.0.1-beta"
#define MyAppPublisher "Rule110"
#define MyAppURL "https://getsurge.io/"
#define MyAppExeName "surge.exe"
Expand Down

0 comments on commit 3c79d9c

Please sign in to comment.