Skip to content

Commit 317b522

Browse files
committed
fix: appimage metadata not detected
1 parent f4fcf59 commit 317b522

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

internal/github/github.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ type githubRelease struct {
1717
TagName string `json:"tag_name"`
1818
}
1919

20-
// AvailableUpdate returns the version of the latest release and reports wether the update is newer.
20+
// AvailableUpdate returns the version of the latest release and reports whether the update is newer.
2121
func AvailableUpdate(owner, repo, current string) (string, bool, error) {
2222
v1, err := version.NewVersion(current)
2323
if err != nil {

internal/jsondocument/jsondocument.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ func (j *JSONDocument) ChildUIDs(uid widget.TreeNodeID) []widget.TreeNodeID {
128128
return ids2uids(j.ids[id])
129129
}
130130

131-
// IsBranch reports wether a node is a branch.
131+
// IsBranch reports whether a node is a branch.
132132
// This can be used directly in the tree widget isBranch() function.
133133
func (j *JSONDocument) IsBranch(uid widget.TreeNodeID) bool {
134134
id := uid2id(uid)

tools/build_appimage.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ dest="temp.Appdir"
99
source="temp.Source"
1010

1111
# get fynemeta
12-
wget https://github.com/ErikKalkoken/fynemeta/releases/download/v0.1.0/fynemeta-0.1.0-linux-amd64.tar.gz -O fynemeta.tar.gz
12+
wget https://github.com/ErikKalkoken/fynemeta/releases/download/v0.1.1/fynemeta-0.1.1-linux-amd64.tar.gz -O fynemeta.tar.gz
1313
tar xf fynemeta.tar.gz
1414
rm fynemeta.tar.gz
1515

0 commit comments

Comments
 (0)