Skip to content

Commit b808f1a

Browse files
committed
Merge remote-tracking branch 'origin/main' into lsp-codemirror
2 parents 10a7c26 + ef36994 commit b808f1a

File tree

6 files changed

+126
-55
lines changed

6 files changed

+126
-55
lines changed

.github/workflows/nightly-build.yml

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -170,13 +170,28 @@
170170
run: |
171171
node utils/storage_manager.mjs y
172172
npm run build paid dev apk
173+
mv platforms/android/app/build/outputs/apk/debug/app-debug.apk platforms/android/app/build/outputs/apk/debug/app-debug-normal.apk
173174
echo "VERSION: $UPDATED_VERSION" >> $GITHUB_STEP_SUMMARY
174-
175+
175176
- name: Upload APK Artifact
176177
uses: actions/upload-artifact@v4
177178
with:
178179
name: app-debug-${{ env.GIT_COMMIT }}
179-
path: platforms/android/app/build/outputs/apk/debug/app-debug.apk
180+
path: platforms/android/app/build/outputs/apk/debug/app-debug-normal.apk
181+
182+
- name: Run npm build paid dev apk fdroid (for F-Droid)
183+
if: ${{ !inputs.is_PR }}
184+
run: |
185+
node utils/storage_manager.mjs y
186+
npm run build paid dev apk fdroid
187+
mv platforms/android/app/build/outputs/apk/debug/app-debug.apk platforms/android/app/build/outputs/apk/debug/app-debug-fdroid.apk
188+
189+
- name: Upload APK Artifact
190+
uses: actions/upload-artifact@v4
191+
if: ${{ !inputs.is_PR }}
192+
with:
193+
name: app-debug-fdroid-${{ env.GIT_COMMIT }}
194+
path: platforms/android/app/build/outputs/apk/debug/app-debug-fdroid.apk
180195

181196
- name: remove keystore and build.json
182197
run: |
@@ -218,7 +233,8 @@
218233
name: ${{ env.UPDATED_VERSION }}
219234
tag_name: ${{ env.UPDATED_VERSION }}
220235
files: |
221-
platforms/android/app/build/outputs/apk/debug/app-debug.apk
236+
platforms/android/app/build/outputs/apk/debug/app-debug-normal.apk
237+
platforms/android/app/build/outputs/apk/debug/app-debug-fdroid.apk
222238
body: |
223239
Automated Nightly (pre-release) Releases for Today
224240

CHANGELOG.md

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,60 @@
11
# Change Log
22

