Skip to content

Commit b3b536c

Browse files
committed
Merge remote-tracking branch 'origin/main' into lsp-codemirror
2 parents 7c83617 + 7ccfc23 commit b3b536c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+1263
-494
lines changed

.github/CODEOWNERS

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
.github/CODEOWNERS @Acode-Foundation
1+
.github/CODEOWNERS @Acode-Foundation/acode
22

33
# workflows
44
.github/workflows/nightly-build.yml @unschooledgamer
55
.github/workflows/on-demand-preview-releases-PR.yml @unschooledgamer
6-
.github/workflows/community-release-notifier.yml @unschooledgamer
6+
.github/workflows/community-release-notifier.yml @unschooledgamer

.github/labeler.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
translations:
2+
- any:
3+
- changed-files:
4+
- any-glob-to-any-file: 'src/lang/*.json'
5+
6+
docs:
7+
- any:
8+
- changed-files:
9+
- any-glob-to-any-file: '**/*.md'
10+
11+
enhancement:
12+
- any:
13+
- head-branch: ['^feature', 'feature', '^feat', '^add']
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Add Pull Requests Labels
2+
on:
3+
pull_request_target:
4+
types: [opened, closed, ready_for_review]
5+
6+
jobs:
7+
add-labels:
8+
timeout-minutes: 5
9+
runs-on: ubuntu-latest
10+
11+
if: github.event.action == 'opened'
12+
permissions:
13+
contents: read
14+
pull-requests: write
15+
16+
steps:
17+
- uses: actions/labeler@v6

.github/workflows/ci.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,35 @@ jobs:
3333

3434
- name: Run Biome
3535
run: biome ci .
36+
37+
translation-check:
38+
name: Translation Check (On PR Only)
39+
timeout-minutes: 5
40+
runs-on: ubuntu-latest
41+
permissions:
42+
contents: read
43+
pull-requests: read
44+
if: github.event_name == 'pull_request'
45+
steps:
46+
- name: Checkout Repository
47+
uses: actions/checkout@v5
48+
- name: Use Node.js
49+
uses: actions/setup-node@v5
50+
with:
51+
cache: npm
52+
cache-dependency-path: '**/package-lock.json'
53+
54+
- name: Detect Changed Files
55+
uses: dorny/paths-filter@v3
56+
id: file-changes
57+
with:
58+
list-files: shell
59+
filters: |
60+
translation:
61+
- 'src/lang/*.json'
62+
token: ${{ secrets.GITHUB_TOKEN }}
63+
- name: Translation Files Check (if changed)
64+
if: steps.file-changes.outputs.translation == 'true'
65+
run: |
66+
npm ci --no-audit --no-fund
67+
npm run lang check

config.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,10 @@
3232
<preference name="AndroidLaunchMode" value="singleTask" />
3333
<preference name="prerendered-icon" value="false" />
3434
<preference name="androidxEnabled" value="true" />
35+
<preference name="GradlePluginKotlinEnabled" value="true" />
3536
<preference name="android-targetSdkVersion" value="35" />
3637

37-
38+
3839
<edit-config file="app/src/main/AndroidManifest.xml" mode="merge" target="/manifest/application">
3940
<application android:networkSecurityConfig="@xml/network_security_config" />
4041
<application android:hardwareAccelerated="true" />

package-lock.json

Lines changed: 4 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/lang/ar-ye.json

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,6 +303,26 @@
303303
"info-scroll-settings": "هذه الإعدادات تتحكم في خيارات التمرير بما في ذلك التفاف النص. ",
304304
"info-animation": "عطل الرسوم المتحركة اذا كان التطبيق يعمل ببطء",
305305
"info-quicktoolstriggermode": "غير هذه القيمة إذا لم تعمل أزرار الأدوات السريعة بشكل صحيح. ",
306+
"info-checkForAppUpdates": "Check for app updates automatically.",
307+
"info-quickTools": "Show or hide quick tools.",
308+
"info-showHiddenFiles": "Show hidden files and folders. (Start with .)",
309+
"info-all_file_access": "Enable access of /sdcard and /storage in terminal.",
310+
"info-fontSize": "The font size used to render text.",
311+
"info-fontFamily": "The font family used to render text.",
312+
"info-theme": "The color theme of the terminal.",
313+
"info-cursorStyle": "The style of the cursor when the terminal is focused.",
314+
"info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.",
315+
"info-fontWeight": "The font weight used to render non-bold text.",
316+
"info-cursorBlink": "Whether the cursor blinks.",
317+
"info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.",
318+
"info-tabStopWidth": "The size of tab stops in the terminal.",
319+
"info-letterSpacing": "The spacing in whole pixels between characters.",
320+
"info-imageSupport": "Whether images are supported in the terminal.",
321+
"info-fontLigatures": "Whether font ligatures are enabled in the terminal.",
322+
"info-confirmTabClose": "Ask for confirmation before closing terminal tabs.",
323+
"info-backup": "Creates a backup of the terminal installation.",
324+
"info-restore": "Restores a backup of the terminal installation.",
325+
"info-uninstall": "Uninstalls the terminal installation.",
306326
"owned": "مملوك",
307327
"api_error": "الخادم غير متاح حاليًا ،يرجى المحاولة لاحقًا. ",
308328
"installed": "مثبت",
@@ -433,5 +453,6 @@
433453
"prompt update check consent message": "Acode can check for new app updates when you're online. Enable update checks?",
434454
"keywords": "Keywords",
435455
"author": "Author",
436-
"filtered by": "Filtered by"
456+
"filtered by": "Filtered by",
457+
"clean install state": "Clean Install State"
437458
}

