File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1212[ assembly: AssemblyCulture ( "" ) ]
1313[ assembly: ComVisible ( false ) ]
1414[ assembly: Guid ( "15f73bff-4214-4629-b3aa-f9565a7e7633" ) ]
15- [ assembly: AssemblyVersion ( "1.1 " ) ]
16- [ assembly: AssemblyFileVersion ( "1.1 " ) ]
15+ [ assembly: AssemblyVersion ( "1.0.0.0 " ) ]
16+ [ assembly: AssemblyFileVersion ( "1.0.0.0 " ) ]
1717[ assembly: ComponentFactory ( typeof ( SteamWorldFactory ) ) ]
Original file line number Diff line number Diff line change 44using System . Reflection ;
55namespace LiveSplit . SteamWorldDig {
66 public class SteamWorldFactory : IComponentFactory {
7- public string ComponentName { get { return "SteamWorld Dig Randomizer v" + this . Version . ToString ( ) ; } }
7+ public string ComponentName { get { return "SteamWorld Dig Randomizer" ; } }
88 public string Description { get { return "Randomizer for SteamWorld Dig" ; } }
99 public ComponentCategory Category { get { return ComponentCategory . Control ; } }
1010 public IComponent Create ( LiveSplitState state ) { return new SteamWorldComponent ( ) ; }
1111 public string UpdateName { get { return this . ComponentName ; } }
1212 public string UpdateURL { get { return "https://raw.githubusercontent.com/clementgallet/LiveSplit.SteamWorldDig.Randomizer/master/" ; } }
1313 public string XMLURL { get { return this . UpdateURL + "Components/LiveSplit.SteamWorldDig.Randomizer.Updates.xml" ; } }
14- public Version Version { get { return Assembly . GetExecutingAssembly ( ) . GetName ( ) . Version ; } }
14+ public Version Version { get { return Version . Parse ( "1.2" ) ; } }
1515 }
1616}
You can’t perform that action at this time.
0 commit comments