3+
## v1.11.7 (966)
4+
5+
* revert: sidebar/style.scss changes to fix collapse folders by @UnschooledGamer in https://github.com/Acode-Foundation/Acode/pull/1572
6+
* Terminal Service by @RohitKushvaha01 in https://github.com/Acode-Foundation/Acode/pull/1570
7+
* fix(i18n): fix typo in ./src/lang/id-id.json by @hyperz111 in https://github.com/Acode-Foundation/Acode/pull/1577
8+
* fix: browser download by @RohitKushvaha01 in https://github.com/Acode-Foundation/Acode/pull/1587
9+
* Terminal initrc support by @RohitKushvaha01 in https://github.com/Acode-Foundation/Acode/pull/1590
10+
* chore(i18n): update de-de.json by @Mr-Update in https://github.com/Acode-Foundation/Acode/pull/1600
11+
* Updated & Added Missing ar-ye.json (Arabic) translations by @Hussain96o in https://github.com/Acode-Foundation/Acode/pull/1601
12+
* Restore terminal tabs by @bajrangCoder in https://github.com/Acode-Foundation/Acode/pull/1592
13+
- fix: terminal font issue
14+
- Breaking change: Changed default terminal configs
15+
* feat: service on/off by @RohitKushvaha01 in https://github.com/Acode-Foundation/Acode/pull/1602
16+
* fix: service stop on app exit by @RohitKushvaha01 in https://github.com/Acode-Foundation/Acode/pull/1603
17+
* fix: ED25519 SSH keys not working by @UnschooledGamer in https://github.com/Acode-Foundation/Acode/pull/1595
18+
* CI: Nightly Builds by @UnschooledGamer in https://github.com/Acode-Foundation/Acode/pull/1612
19+
* style(terminal): Some touch selection handle enhancements by @peasneovoyager2banana2 in https://github.com/Acode-Foundation/Acode/pull/1611
20+
* fix: pip by @RohitKushvaha01 in https://github.com/Acode-Foundation/Acode/pull/1617
21+
* feat: Enable all file access in nightly builds by @RohitKushvaha01 in https://github.com/Acode-Foundation/Acode/pull/1618
22+
* Add support for renaming documents in provider by @bajrangCoder in https://github.com/Acode-Foundation/Acode/pull/1619
23+
* fix: support for Acode terminal SAF URIs by @bajrangCoder in https://github.com/Acode-Foundation/Acode/pull/1621
24+
* fix: rm command by @RohitKushvaha01 in https://github.com/Acode-Foundation/Acode/pull/1623
25+
* feat: add 'check for app updates' setting to toggle the automatic behaviour by @bajrangCoder in https://github.com/Acode-Foundation/Acode/pull/1624
26+
* chore(i18n): update hu-hu.json by @summoner001 in https://github.com/Acode-Foundation/Acode/pull/1626
27+
* Enforce Unix lf endings for shell scripts by @RohitKushvaha01 in https://github.com/Acode-Foundation/Acode/pull/1637
28+
* AutoSuggest install command in terminal by @RohitKushvaha01 in https://github.com/Acode-Foundation/Acode/pull/1638
29+
* feat: add plugin filtering by author and keywords by @bajrangCoder in https://github.com/Acode-Foundation/Acode/pull/1625
30+
- Refactored filtering logic to support multi-page results and improved UI feedback for filter actions.
31+
* Translation: Update hu-hu.json by @summoner001 in https://github.com/Acode-Foundation/Acode/pull/1640
32+
* fix: init-alpine by @RohitKushvaha01 in https://github.com/Acode-Foundation/Acode/pull/1641
33+
* fix: ANSI escape sequence in init-alpine by @RohitKushvaha01 in https://github.com/Acode-Foundation/Acode/pull/1643
34+
* chore(i18n): update de-de.json by @Mr-Update in https://github.com/Acode-Foundation/Acode/pull/1648
35+
* fix: update proot binaries to support 16kb page size by @RohitKushvaha01 in https://github.com/Acode-Foundation/Acode/pull/1649
36+
* chore(i18n): update id-id.json with new strings by @hyperz111 in https://github.com/Acode-Foundation/Acode/pull/1650
37+
* Translation: Update hu-Hu.json by @summoner001 in https://github.com/Acode-Foundation/Acode/pull/1653
38+
* Add confirmation prompt before closing terminal tabs by @bajrangCoder in https://github.com/Acode-Foundation/Acode/pull/1655
39+
* fix: compatibility for old android versions by @bajrangCoder in https://github.com/Acode-Foundation/Acode/pull/1656
40+
* fix: improve file sharing and URI handling by @bajrangCoder in https://github.com/Acode-Foundation/Acode/pull/1662
41+
- Improved file sharing and fixed permission issue (also in case of open with , edit with)
42+
* fix: do not restore terminals if axs is dead by @RohitKushvaha01 in https://github.com/Acode-Foundation/Acode/pull/1664
43+
* fix: .capitalize() removed because it changes the translations (also English) by @Mr-Update in https://github.com/Acode-Foundation/Acode/pull/1665
44+
* fix: `switchFile` api to respect custom subtitle by @bajrangCoder in https://github.com/Acode-Foundation/Acode/pull/1672
45+
* Update zh-cn.json and zh-hant.json by @LaunchLee in https://github.com/Acode-Foundation/Acode/pull/1674
46+
* fix: Translation corrected in terminal settings by @Mr-Update in https://github.com/Acode-Foundation/Acode/pull/1676
47+
* fix: Added missing translation for info window in file browser and app settings. by @Mr-Update in https://github.com/Acode-Foundation/Acode/pull/1677
48+
* Translation: Update hungarian hu-HU.json by @summoner001 in https://github.com/Acode-Foundation/Acode/pull/1680
49+
* Update ads plugin and fix some issues of free version by @bajrangCoder in https://github.com/Acode-Foundation/Acode/pull/1683
50+
- fix: system them on free version
51+
* fix: restore folds when formatting if available by @bajrangCoder in https://github.com/Acode-Foundation/Acode/pull/1682
52+
* fix: Added missing translation for info window in terminal settings by @Mr-Update in https://github.com/Acode-Foundation/Acode/pull/1681
53+
* Translation: Update hungarian hu-hu.json by @summoner001 in https://github.com/Acode-Foundation/Acode/pull/1687
54+
* feat: Add clean install state functionality to app settings by @UnschooledGamer in https://github.com/Acode-Foundation/Acode/pull/1690
55+
* Translation: Update hungarian hu-hu.json by @summoner001 in https://github.com/Acode-Foundation/Acode/pull/1693
56+
57+
358
## v1.11.6 (965)
459

