Skip to content

Add Workshop Publisher support for Insurgency #43

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: Version0.73
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions Crowbar/Core/SteamAppInfos/InsurgencySteamAppInfo.vb
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
Imports System.ComponentModel
Imports System.IO
Imports Steamworks

Public Class InsurgencySteamAppInfo
Inherits SteamAppInfoBase

Public Sub New()
MyBase.New()

Me.ID = New AppId_t(222880)
Me.Name = "Insurgency"
Me.UsesSteamUGC = True
Me.CanUseContentFolderOrFile = True
'Me.ContentFileExtensionsAndDescriptions.Add("vpk", "Source Engine VPK Files")
Me.TagsControlType = GetType(InsurgencyTagsUserControl)
End Sub

End Class
2 changes: 2 additions & 0 deletions Crowbar/Core/SteamAppInfos/SteamAppInfoBase.vb
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ Public Class SteamAppInfoBase
steamAppInfos.Add(anAppInfo)
anAppInfo = New HuntDownTheFreemanSteamAppInfo()
steamAppInfos.Add(anAppInfo)
anAppInfo = New InsurgencySteamAppInfo()
steamAppInfos.Add(anAppInfo)
anAppInfo = New JBModSteamAppInfo()
steamAppInfos.Add(anAppInfo)
anAppInfo = New Left4Dead2SteamAppInfo()
Expand Down
10 changes: 10 additions & 0 deletions Crowbar/Crowbar.vbproj
Original file line number Diff line number Diff line change
Expand Up @@ -451,6 +451,7 @@
<Compile Include="Core\SteamAppInfos\CodenameCureSteamAppInfo.vb" />
<Compile Include="Core\SteamAppInfos\FirefightReloadedSteamAppInfo.vb" />
<Compile Include="Core\SteamAppInfos\HuntDownTheFreemanSteamAppInfo.vb" />
<Compile Include="Core\SteamAppInfos\InsurgencySteamAppInfo.vb" />
<Compile Include="Core\SteamAppInfos\JBModSteamAppInfo.vb" />
<Compile Include="Core\SteamAppInfos\WilsonChroniclesSteamAppInfo.vb" />
<Compile Include="Core\SteamAppInfos\MilitaryConflictVietnamSteamAppInfo.vb" />
Expand Down Expand Up @@ -767,6 +768,12 @@
<Compile Include="Widgets\Publish SteamApp Tags\HuntDownTheFreemanTagsUserControl.vb">
<SubType>UserControl</SubType>
</Compile>
<Compile Include="Widgets\Publish SteamApp Tags\InsurgencyTagsUserControl.Designer.vb">
<DependentUpon>InsurgencyTagsUserControl.vb</DependentUpon>
</Compile>
<Compile Include="Widgets\Publish SteamApp Tags\InsurgencyTagsUserControl.vb">
<SubType>UserControl</SubType>
</Compile>
<Compile Include="Widgets\Publish SteamApp Tags\JBModTagsUserControl.Designer.vb">
<DependentUpon>JBModTagsUserControl.vb</DependentUpon>
</Compile>
Expand Down Expand Up @@ -933,6 +940,9 @@
</EmbeddedResource>
<EmbeddedResource Include="Widgets\Publish SteamApp Tags\HuntDownTheFreemanTagsUserControl.resx">
<DependentUpon>HuntDownTheFreemanTagsUserControl.vb</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Widgets\Publish SteamApp Tags\InsurgencyTagsUserControl.resx">
<DependentUpon>InsurgencyTagsUserControl.vb</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Widgets\Publish SteamApp Tags\JBModTagsUserControl.resx">
<DependentUpon>JBModTagsUserControl.vb</DependentUpon>
Expand Down
Loading