Skip to content

Commit

Permalink
Release 3.20.302 [nolog]
Browse files Browse the repository at this point in the history
  • Loading branch information
FluffierThanThou committed May 18, 2020
1 parent 9a0a49a commit aef2974
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion About/About.xml
Expand Up @@ -49,7 +49,7 @@ CoderChang65535: Update chinese translations
Téo Bouttier: French translation

<size=24>Version</size>
This is version 3.19.301, for RimWorld 1.1.2624.
This is version 3.20.302, for RimWorld 1.1.2624.

</description>
<supportedVersions>
Expand Down
4 changes: 2 additions & 2 deletions About/Manifest.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Manifest>
<version>3.19.296</version>
<version>3.20.302</version>
<manifestUri>https://raw.githubusercontent.com/fluffy-mods/WorkTab/1.1/About/Manifest.xml</manifestUri>
<downloadUri>https://github.com/fluffy-mods/WorkTab/releases/v3.19.296</downloadUri>
<downloadUri>https://github.com/fluffy-mods/WorkTab/releases/v3.20.302</downloadUri>
</Manifest>
Binary file modified Assemblies/FluffyUI.dll
Binary file not shown.
Binary file modified Assemblies/WorkTab.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion Readme.md
Expand Up @@ -70,4 +70,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 3.19.301, for RimWorld 1.1.2624.
This is version 3.20.302, for RimWorld 1.1.2624.
4 changes: 1 addition & 3 deletions Source/Extensions/Job_Extensions.cs
Expand Up @@ -32,9 +32,7 @@ private static void Initialize()

public static Texture2D StatusIcon( this JobDef job )
{
if (JobIcons.TryGetValue(job, out var icon))
return icon;
return DefaultJobIcon;
return JobIcons.TryGetValue(job, out var icon) ? icon : DefaultJobIcon;
}

public static string DefaultIconPath(this JobDef job)
Expand Down
2 changes: 1 addition & 1 deletion Source/Properties/AssemblyInfo.cs
Expand Up @@ -33,4 +33,4 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("3.0.0")]
[assembly: AssemblyFileVersion("3.19.301")]
[assembly: AssemblyFileVersion("3.20.302")]

0 comments on commit aef2974

Please sign in to comment.