Skip to content
Closed
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
2 changes: 2 additions & 0 deletions .github/workflows/dotnet-test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
name: .NET Tests
permissions:
contents: read
on:
push:
branches: [ "main" ]
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/translations-test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
name: Translation integrity
permissions:
contents: read
pull-requests: write
on:
pull_request:
branches: [ "main" ]
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/update-icons.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ on:
- cron: 0 0 * * *
workflow_dispatch:

permissions:
contents: write
pull-requests: write

jobs:
load-icons:
if: github.repository == 'marticliment/UniGetUI'
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/update-tolgee.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: Tolgee CI

permissions:
contents: read
pull-requests: write

on:
schedule:
- cron: 0 0 * * *
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/winget-prerelease.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: Publish prereleases to WinGet

permissions:
contents: read

on:
release:
types: [published] # Trigger on published release (includes prereleases)
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/winget-stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
types: [released]
workflow_dispatch:

permissions:
contents: read

jobs:
publish:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion src/UniGetUI/Assets/Symbols/Font/demo-files/demo.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ document.body.addEventListener("click", function(e) {
testDrive = document.getElementById('testDrive'),
testText = document.getElementById('testText');
function updateTest() {
testDrive.innerHTML = testText.value || String.fromCharCode(160);
testDrive.textContent = testText.value || String.fromCharCode(160);
if (window.icomoonLiga) {
window.icomoonLiga(testDrive);
}
Expand Down
Loading