diff --git a/Cargo.toml b/Cargo.toml index d4d0935..9f0eede 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "steam-rss" description = "Get RSS feeds for Steam games." -repository = "https://git.bauke.xyz/Bauke/steam-rss" +repository = "https://github.com/Bauke/steam-rss" license = "AGPL-3.0-or-later" version = "0.2.2" authors = ["Bauke "] diff --git a/README.md b/README.md index bfd9eab..0d9f990 100644 --- a/README.md +++ b/README.md @@ -19,10 +19,6 @@ With a working [Rust and Cargo](https://www.rust-lang.org/learn/get-started) ins cargo install steam-rss ``` -### Binaries - -Precompiled `x86_64-unknown-linux-gnu` binaries are available on the [Releases page](https://git.bauke.xyz/Bauke/steam-rss/releases). - ## Usage ``` @@ -49,4 +45,4 @@ Found a problem or want to request a new feature? Email [me@bauke.xyz](mailto:me ## License -Distributed under the [AGPL-3.0-or-later](https://spdx.org/licenses/AGPL-3.0-or-later.html) license, see [LICENSE](https://git.bauke.xyz/Bauke/steam-rss/src/branch/main/LICENSE) for more information. +Distributed under the [AGPL-3.0-or-later](https://spdx.org/licenses/AGPL-3.0-or-later.html) license, see [LICENSE](https://github.com/Bauke/steam-rss/blob/main/LICENSE) for more information. diff --git a/source/main.rs b/source/main.rs index f1035a0..b1c806d 100644 --- a/source/main.rs +++ b/source/main.rs @@ -1,18 +1,3 @@ -// Copyright (C) 2022 Bauke -// -// This program is free software: you can redistribute it and/or modify it under -// the terms of the GNU Affero General Public License as published by the Free -// Software Foundation, either version 3 of the License, or (at your option) any -// later version. -// -// This program is distributed in the hope that it will be useful, but WITHOUT -// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -// FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more -// details. -// -// You should have received a copy of the GNU Affero General Public License -// along with this program. If not, see . - //! # Steam RSS //! //! > **Get RSS feeds for Steam games.** @@ -100,7 +85,7 @@ fn main() -> Result<()> { let timeout = Duration::from_millis(args.timeout); let ureq_agent = ureq::AgentBuilder::new() - .user_agent("Steam Feeds (https://git.bauke.xyz/Bauke/steam-rss)") + .user_agent("Steam Feeds (https://github.com/Bauke/steam-rss)") .build(); let mut potential_feeds = vec![]; let mut feeds_to_output = vec![];