update
Some checks failed
Build Gurty / Build Gurty (, ubuntu-latest, linux, x86_64-unknown-linux-gnu) (push) Failing after 1m33s
Build GurtCA / Build GurtCA (, ubuntu-latest, linux, x86_64-unknown-linux-gnu) (push) Failing after 11m20s
Build GDExtension / Build GDExtension (libgurt_godot.so, ubuntu-latest, linux, x86_64-unknown-linux-gnu) (push) Failing after 16m9s
Build Flumi / Build Flumi (Linux, 4.4.1, ubuntu-latest, linux) (push) Failing after 2h10m11s
Build Flumi / Build Flumi (Windows Desktop, 4.4.1, windows-latest, windows) (push) Has been cancelled
Build GDExtension / Build GDExtension (gurt_godot.dll, windows-latest, windows, x86_64-pc-windows-msvc) (push) Has been cancelled
Build GurtCA / Build GurtCA (.exe, windows-latest, windows, x86_64-pc-windows-msvc) (push) Has been cancelled
Build Gurty / Build Gurty (.exe, windows-latest, windows, x86_64-pc-windows-msvc) (push) Has been cancelled

This commit is contained in:
2025-11-06 20:02:53 +08:00
parent 3f79614850
commit a508e3cefd
48 changed files with 136 additions and 137 deletions

View File

@@ -75,7 +75,7 @@ end
local function loadTLDs()
print('Loading available TLDs...')
local response = fetch('gurt://dns.web/tlds')
local response = fetch('lw://dns.web/tlds')
if response:ok() then
tlds = response:json()
@@ -91,7 +91,7 @@ local function checkAuth()
if authToken then
print('Found auth token, checking validity...')
local response = fetch('gurt://dns.web/auth/me', {
local response = fetch('lw://dns.web/auth/me', {
headers = {
Authorization = 'Bearer ' .. authToken
}
@@ -127,7 +127,7 @@ local function submitDomain(name, tld)
hideError('domain-error')
print('Submitting domain: ' .. name .. '.' .. tld)
local response = fetch('gurt://dns.web/domain', {
local response = fetch('lw://dns.web/domain', {
method = 'POST',
headers = {
['Content-Type'] = 'application/json',
@@ -157,7 +157,7 @@ end
local function createInvite()
print('Creating invite code...')
local response = fetch('gurt://dns.web/auth/invite', {
local response = fetch('lw://dns.web/auth/invite', {
method = 'POST',
headers = {
Authorization = 'Bearer ' .. authToken
@@ -184,7 +184,7 @@ local function redeemInvite(code)
hideError('redeem-error')
print('Redeeming invite code: ' .. code)
local response = fetch('gurt://dns.web/auth/redeem-invite', {
local response = fetch('lw://dns.web/auth/redeem-invite', {
method = 'POST',
headers = {
['Content-Type'] = 'application/json',