Compare commits
2 Commits
166a8c9996
...
002b2e2d1f
Author | SHA1 | Date |
---|---|---|
Bauke | 002b2e2d1f | |
Bauke | 94bfc41ade |
35
README.md
35
README.md
|
@ -1,25 +1,22 @@
|
||||||
# Steam RSS
|
# Steam ❤️ RSS
|
||||||
|
|
||||||
> **Get RSS feeds for Steam games.**
|
> **Get RSS feeds for Steam games.**
|
||||||
|
|
||||||
*AGPL-3.0-or-later*
|
## Features
|
||||||
|
|
||||||
## `--help`
|
* 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.
|
||||||
|
|
||||||
```
|
## Binaries
|
||||||
USAGE:
|
|
||||||
steam-rss [OPTIONS]
|
|
||||||
|
|
||||||
OPTIONS:
|
Precompiled `x86_64-unknown-linux-gnu` binaries are available on the [Releases page](https://git.bauke.xyz/Bauke/steam-rss/releases).
|
||||||
-a, --appid <APPID> A game's AppID, can be used multiple times
|
|
||||||
-h, --help Print help information
|
## Feedback
|
||||||
--opml Output the feeds as OPML
|
|
||||||
-t, --timeout <TIMEOUT> The time in milliseconds to sleep between HTTP requests [default:
|
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.
|
||||||
250]
|
|
||||||
--url <URL> A game's store URL, can be used multiple times
|
## License
|
||||||
--user <USER> A person's steamcommunity.com ID or full URL, can be used multiple
|
|
||||||
times
|
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.
|
||||||
-v, --verify Verify potential feeds by downloading them and checking if they
|
|
||||||
return XML
|
|
||||||
-V, --version Print version information
|
|
||||||
```
|
|
||||||
|
|
|
@ -1,3 +1,18 @@
|
||||||
|
// 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
|
//! # Steam RSS
|
||||||
//!
|
//!
|
||||||
//! > **Get RSS feeds for Steam games.**
|
//! > **Get RSS feeds for Steam games.**
|
||||||
|
|
Loading…
Reference in New Issue