Skip to content

Commit 03c1e70

Browse files
committed
fix broken files
1 parent 0b60b46 commit 03c1e70

File tree

6 files changed

+22
-21
lines changed

6 files changed

+22
-21
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
.DS_Store
2+
.bundle
23

34
# Folders generated by Jekyll
45
/_site/

_data/assets/colyseus.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
"zip": "https://github.com/colyseus/colyseus-defold/archive/refs/tags/0.15.5.zip"
7272
},
7373
{
74-
"message": "## New Auth API (https://github.com/colyseus/colyseus/releases/tag/0.15.15)\n\n### Define callback for Auth state change:\n\n```lua\nclient.auth:on_change(function (auth_data)\n\tif auth_data.user ~= null then\n\t\t-- logged in!\n\telse\n\t\t-- logged out!\n\tend\nend);\n```\n\n### Methods:\n\n- `client.auth:get_user_data()`\n- `client.auth:register_with_email_and_password()`\n- `client.auth:sign_in_with_email_and_password()`\n- `client.auth:sign_in_anonymously()`\n- `client.auth:send_password_reset_email()`\n- `client.auth:sign_out()`\n- (\u274c OAuth not yet implemented) `client.auth:sign_in_with_provider()` \n\n### Example\n\n```lua\nclient.auth.sign_in_with_email_and_password(\"[email protected]\", \"123456\", function(err, auth_data)\n if err ~= nil then\n -- err.status\n -- err.message\n else\n print(auth_data.token) -- token\n pprint(auth_data.user) -- user data\n end\nend)\n```",
74+
"message": "## New Auth API (https://github.com/colyseus/colyseus/releases/tag/0.15.15)\n\n### Define callback for Auth state change:\n\n```lua\nclient.auth:on_change(function (auth_data)\n\tif auth_data.user ~= null then\n\t\t-- logged in!\n\telse\n\t\t-- logged out!\n\tend\nend);\n```\n\n### Methods:\n\n- `client.auth:get_user_data()`\n- `client.auth:register_with_email_and_password()`\n- `client.auth:sign_in_with_email_and_password()`\n- `client.auth:sign_in_anonymously()`\n- `client.auth:send_password_reset_email()`\n- `client.auth:sign_out()`\n- ( OAuth not yet implemented) `client.auth:sign_in_with_provider()` \n\n### Example\n\n```lua\nclient.auth.sign_in_with_email_and_password(\"[email protected]\", \"123456\", function(err, auth_data)\n if err ~= nil then\n -- err.status\n -- err.message\n else\n print(auth_data.token) -- token\n pprint(auth_data.user) -- user data\n end\nend)\n```",
7575
"published_at": "2024-01-16T15:03:10Z",
7676
"tag": "0.15.4",
7777
"zip": "https://github.com/colyseus/colyseus-defold/archive/refs/tags/0.15.4.zip"
@@ -191,7 +191,7 @@
191191
"zip": "https://github.com/colyseus/colyseus-defold/archive/refs/tags/0.11.1.zip"
192192
},
193193
{
194-
"message": "Version 0.11 is finally here! \ud83c\udf89 \nSee migration guide: https://docs.colyseus.io/migrating/0.11/",
194+
"message": "Version 0.11 is finally here! 🎉 \nSee migration guide: https://docs.colyseus.io/migrating/0.11/",
195195
"published_at": "2019-08-23T02:35:11Z",
196196
"tag": "0.11.0",
197197
"zip": "https://github.com/colyseus/colyseus-defold/archive/refs/tags/0.11.0.zip"
@@ -312,4 +312,4 @@
312312
],
313313
"timestamp": 1567163518.0,
314314
"website_url": "https://colyseus.io"
315-
}
315+
}

0 commit comments

Comments
 (0)