Skip to content

Commit

Permalink
some readme updates and better colors for bubbles
Browse files Browse the repository at this point in the history
  • Loading branch information
cbartondock committed Jun 18, 2024
1 parent 8806a6e commit ef4c32a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 33 deletions.
15 changes: 3 additions & 12 deletions src/lang/en-US/markdown/steam-category.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,7 @@
# Steam category (optional) `[supports variables]`{.noWrap}
# Steam category (optional)`{.noWrap}

Hit the little plus sign to add your first category.

Also known as "tags", can be used to group apps in Steam. In order to set Steam category, the following syntax must be used:
```
${...}
```
For example, this is how you specify categories for "WII" and "GBA" (paired with "ROMS") category:
```
${WII}
```
```
${GBA}${ROMS}
```
This how "WII" category will look like in Steam:

![steamCategory](../../../assets/images/category-example.png)
Expand Down
18 changes: 3 additions & 15 deletions src/lang/en-US/markdown/user-accounts.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,7 @@
# User accounts (Optional)
# User accounts (Required)

This field is used to limit SRM's effects to specific user accounts, and takes values of the form:

```${XXX}${YYY}```

This will limit SRM's effects to accounts `XXX` and `YYY` (you may specify as many accounts as you like). Here `XXX` and `YYY` stand in for either:

* An `Account ID` (the number that appears as the directory name of your account directory in `/path/to/steam/userdata/`). For example, you would specify the account directory `userdata/56489124` like `${56489124}`.

* A `Steam Username` (the username you use to actually log in to Steam). For example you would specify the users `Banana` and `Apple` like `${Banana}${Apple}`.

You can mix and match: `${56489124}${Apple}` is fine.

You can also set this field using the `Accounts Global` environment variable found in settings via `${${accountsglobal}}`.
This field is used to limit SRM's effects to specific user accounts. It can be set to `Global` or over ridden per parser.

## Warning

If you have `Don't save account credentials on this computer` set in Steam, then there is no way for SRM to know your `Steam Username` and **you must only use** `Account IDs`. If you would like to use `Steam Usernames` here, go to `Steam > Settings > Settings` and disable `Don't save account credentials on this computer`, then restart both Steam and SRM.
If you have `Don't save account credentials on this computer` set in Steam, then there is no way for SRM to know your `Steam Username` and `Choose Accounts` will only be able to pull your `Steam IDs`. If you would like to use `Steam Usernames` here, go to `Steam > Settings > Settings` and disable `Don't save account credentials on this computer`, then restart both Steam and SRM.
4 changes: 1 addition & 3 deletions src/lang/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,8 @@ function getMarkdown(langPath: string) {
communityPresets: [require(`${langPath}/community-presets.md`)],
parserType: [require(`${langPath}/empty-parser-type.md`)],
configTitle: [require(`${langPath}/config-title.md`)],
steamCategory: [
steamCategories: [
require(`${langPath}/steam-category.md`),
require(`${langPath}/parser-variables.md`),
require(`${langPath}/parser-env-variables.md`)
],
controllerTemplates: [require(`${langPath}/controller-templates.md`)],
executableLocation: [
Expand Down
5 changes: 2 additions & 3 deletions src/renderer/styles/ng-bubbles.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,8 @@
padding: 5px;
justify-content: space-between;
align-items: center;
background: rgba(88, 224, 248, 0.555);
border-color: rgba(88, 224, 248, 1);
border: 2px;
background: rgba(14, 131, 20, 0.4);
border: solid 2px rgb(14, 131, 20);
color: white;
opacity: 0.8;
border-radius: 10px;
Expand Down

0 comments on commit ef4c32a

Please sign in to comment.