Skip to content

Commit

Permalink
Release 1.3.54 [nolog]
Browse files Browse the repository at this point in the history
  • Loading branch information
FluffierThanThou committed Apr 25, 2020
1 parent 85d97dc commit 42864d6
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 8 deletions.
2 changes: 1 addition & 1 deletion About/About.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Recently used commands will be immediately shown. Type a few letters to show com
None

<size=24>Version</size>
This is version 1.2.52, for RimWorld 1.1.2610.
This is version 1.3.54, for RimWorld 1.1.2610.

</description>
<url>https://steamcommunity.com/id/Fluffy/myworkshopfiles/?appid=294100</url>
Expand Down
Binary file modified Assemblies/CommandPalette.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ Show your appreciation by buying me a coffee (or contribute towards a nice singl
[![I Have a Black Dog](https://i.ibb.co/ss59Rwy/New-Project-2.png)](https://www.youtube.com/watch?v=XiCrniLQGYc)

# Version
This is version 1.2.52, for RimWorld 1.1.2610.
This is version 1.3.54, for RimWorld 1.1.2610.
16 changes: 12 additions & 4 deletions Source/ModConfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,23 @@
"name": "Command Palette",
"version": {
"major": 1,
"minor": 2,
"build": 52
"minor": 3,
"build": 54
},
"git_user": "fluffy-mods",
"git_repo": "CommandPalette",
"visibility": 0,
"packageId": "fluffy.commandpalette",
"changenote": "",
"changenotes": [],
"changenote": "2020-04-25 :: Fluffy :: add toggle for opening architect, hide disallowed commands from recent list, set default scale to 100%",
"changenotes": [
{
"repo": "CommandPalette",
"hash": "85d97dca3fa238941fa19aff49f73172aa5fe0e4",
"date": "2020-04-25",
"author": "Fluffy",
"message": "add toggle for opening architect, hide disallowed commands from recent list, set default scale to 100%"
}
],
"contributors": {},
"tags": [
"1.1"
Expand Down
4 changes: 3 additions & 1 deletion Source/PaletteWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -235,11 +235,13 @@ public void DoPalette( Rect canvas, float fade )

public void Select( Designator designator, GizmoResult result )
{
Find.MainTabsRoot.SetCurrentTab( MainButtonDefOf.Architect, false );
if ( CommandPalette.Settings.OpenArchitect
&& MainButtonDefOf.Architect.TabWindow is MainTabWindow_Architect architectTab
&& DesignatorsByCategory.TryGetValue( designator, out ArchitectCategoryTab tab ) )
{
Find.MainTabsRoot.SetCurrentTab( MainButtonDefOf.Architect, false );
architectTab.selectedDesPanel = tab;
}
_recentlyUsed.Add( designator );
designator.ProcessInput( result.InteractEvent );
}
Expand Down
2 changes: 1 addition & 1 deletion Source/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0")]
[assembly: AssemblyFileVersion("1.2.52")]
[assembly: AssemblyFileVersion("1.3.54")]

0 comments on commit 42864d6

Please sign in to comment.