We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9833e7b commit 3bda685Copy full SHA for 3bda685
html/frontend/src/App.js
@@ -120,16 +120,6 @@ const columns = [
120
},
121
];
122
123
-function generateClientsArray(data) {
124
- let clients = [];
125
- for (let [k, v] of Object.entries(data)) {
126
- v.hash = k;
127
- v.key = k;
128
- clients.push(v);
129
- }
130
- return clients;
131
-}
132
-
133
class App extends React.Component {
134
constructor(props) {
135
super(props);
lib/util/update/update.go
@@ -10,7 +10,7 @@ import (
10
"github.com/rhysd/go-github-selfupdate/selfupdate"
11
)
12
13
-const version = "1.3.6"
+const version = "1.3.8"
14
15
func ConfirmAndSelfUpdate() {
16
log.Info("Detecting the latest version...")
0 commit comments