From cb093e14644c05d1e8e6336869ed943700d1e9cf Mon Sep 17 00:00:00 2001 From: Philip Kristoffersen Date: Sat, 2 Oct 2021 10:10:11 +0200 Subject: [PATCH] Rename project to BoilR --- .github/workflows/release_on_v_tag.yml | 8 +++---- Cargo.lock | 32 +++++++++++++------------- Cargo.toml | 4 ++-- Readme.md | 4 ++-- 4 files changed, 24 insertions(+), 24 deletions(-) diff --git a/.github/workflows/release_on_v_tag.yml b/.github/workflows/release_on_v_tag.yml index 39dd382..82c7b59 100644 --- a/.github/workflows/release_on_v_tag.yml +++ b/.github/workflows/release_on_v_tag.yml @@ -31,13 +31,13 @@ jobs: matrix: include: - os: ubuntu-latest - file: target/release/steam_shortcuts_sync - asset_name: linux_steam_shortcuts_sync + file: target/release/boilr + asset_name: linux_BoilR args: --best --lzma strip: true - os: windows-latest - file: target/release/steam_shortcuts_sync.exe - asset_name: windows_steam_shortcuts_sync.exe + file: target/release/boilr.exe + asset_name: windows_BoilR.exe args: -9 strip: false steps: diff --git a/Cargo.lock b/Cargo.lock index 44acbec..3c49bb3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -83,6 +83,22 @@ dependencies = [ "wyz", ] +[[package]] +name = "boilr" +version = "0.2.7" +dependencies = [ + "config", + "failure", + "fl2rust", + "fltk", + "reqwest", + "serde 1.0.130", + "serde_json", + "steam_shortcuts_util", + "steamgriddb_api", + "tokio", +] + [[package]] name = "bumpalo" version = "3.7.0" @@ -1084,22 +1100,6 @@ version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" -[[package]] -name = "steam_shortcuts_sync" -version = "0.2.0" -dependencies = [ - "config", - "failure", - "fl2rust", - "fltk", - "reqwest", - "serde 1.0.130", - "serde_json", - "steam_shortcuts_util", - "steamgriddb_api", - "tokio", -] - [[package]] name = "steam_shortcuts_util" version = "1.1.2" diff --git a/Cargo.toml b/Cargo.toml index 66d6548..25d70fb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] -name = "steam_shortcuts_sync" -version = "0.2.0" +name = "boilr" +version = "0.2.7" edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/Readme.md b/Readme.md index 914664e..ad47db9 100644 --- a/Readme.md +++ b/Readme.md @@ -1,4 +1,4 @@ -# Steam Shortcuts Sync +# BoilR ## Description @@ -24,7 +24,7 @@ Feel free to submit issues and pull requests ## Getting started -* Download the latest release from the [releases page](https://github.com/PhilipK/steam_shortcuts_sync/releases). +* Download the latest release from the [releases page](https://github.com/PhilipK/BoilR/releases). * Place it in a folder of your choice. * Create a file called `config.toml` in the same folder as the executable. * Write your [SteamGridDB API key](https://www.steamgriddb.com/profile/preferences/api) in the `config.toml` file (see the [config section](#configuration)).