Skip to content

Commit

Permalink
v1.3.0
Browse files Browse the repository at this point in the history
Changes:

* No longer required to choose SteamApps or UserData folders.
* New games (Games other than CS:GO have not been vigorously tested.
They may not work.)
* Fixed "Cannot access the file" error.
* Fixed "Unknown command 'voice_fadeouttime'" error.
  • Loading branch information
SilentSys committed Mar 3, 2016
1 parent ad85c22 commit e77e0f4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion SLAM/Form1.vb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ Public Class Form1
Dim running As Boolean = False

Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
'DisableInterface()
RefreshPlayKey()

If My.Settings.UpdateCheck Then
Expand Down Expand Up @@ -106,7 +105,10 @@ Public Class Form1

If GameSelector.Items.Contains(My.Settings.LastGame) Then
GameSelector.Text = GameSelector.Items(GameSelector.Items.IndexOf(My.Settings.LastGame)).ToString
Else
GameSelector.Text = GameSelector.Items(0).ToString
End If

ReloadTracks(GetCurrentGame)
RefreshTrackList()

Expand Down Expand Up @@ -463,6 +465,7 @@ Public Class Form1
End If
End If

Thread.Sleep(Game.PollInterval)
Loop
Catch ex As Exception
LogError(ex)
Expand Down
4 changes: 2 additions & 2 deletions SLAM/My Project/AssemblyInfo.vb
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
' by using the '*' as shown below:
' <Assembly: AssemblyVersion("1.0.*")>

<Assembly: AssemblyVersion("1.2.2.0")>
<Assembly: AssemblyFileVersion("1.2.2.0")>
<Assembly: AssemblyVersion("1.3.0.0")>
<Assembly: AssemblyFileVersion("1.3.0.0")>

0 comments on commit e77e0f4

Please sign in to comment.