Skip to content
This repository has been archived by the owner on Aug 23, 2020. It is now read-only.

Commit

Permalink
Added role names for "/n adc f" or something and updated icon
Browse files Browse the repository at this point in the history
  • Loading branch information
Juri Adams committed Sep 23, 2017
1 parent 059724d commit 00bf7f8
Show file tree
Hide file tree
Showing 12 changed files with 41 additions and 21 deletions.
Binary file modified .vs/TimerTrackerLoL/v15/.suo
Binary file not shown.
Binary file modified .vs/TimerTrackerLoL/v15/sqlite3/storage.ide
Binary file not shown.
Binary file added Icon.ico
Binary file not shown.
Binary file removed TimerTrackerIcon.ico
Binary file not shown.
6 changes: 3 additions & 3 deletions TimerTrackerLoL/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@
<configuration>
<configSections>
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="TimerTracker.My.MySettings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
<section name="SpellTracker.My.MySettings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
</sectionGroup>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>
<userSettings>
<TimerTracker.My.MySettings>
<SpellTracker.My.MySettings>
<setting name="textpath" serializeAs="String">
<value />
</setting>
</TimerTracker.My.MySettings>
</SpellTracker.My.MySettings>
</userSettings>
</configuration>
29 changes: 24 additions & 5 deletions TimerTrackerLoL/Form1.vb
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ Public Class InGameTracker
Try

Dim keywords = {
"atrox", "aurelion", "akali", "ahri", "mumu", "ali", "nivia", "annie", "azir", "ashe",
"atrox", "aurelion", "akali", "ahri", "mumu", "ali", "nivia", "annie", "azir", "ashe", "adc",
"bard", "blitz", "brand", "braum",
"cait", "cass", "cho", "cork", "cami",
"dar", "dia", "mundo", "dr", "drav",
Expand All @@ -108,17 +108,17 @@ Public Class InGameTracker
"gal", "grag", "gang", "gp", "gar", "gnar", "grav",
"hec", "heim",
"ill", "ire", "ivern",
"jar", "j4", "jay", "jan", "jax", "jhin", "jinx",
"jar", "j4", "jay", "jan", "jax", "jhin", "jinx", "jung",
"kali", "karm", "kart", "kas", "kat", "ken", "kha", "kog", "kay", "kin", "kled", "kayn",
"lb", "lebl", "lee", "leo", "lis", "luc", "lux", "lu",
"malz", "malp", "mao", "morg", "mord", "mf", "miss",
"malz", "malp", "mao", "morg", "mord", "mf", "miss", "mid",
"nam", "nas", "nau", "nid", "noc", "nu",
"ola", "ori", "orn",
"pan", "pop",
"qui",
"ram", "rakan", "rek", "reng", "renek", "rum", "riv", "ryz",
"sej", "she", "shy", "sion", "ska", "swa", "syn", "sha", "sin", "siv", "son", "sor", "raka",
"tar", "tru", "tk", "tah", "tal", "tee", "thre", "tri", "try", "tf", "twi", "twit", "tali",
"sej", "she", "shy", "sion", "ska", "swa", "syn", "sha", "sin", "siv", "son", "sor", "raka", "supp",
"tar", "tru", "tk", "tah", "tal", "tee", "thre", "tri", "try", "tf", "twi", "twit", "tali", "top",
"ur", "udy",
"vel", "vi", "vik", "vlad", "vol", "var", "vay", "vei",
"war", "ww", "wu",
Expand All @@ -140,6 +140,25 @@ Public Class InGameTracker
Dim champName As String = lifesaver.Remove(lifesaver.Length - 1)

#Region "champnames"
If champName.StartsWith("supp") Then
champName = "Support "
End If

If champName.StartsWith("adc") Then
champName = "ADC "
End If

If champName.StartsWith("mid") Then
champName = "Mid "
End If

If champName.StartsWith("jung") Then
champName = "Jungle "
End If

If champName.StartsWith("top") Then
champName = "Top "
End If

If champName.StartsWith("orn") Then
champName = "Ornn "
Expand Down
Binary file added TimerTrackerLoL/Icon.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion TimerTrackerLoL/My Project/Application.Designer.vb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions TimerTrackerLoL/My Project/Resources.Designer.vb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions TimerTrackerLoL/My Project/Settings.Designer.vb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 7 additions & 6 deletions TimerTrackerLoL/Timer Tracker.vbproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{CB53D98D-B028-4BD2-ADC3-48C596FC585C}</ProjectGuid>
<OutputType>WinExe</OutputType>
<StartupObject>TimerTracker.My.MyApplication</StartupObject>
<RootNamespace>TimerTracker</RootNamespace>
<AssemblyName>Timer Tracker</AssemblyName>
<StartupObject>SpellTracker.My.MyApplication</StartupObject>
<RootNamespace>SpellTracker</RootNamespace>
<AssemblyName>Spell Tracker</AssemblyName>
<FileAlignment>512</FileAlignment>
<MyType>WindowsForms</MyType>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
Expand All @@ -21,7 +21,7 @@
<DefineDebug>true</DefineDebug>
<DefineTrace>true</DefineTrace>
<OutputPath>bin\Debug\</OutputPath>
<DocumentationFile>Timer Tracker.xml</DocumentationFile>
<DocumentationFile>Spell Tracker.xml</DocumentationFile>
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
Expand All @@ -31,7 +31,7 @@
<DefineTrace>true</DefineTrace>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DocumentationFile>Timer Tracker.xml</DocumentationFile>
<DocumentationFile>Spell Tracker.xml</DocumentationFile>
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
</PropertyGroup>
<PropertyGroup>
Expand All @@ -47,7 +47,7 @@
<OptionInfer>On</OptionInfer>
</PropertyGroup>
<PropertyGroup>
<ApplicationIcon>TimerTrackerIcon.ico</ApplicationIcon>
<ApplicationIcon>Icon.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
Expand Down Expand Up @@ -131,6 +131,7 @@
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<Content Include="Icon.ico" />
<Content Include="TimerTrackerIcon.ico" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />
Expand Down
Binary file removed TimerTrackerLoL/TimerTrackerIcon.ico
Binary file not shown.

0 comments on commit 00bf7f8

Please sign in to comment.