diff --git a/dist/packages_template.lua b/dist/packages_template.lua index 69621675..74d510f8 100644 --- a/dist/packages_template.lua +++ b/dist/packages_template.lua @@ -1,6 +1,6 @@ return { xword = { - download = "https://github.com/mrichards42/xword/releases/download/{VERSION}/{OS_FILE}", + download = "https://github.com/jpd236/xword/releases/download/{VERSION}/{OS_FILE}", name = "XWord", version = "{VERSION}", }, diff --git a/scripts/xword/pkgmgr/updater/init.lua b/scripts/xword/pkgmgr/updater/init.lua index 7cfcdb2a..ea41012e 100644 --- a/scripts/xword/pkgmgr/updater/init.lua +++ b/scripts/xword/pkgmgr/updater/init.lua @@ -26,7 +26,7 @@ if not task.is_main then return P end -- Check for an update. Callback is called after the task executes local osname = wx.__WXMSW__ and 'windows' or wx.__WXMAC__ and 'mac' or 'linux' -P.packages_url = "https://mrichards42.github.io/xword/packages_"..osname..".lua" +P.packages_url = "https://jpd236.github.io/xword/packages_"..osname..".lua" function P.CheckForUpdates(callback) -- Make sure we have a directory for the updates file