Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/ExportGodot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ on:
- release
- staging

permissions:
contents: write

env:
BUTLER_API_KEY: ${{ secrets.BUTLER_API_KEY }}
ITCHIO_USERNAME: ${{ secrets.ITCHIO_USERNAME }}
Expand Down Expand Up @@ -103,7 +106,7 @@ jobs:
retention-days: ${{ matrix.platform == 'osx' && 30 || 90 }}

- name: Upload desktop builds to GitHub Releases
if: matrix.release_tag != ''
if: matrix.release_tag != '' && startsWith(github.ref, 'refs/tags/')
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion autoload/TranslationManager.gd
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const LOCALE_TO_LABEL := {
"da": "Dansk",
}

const COMPLETENESS_THRESHOLD := 0.85
const COMPLETENESS_THRESHOLD := 0.80

var overall_tr_progress := { "en": 1.0 }
var lesson_tr_data := {}
Expand Down
Loading