Skip to content

Commit

Permalink
v1.2 Updated readme and RC
Browse files Browse the repository at this point in the history
  • Loading branch information
GrantJL committed Dec 19, 2023
1 parent 2ffabfe commit d5b77a1
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 9 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ The plugin is configurable:
- Rumble
- Snowday

Plugin configuration is automatically saved to file, and restore on load.

## Usage
**Important:** Make sure you have `Show Player MMR on scoreboard` check in the Bakkesmod settings, under the Ranked tab. Also check `Show MMR in casual playlists` for casual mode support.

Expand Down Expand Up @@ -55,6 +57,7 @@ Additionally, you can bind the `jlg_lobby_rank_toggle` command in the BakkesMod
- Team colours
- Rank colours
- Platform colours
- Added persistent storage (save config to file)

### 1.1.4
- Removed default `P` keybind (was bound to toggle the lobby table)
Expand Down
16 changes: 8 additions & 8 deletions lobby-ranks/lobby-ranks.rc
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ END


/////////////////////////////////////////////////////////////////////////////
// Norwegian Bokmål (Norway) resources
// Norwegian Bokm�l (Norway) resources

#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_NOR)
LANGUAGE LANG_NORWEGIAN, SUBLANG_NORWEGIAN_BOKMAL
Expand All @@ -62,8 +62,8 @@ LANGUAGE LANG_NORWEGIAN, SUBLANG_NORWEGIAN_BOKMAL
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH, VERSION_BUILD
PRODUCTVERSION VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH, VERSION_BUILD
FILEVERSION VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH, VERSION_BUILD
PRODUCTVERSION VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH, VERSION_BUILD
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -78,13 +78,13 @@ BEGIN
BEGIN
BLOCK "041404b0"
BEGIN
VALUE "CompanyName", "TODO: <Company name>"
VALUE "FileDescription", "TODO: <File description>"
VALUE "CompanyName", "GrantJL (Github)"
VALUE "FileDescription", "LobbyRanks BakkesMod plugin"
VALUE "FileVersion", VERSION_FULL
VALUE "InternalName", "lobby-ranks.dll"
VALUE "LegalCopyright", "Copyright (C) 2020"
VALUE "LegalCopyright", "Copyright (C) 2023"
VALUE "OriginalFilename", "lobby-ranks.dll"
VALUE "ProductName", "TODO: <Product name>"
VALUE "ProductName", "LobbyRanks"
VALUE "ProductVersion", VERSION_FULL
END
END
Expand All @@ -94,7 +94,7 @@ BEGIN
END
END

#endif // Norwegian Bokmål (Norway) resources
#endif // Norwegian Bokm�l (Norway) resources
/////////////////////////////////////////////////////////////////////////////


Expand Down
1 change: 1 addition & 0 deletions lobby-ranks/lobby-ranks.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@
<ClInclude Include="IMGUI\imstb_truetype.h" />
<ClInclude Include="lobby-ranks.h" />
<ClInclude Include="Player.h" />
<ClInclude Include="resource.h" />
<ClInclude Include="Table.h" />
<ClInclude Include="types.h" />
<ClInclude Include="util.h" />
Expand Down
3 changes: 3 additions & 0 deletions lobby-ranks/lobby-ranks.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,9 @@
<ClInclude Include="util.h">
<Filter>Source Files\util</Filter>
</ClInclude>
<ClInclude Include="resource.h">
<Filter>Resource Files</Filter>
</ClInclude>
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="lobby-ranks.rc">
Expand Down
2 changes: 1 addition & 1 deletion lobby-ranks/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#define VERSION_MAJOR 1
#define VERSION_MINOR 2
#define VERSION_PATCH 0
#define VERSION_BUILD 61
#define VERSION_BUILD 0

#define VERSION_FULL stringify(VERSION_MAJOR) "." stringify(VERSION_MINOR) "." stringify(VERSION_PATCH) "." stringify(VERSION_BUILD)

Expand Down

0 comments on commit d5b77a1

Please sign in to comment.