src/lang/be-by.json

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,6 +304,26 @@
304304
"info-scroll-settings": "Гэтыя налады змяшчаюць налады пракручвання, уключаючы перанос тэксту.",
305305
"info-animation": "Калі ў праграме ёсць затрымліванне, адключыце анімацыю.",
306306
"info-quicktoolstriggermode": "Калі кнопка ў хуткіх інструментах не працуе, паспрабуйце змяніць гэтае значэнне.",
307+
"info-checkForAppUpdates": "Check for app updates automatically.",
308+
"info-quickTools": "Show or hide quick tools.",
309+
"info-showHiddenFiles": "Show hidden files and folders. (Start with .)",
310+
"info-all_file_access": "Enable access of /sdcard and /storage in terminal.",
311+
"info-fontSize": "The font size used to render text.",
312+
"info-fontFamily": "The font family used to render text.",
313+
"info-theme": "The color theme of the terminal.",
314+
"info-cursorStyle": "The style of the cursor when the terminal is focused.",
315+
"info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.",
316+
"info-fontWeight": "The font weight used to render non-bold text.",
317+
"info-cursorBlink": "Whether the cursor blinks.",
318+
"info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.",
319+
"info-tabStopWidth": "The size of tab stops in the terminal.",
320+
"info-letterSpacing": "The spacing in whole pixels between characters.",
321+
"info-imageSupport": "Whether images are supported in the terminal.",
322+
"info-fontLigatures": "Whether font ligatures are enabled in the terminal.",
323+
"info-confirmTabClose": "Ask for confirmation before closing terminal tabs.",
324+
"info-backup": "Creates a backup of the terminal installation.",
325+
"info-restore": "Restores a backup of the terminal installation.",
326+
"info-uninstall": "Uninstalls the terminal installation.",
307327
"owned": "Ва ўласнасці",
308328
"api_error": "Сервер API не працуе, паспрабуйце праз некаторы час.",
309329
"installed": "Усталявана",
@@ -434,5 +454,6 @@
434454
"prompt update check consent message": "Acode can check for new app updates when you're online. Enable update checks?",
435455
"keywords": "Keywords",
436456
"author": "Author",
437-
"filtered by": "Filtered by"
457+
"filtered by": "Filtered by",
458+
"clean install state": "Clean Install State"
438459
}

src/lang/bn-bd.json

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,6 +303,26 @@
303303
"info-scroll-settings": "এই সেটিংস-এর মাঝে স্ক্রল সেটিংসের অন্তর্যুক্ত টেক্সট র‍্যাপ সেটিংস রয়েছে ",
304304
"info-animation": "যদি অ্যাপটি ধীরে কাজ করে, অ্যানিমেশন বন্ধ করুন।",
305305
"info-quicktoolstriggermode": "যদি quick tools এর বাটনগুলো কাজ না করে, এখানের মানগুলো পরিবর্তন করে চেষ্টা করুন।",
306+
"info-checkForAppUpdates": "Check for app updates automatically.",
307+
"info-quickTools": "Show or hide quick tools.",
308+
"info-showHiddenFiles": "Show hidden files and folders. (Start with .)",
309+
"info-all_file_access": "Enable access of /sdcard and /storage in terminal.",
310+
"info-fontSize": "The font size used to render text.",
311+
"info-fontFamily": "The font family used to render text.",
312+
"info-theme": "The color theme of the terminal.",
313+
"info-cursorStyle": "The style of the cursor when the terminal is focused.",
314+
"info-cursorInactiveStyle": "The style of the cursor when the terminal is not focused.",
315+
"info-fontWeight": "The font weight used to render non-bold text.",
316+
"info-cursorBlink": "Whether the cursor blinks.",
317+
"info-scrollback": "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.",
318+
"info-tabStopWidth": "The size of tab stops in the terminal.",
319+
"info-letterSpacing": "The spacing in whole pixels between characters.",
320+
"info-imageSupport": "Whether images are supported in the terminal.",
321+
"info-fontLigatures": "Whether font ligatures are enabled in the terminal.",
322+
"info-confirmTabClose": "Ask for confirmation before closing terminal tabs.",
323+
"info-backup": "Creates a backup of the terminal installation.",
324+
"info-restore": "Restores a backup of the terminal installation.",
325+
"info-uninstall": "Uninstalls the terminal installation.",
306326
"owned": "Owned",
307327
"api_error": "API সার্ভার ডাউন, দয়া করে পুনরায় চেষ্টা করুন",
308328
"installed": "ইনস্টল করা হয়েছে",
@@ -433,5 +453,6 @@
433453
"prompt update check consent message": "Acode can check for new app updates when you're online. Enable update checks?",
434454
"keywords": "Keywords",
435455
"author": "Author",
436-
"filtered by": "Filtered by"
456+
"filtered by": "Filtered by",
457+
"clean install state": "Clean Install State"
437458
}

0 commit comments

Comments
 (0)