560
* fix: Terminal in F-Droid flavour by @RohitKushvaha01 in https://github.com/Acode-Foundation/Acode/pull/1478

config.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version='1.0' encoding='utf-8' ?>
2-
<widget id="com.foxdebug.acode" android-versionCode="965" version="1.11.6"
2+
<widget id="com.foxdebug.acode" android-versionCode="966" version="1.11.7"
33
xmlns="http://www.w3.org/ns/widgets"
44
xmlns:android="http://schemas.android.com/apk/res/android"
55
xmlns:cdv="http://cordova.apache.org/ns/1.0">

package-lock.json

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

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "io.foxbiz.acode",
3-
"displayName": "Acode2",
4-
"version": "1.11.6",
2+
"name": "com.foxdebug.acode",
3+
"displayName": "Acode",
4+
"version": "1.11.7",
55
"description": "Acode is a code editor for android",
66
"scripts": {
77
"lang": "node ./utils/lang.js",
@@ -158,4 +158,4 @@
158158
"yargs": "^18.0.0"
159159
},
160160
"browserslist": "cover 100%,not android < 5"
161-
}
161+
}

src/lang/pl-pl.json

Lines changed: 43 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -410,49 +410,49 @@
410410
"notifications": "Powiadomienia",
411411
"no_unread_notifications": "Brak nieodczytanych powiadomień",
412412
"should_use_current_file_for_preview": "Należy użyć bieżącego pliku do podglądu zamiast domyślnego (index.html)",
413-
"fade fold widgets": "Fade Fold Widgets",
414-
"quicktools:home-key": "Home Key",
415-
"quicktools:end-key": "End Key",
416-
"quicktools:pageup-key": "PageUp Key",
417-
"quicktools:pagedown-key": "PageDown Key",
418-
"quicktools:delete-key": "Delete Key",
419-
"quicktools:tilde": "Insert tilde symbol",
420-
"quicktools:backtick": "Insert backtick",
421-
"quicktools:hash": "Insert Hash symbol",
422-
"quicktools:dollar": "Insert dollar symbol",
423-
"quicktools:modulo": "Insert modulo/percent symbol",
424-
"quicktools:caret": "Insert caret symbol",
425-
"plugin_enabled": "Plugin enabled",
426-
"plugin_disabled": "Plugin disabled",
427-
"enable_plugin": "Enable this Plugin",
428-
"disable_plugin": "Disable this Plugin",
429-
"open_source": "Open Source",
430-
"terminal settings": "Terminal Settings",
431-
"font ligatures": "Font Ligatures",
432-
"letter spacing": "Letter Spacing",
433-
"terminal:tab stop width": "Tab Stop Width",
434-
"terminal:scrollback": "Scrollback Lines",
435-
"terminal:cursor blink": "Cursor Blink",
436-
"terminal:font weight": "Font Weight",
437-
"terminal:cursor inactive style": "Cursor Inactive Style",
438-
"terminal:cursor style": "Cursor Style",
439-
"terminal:font family": "Font Family",
440-
"terminal:convert eol": "Convert EOL",
441-
"terminal:confirm tab close": "Confirm terminal tab close",
442-
"terminal:image support": "Image support",
413+
"fade fold widgets": "Widżety Fade Fold",
414+
"quicktools:home-key": "Klawisz Home",
415+
"quicktools:end-key": "Klawisz End",
416+
"quicktools:pageup-key": "Klawisz PageUp",
417+
"quicktools:pagedown-key": "Klawisz PageDown",
418+
"quicktools:delete-key": "Klawisz Delete",
419+
"quicktools:tilde": "Wstaw symbol tyldy",
420+
"quicktools:backtick": "Wstaw backtick",
421+
"quicktools:hash": "Wstaw symbol hash",
422+
"quicktools:dollar": "Wstaw symbol dolara",
423+
"quicktools:modulo": "Wstaw moduł/symbol procentu",
424+
"quicktools:caret": "Wstaw symbol karetki",
425+
"plugin_enabled": "Wtyczka włączona",
426+
"plugin_disabled": "Wtyczka wyłączona",
427+
"enable_plugin": "Włącz tę wtyczkę",
428+
"disable_plugin": "Wyłącz tę wtyczkę",
429+
"open_source": "Otwarte oprogramowanie",
430+
"terminal settings": "Ustawienia terminala",
431+
"font ligatures": "Ligatury czcionek",
432+
"letter spacing": "Odstępy między literami",
433+
"terminal:tab stop width": "Szerokość tabulatora",
434+
"terminal:scrollback": "Linie przewijania wstecz",
435+
"terminal:cursor blink": "Miganie kursora",
436+
"terminal:font weight": "Grubość czcionki",
437+
"terminal:cursor inactive style": "Styl nieaktywnego kursora",
438+
"terminal:cursor style": "Styl kursora",
439+
"terminal:font family": "Rodzina czcionek",
440+
"terminal:convert eol": "Konwersja EOL",
441+
"terminal:confirm tab close": "Potwierdź zamknięcie karty terminala",
442+
"terminal:image support": "Obsługa obrazów",
443443
"terminal": "Terminal",
444-
"allFileAccess": "All file access",
445-
"fonts": "Fonts",
444+
"allFileAccess": "Dostęp do wszystkich plików",
445+
"fonts": "Czcionki",
446446
"sponsor": "Sponsor",
447-
"downloads": "downloads",
448-
"reviews": "reviews",
449-
"overview": "Overview",
450-
"contributors": "Contributors",
451-
"quicktools:hyphen": "Insert hyphen symbol",
452-
"check for app updates": "Check for app updates",
453-
"prompt update check consent message": "Acode can check for new app updates when you're online. Enable update checks?",
454-
"keywords": "Keywords",
455-
"author": "Author",
456-
"filtered by": "Filtered by",
457-
"clean install state": "Clean Install State"
447+
"downloads": "pobrania",
448+
"reviews": "recenzje",
449+
"overview": "Zestawienie",
450+
"contributors": "Wspierający",
451+
"quicktools:hyphen": "Wstaw symbol myślnika",
452+
"check for app updates": "Sprawdź dostępność aktualizacji",
453+
"prompt update check consent message": "Acode może sprawdzać dostępność aktualizacji aplikacji, gdy jesteś online. Włączyć sprawdzanie aktualizacji?",
454+
"keywords": "Słowa kluczowe",
455+
"author": "Autor",
456+
"filtered by": "Filtrowane wg",
457+
"clean install state": "Stan czystej instalacji"
458458
}

0 commit comments

Comments
 (0)