Skip to content

Commit

Permalink
chore: fix github links
Browse files Browse the repository at this point in the history
  • Loading branch information
SeaDve committed Feb 4, 2024
1 parent 814bd45 commit add23d8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ The main features of Delineate include the following:
GNOME Builder is the environment used for developing this application. It can use Flatpak manifests to create a consistent building and running environment cross-distro. Thus, it is highly recommended you use it.

1. Download [GNOME Builder](https://flathub.org/apps/details/org.gnome.Builder).
2. In Builder, click the "Clone Repository" button at the bottom, using `https://github.com/SeaDve/Delineate.git` as the URL.
2. In Builder, click the "Clone Repository" button at the bottom, using `https://github.com/SeaDve/delineate.git` as the URL.
3. Click the build button at the top once the project is loaded.

### Meson
Expand Down
2 changes: 1 addition & 1 deletion data/io.github.seadve.Delineate.metainfo.xml.in.in
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<url type="homepage">https://github.com/SeaDve/delineate</url>
<url type="bugtracker">https://github.com/SeaDve/delineate/issues</url>
<url type="translate">https://hosted.weblate.org/projects/kooha/delineate</url>
<url type="vcs-browser">https://github.com/SeaDve/Mousai</url>
<url type="vcs-browser">https://github.com/SeaDve/delineate</url>
<url type="donation">https://seadve.github.io/donate</url>
<content_rating type="oars-1.0"/>
<releases>
Expand Down
6 changes: 3 additions & 3 deletions src/about.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ pub fn present_window(transient_for: Option<&impl IsA<gtk::Window>>) {
.artists(["Brage Fuglseth https://bragefuglseth.dev"])
// Translators: Replace "translator-credits" with your names. Put a comma between.
.translator_credits(gettext("translator-credits"))
.issue_url("https://github.com/SeaDve/Delineate/issues")
.support_url("https://github.com/SeaDve/Delineate/discussions")
.issue_url("https://github.com/SeaDve/delineate/issues")
.support_url("https://github.com/SeaDve/delineate/discussions")
.debug_info(debug_info())
.debug_info_filename("delineate-debug-info")
.build();
Expand All @@ -32,7 +32,7 @@ pub fn present_window(transient_for: Option<&impl IsA<gtk::Window>>) {
&gettext("Donate (Buy Me a Coffee)"),
"https://www.buymeacoffee.com/seadve",
);
win.add_link(&gettext("GitHub"), "https://github.com/SeaDve/Delineate");
win.add_link(&gettext("GitHub"), "https://github.com/SeaDve/delineate");
win.add_link(
&gettext("Translate"),
"https://hosted.weblate.org/projects/seadve/delineate",
Expand Down

0 comments on commit add23d8

Please sign in to comment.