Skip to content

Commit

Permalink
Merge pull request #92 from ruedap/ver.5.0.9.0
Browse files Browse the repository at this point in the history
Ver.5.0.9.0
  • Loading branch information
ruedap committed Mar 30, 2018
2 parents 5670abc + efb7309 commit bcd472d
Show file tree
Hide file tree
Showing 83 changed files with 522 additions and 19 deletions.
Binary file modified Font-Awesome.alfredworkflow
Binary file not shown.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ You can incrementally search for [Font Awesome icons](https://fontawesome.com/ic

Download **[Font-Awesome.alfredworkflow](https://github.com/ruedap/alfred-font-awesome-workflow/raw/master/Font-Awesome.alfredworkflow)** and import to [Alfred 2 or 3](http://www.alfredapp.com/) (requires Powerpack).

The current supported version is **Font Awesome 5.0.8 Free**. Previous versions are available [here](https://github.com/ruedap/alfred-font-awesome-workflow/releases).
The current supported version is **Font Awesome 5.0.9 Free**. Previous versions are available [here](https://github.com/ruedap/alfred-font-awesome-workflow/releases).


## Usage
Expand Down
2 changes: 1 addition & 1 deletion command.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ func (cmd *command) put(flags map[string]string) int {
_, err = fmt.Fprint(ost, str)
case url != "":
icon := ics.findByUnicode(url)[0]
_, err = fmt.Fprint(ost, "http://fontawesome.io/icon/"+icon.ID+"/")
_, err = fmt.Fprint(ost, "https://fontawesome.com/icons/"+icon.ID)
default:
err = errors.New("invalid flag argument")
}
Expand Down
2 changes: 1 addition & 1 deletion command_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ func TestCommand_put_URLFlag(t *testing.T) {
}

actual := outStream.String()
expected := "http://fontawesome.io/icon/plus/"
expected := "https://fontawesome.com/icons/plus"
if !strings.Contains(actual, expected) {
t.Errorf("expected %v to eq %v", actual, expected)
}
Expand Down
2 changes: 1 addition & 1 deletion icons_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ func TestIcons_find_AllIcons(t *testing.T) {
fi := testIconsFindHelper([]string{""})

actual := len(fi)
expected := 830
expected := 873
if actual != expected {
t.Errorf("expected %v to eq %v", actual, expected)
}
Expand Down
Loading

0 comments on commit bcd472d

Please sign in to comment.