diff --git a/LICENSE.txt b/LICENSE.txt index 29fad8e..59628a0 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2018 Paul Liverman III +Copyright (c) 2018-2020 Rose Liverman Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/ReadMe.md b/ReadMe.md index 0079a50..6ef8ca2 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -98,8 +98,8 @@ handle itself: * `proxy` (string) An [HTTP proxy](https://github.com/Guard13007/insecure-proxy) is used if luajit-request is unavailable, unless `proxy == false`. By default, - `https://45.55.113.149:16343` is used, which is running on a DigitalOcean - VPS I own. You can specify a different proxy here. + `http://insecure-proxy.tangentfox.com` is used. You can specify a different + proxy here. * `thread_channel` (string) itchy uses a channel named `itchy` for version checking. You can call itchy's functions with different data tables and it will use different threads & channels for each. You can also specify a channel diff --git a/itchy.lua b/itchy.lua index 36e08a0..dfaa029 100644 --- a/itchy.lua +++ b/itchy.lua @@ -106,7 +106,7 @@ thread = function(...) local start start = function(data) if data.proxy == nil and (not data.url) then - data.proxy = "http://45.55.113.149:16343" + data.proxy = "http://insecure-proxy.tangentfox.com" end if not (data.channel) then require("love.system") diff --git a/itchy.moon b/itchy.moon index 16ebc27..e91f367 100644 --- a/itchy.moon +++ b/itchy.moon @@ -71,7 +71,7 @@ thread = (...) -> -- data should be a table of information start = (data) -> - data.proxy = "http://45.55.113.149:16343" if data.proxy == nil and (not data.url) + data.proxy = "http://insecure-proxy.tangentfox.com" if data.proxy == nil and (not data.url) -- channel can be autodetected if not specified unless data.channel