Skip to content

Commit

Permalink
Json data moved to github
Browse files Browse the repository at this point in the history
  • Loading branch information
h3h3 committed Sep 6, 2014
1 parent 7bcb376 commit d103dc3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions LSharpAssemblyProvider/Data.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,17 @@
"Name":"LeagueSharp.Common",
"Url":"https://github.com/LeagueSharp/LeagueSharpCommon",
"Category":"Library",
"Description":"LeagueSharp.Common"
"Description":"LeagueSharp.Common",
"Points":"5",
"Votes":"1"
},
{
"Name":"clipper_library",
"Url":"https://github.com/Esk0r/LeagueSharp/raw/master/Evade/References/clipper_library.dll",
"Category":"Library",
"Description":"clipper_library"
"Description":"clipper_library",
"Points":"5",
"Votes":"1"
},
{
"Name":"Evade",
Expand Down
2 changes: 1 addition & 1 deletion LSharpAssemblyProvider/Model/DataService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public DataService()

using (var client = new WebClient())
{
var result = client.DownloadString(new Uri("https://dl.dropboxusercontent.com/u/54555251/Data.json"));
var result = client.DownloadString(new Uri("https://raw.githubusercontent.com/h3h3/LSharpAssemblyProvider/master/LSharpAssemblyProvider/Data.json"));
var data = JsonConvert.DeserializeObject<List<AssemblyEntity>>(result);

foreach (var entity in data)
Expand Down

0 comments on commit d103dc3

Please sign in to comment.