Skip to content

Commit f1af486

Browse files
authored
Merge pull request #29 from TaloDev/develop
Release 0.7.0
2 parents 584903f + b64f6f9 commit f1af486

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/create-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
cp -a Assets/. Release/Samples~/Playground
2929
3030
- name: Copy to package repo (main branch)
31-
uses: cpina/github-action-push-to-another-repository@main
31+
uses: tudddorrr/github-action-push-to-another-repository@main
3232
if: "!contains(github.event.head_commit.message, '--no-release') && !contains(github.event.head_commit.message, 'pre.')"
3333
env:
3434
API_TOKEN_GITHUB: ${{ secrets.PAT }}
@@ -40,7 +40,7 @@ jobs:
4040
commit-message: ${{ env.COMMIT_MESSAGE }}
4141

4242
- name: Copy to package repo (version branch)
43-
uses: cpina/github-action-push-to-another-repository@main
43+
uses: tudddorrr/github-action-push-to-another-repository@main
4444
env:
4545
API_TOKEN_GITHUB: ${{ secrets.PAT }}
4646
with:

Packages/com.trytalo.talo/Runtime/BaseAPI.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ protected async Task<string> Call(Uri uri, string method, string content = "")
2828
www.SetRequestHeader("Authorization", $"Bearer {manager.settings.accessKey}");
2929
www.SetRequestHeader("Content-Type", "application/json");
3030
www.SetRequestHeader("Accept", "application/json");
31+
www.SetRequestHeader("X-Talo-Dev-Build", Debug.isDebugBuild ? "1" : "0");
32+
www.SetRequestHeader("X-Talo-Include-Dev-Data", Debug.isDebugBuild ? "1" : "0");
3133

3234
var op = www.SendWebRequest();
3335

Packages/com.trytalo.talo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "com.trytalo.talo",
3-
"version": "0.6.0",
3+
"version": "0.7.0",
44
"displayName": "Talo Game Services",
55
"description": "Talo (https://trytalo.com) is an open-source game backend with services designed to help you build games faster. You can currently:\n\n- Identify players\n- Store persistent data across players\n- Track events (levelling up, finding loot, etc)\n- Display high scores with leaderboards\n- Store and load player saves",
66
"unity": "2019.1",

0 commit comments

Comments
 (0)