diff --git a/src/lang/en-US/markdown/steam-category.md b/src/lang/en-US/markdown/steam-category.md index 079073dab9..1068f5e52b 100644 --- a/src/lang/en-US/markdown/steam-category.md +++ b/src/lang/en-US/markdown/steam-category.md @@ -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) diff --git a/src/lang/en-US/markdown/user-accounts.md b/src/lang/en-US/markdown/user-accounts.md index 94d50de9da..9de2fe6bbb 100644 --- a/src/lang/en-US/markdown/user-accounts.md +++ b/src/lang/en-US/markdown/user-accounts.md @@ -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. diff --git a/src/lang/index.ts b/src/lang/index.ts index a70a2ed9f9..bc48f31ec9 100644 --- a/src/lang/index.ts +++ b/src/lang/index.ts @@ -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: [ diff --git a/src/renderer/styles/ng-bubbles.component.scss b/src/renderer/styles/ng-bubbles.component.scss index 1732f99f95..530c4c519d 100644 --- a/src/renderer/styles/ng-bubbles.component.scss +++ b/src/renderer/styles/ng-bubbles.component.scss @@ -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;