Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -501,31 +501,31 @@ void renderGitHubButtons(Sink mainSink) {

renderGitHubButton(
mainSink,
"https://github.com/jimbethancourt/refactorfirst",
"https://github.com/refactorfirst/refactorfirst",
"octicon-star",
"true",
"Star jimbethancourt/refactorfirst on GitHub",
"Star refactorfirst/refactorfirst on GitHub",
"Star");
renderGitHubButton(
mainSink,
"https://github.com/jimbethancourt/refactorfirst/fork",
"https://github.com/refactorfirst/refactorfirst/fork",
"octicon-repo-forked",
"true",
"Fork jimbethancourt/refactorfirst on GitHub",
"Fork refactorfirst/refactorfirst on GitHub",
"Fork");
renderGitHubButton(
mainSink,
"https://github.com/jimbethancourt/refactorfirst/subscription",
"https://github.com/refactorfirst/refactorfirst/subscription",
"octicon-eye",
"true",
"Watch jimbethancourt/refactorfirst on GitHub",
"Watch refactorfirst/refactorfirst on GitHub",
"Watch");
renderGitHubButton(
mainSink,
"https://github.com/jimbethancourt/refactorfirst/issue",
"https://github.com/refactorfirst/refactorfirst/issue",
"octicon-issue-opened",
"false",
"Issue jimbethancourt/refactorfirst on GitHub",
"Issue refactorfirst/refactorfirst on GitHub",
"Issue");
renderGitHubButton(
mainSink,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -375,13 +375,13 @@ void renderGithubButtons(StringBuilder stringBuilder) {
stringBuilder.append("Show RefactorFirst some ❤️");
stringBuilder.append("<br/>");
stringBuilder.append(
"<a class=\"github-button\" href=\"https://github.com/jimbethancourt/refactorfirst\" data-icon=\"octicon-star\" data-size=\"large\" data-show-count=\"true\" aria-label=\"Star jimbethancourt/refactorfirst on GitHub\">Star</a>");
"<a class=\"github-button\" href=\"https://github.com/refactorfirst/refactorfirst\" data-icon=\"octicon-star\" data-size=\"large\" data-show-count=\"true\" aria-label=\"Star refactorfirst/refactorfirst on GitHub\">Star</a>");
stringBuilder.append(
"<a class=\"github-button\" href=\"https://github.com/jimbethancourt/refactorfirst/fork\" data-icon=\"octicon-repo-forked\" data-size=\"large\" data-show-count=\"true\" aria-label=\"Fork jimbethancourt/refactorfirst on GitHub\">Fork</a>");
"<a class=\"github-button\" href=\"https://github.com/refactorfirst/refactorfirst/fork\" data-icon=\"octicon-repo-forked\" data-size=\"large\" data-show-count=\"true\" aria-label=\"Fork refactorfirst/refactorfirst on GitHub\">Fork</a>");
stringBuilder.append(
"<a class=\"github-button\" href=\"https://github.com/jimbethancourt/refactorfirst/subscription\" data-icon=\"octicon-eye\" data-size=\"large\" data-show-count=\"true\" aria-label=\"Watch jimbethancourt/refactorfirst on GitHub\">Watch</a>");
"<a class=\"github-button\" href=\"https://github.com/refactorfirst/refactorfirst/subscription\" data-icon=\"octicon-eye\" data-size=\"large\" data-show-count=\"true\" aria-label=\"Watch refactorfirst/refactorfirst on GitHub\">Watch</a>");
stringBuilder.append(
"<a class=\"github-button\" href=\"https://github.com/jimbethancourt/refactorfirst/issues\" data-icon=\"octicon-issue-opened\" data-size=\"large\" data-show-count=\"false\" aria-label=\"Issue jimbethancourt/refactorfirst on GitHub\">Issue</a>");
"<a class=\"github-button\" href=\"https://github.com/refactorfirst/refactorfirst/issues\" data-icon=\"octicon-issue-opened\" data-size=\"large\" data-show-count=\"false\" aria-label=\"Issue refactorfirst/refactorfirst on GitHub\">Issue</a>");
stringBuilder.append(
"<a class=\"github-button\" href=\"https://github.com/sponsors/jimbethancourt\" data-icon=\"octicon-heart\" data-size=\"large\" aria-label=\"Sponsor @jimbethancourt on GitHub\">Sponsor</a>");
stringBuilder.append("</div>");
Expand Down