Compare commits
No commits in common. "002b2e2d1faa52b283e56da2d9e171dad06053a8" and "166a8c9996ca147c0ebb3356296ceecdd2dc631f" have entirely different histories.
002b2e2d1f
...
166a8c9996
35
README.md
35
README.md
|
@ -1,22 +1,25 @@
|
|||
# Steam ❤️ RSS
|
||||
# Steam RSS
|
||||
|
||||
> **Get RSS feeds for Steam games.**
|
||||
|
||||
## Features
|
||||
*AGPL-3.0-or-later*
|
||||
|
||||
* Get RSS feeds from a game's AppID or store page.
|
||||
* Get RSS feeds for all games from a user profile.
|
||||
* Verify potential feeds by checking if they return `text/xml`.
|
||||
* Output feeds as an OPML file for easy importing.
|
||||
## `--help`
|
||||
|
||||
## Binaries
|
||||
```
|
||||
USAGE:
|
||||
steam-rss [OPTIONS]
|
||||
|
||||
Precompiled `x86_64-unknown-linux-gnu` binaries are available on the [Releases page](https://git.bauke.xyz/Bauke/steam-rss/releases).
|
||||
|
||||
## Feedback
|
||||
|
||||
Found a problem or want to request a new feature? Email [me@bauke.xyz](mailto:me@bauke.xyz) and I'll see what I can do for you.
|
||||
|
||||
## License
|
||||
|
||||
Distributed under the [AGPL-3.0-or-later](https://spdx.org/licenses/AGPL-3.0-or-later.html) license, see [LICENSE](LICENSE) for more information.
|
||||
OPTIONS:
|
||||
-a, --appid <APPID> A game's AppID, can be used multiple times
|
||||
-h, --help Print help information
|
||||
--opml Output the feeds as OPML
|
||||
-t, --timeout <TIMEOUT> The time in milliseconds to sleep between HTTP requests [default:
|
||||
250]
|
||||
--url <URL> A game's store URL, can be used multiple times
|
||||
--user <USER> A person's steamcommunity.com ID or full URL, can be used multiple
|
||||
times
|
||||
-v, --verify Verify potential feeds by downloading them and checking if they
|
||||
return XML
|
||||
-V, --version Print version information
|
||||
```
|
||||
|
|
|
@ -1,18 +1,3 @@
|
|||
// Copyright (C) 2022 Bauke <me@bauke.xyz>
|
||||
//
|
||||
// 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 <https://www.gnu.org/licenses/>.
|
||||
|
||||
//! # Steam RSS
|
||||
//!
|
||||
//! > **Get RSS feeds for Steam games.**
|
||||
|
|
Loading…
Reference in New Issue