Skip to content

Commit 5059d4b

Browse files
authoredJul 30, 2024
Merge pull request #998 from bajrangCoder/main
Update v1.10.4(951)
2 parents 4fb3561 + c7e4ba0 commit 5059d4b

36 files changed

+102
-63
lines changed
 

‎CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Change Log
22

3+
## [1.10.4] (951)
4+
5+
- New
6+
- Nested Files/Folder Creation
7+
- Updated ace to latest version
8+
- Improved displaying of Download count on Plugins page as well as on Sidebar
9+
- Enhanced search functionality to allow searching across all available plugins from the "all" section of the plugin page.
10+
- Added a new option on Help page for submiting bug reports.
11+
- Fixes
12+
- Fixed issue with the search bar on the plugin page
13+
- Fixed issue with the search bar closing accidentally when clicking elsewhere on the screen
14+
315
## [1.10.2]
416

517
- New

‎config.xml

+1-1
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="950" version="1.10.3"
2+
<widget id="com.foxdebug.acode" android-versionCode="951" version="1.10.4"
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">

‎jsconfig.json

+4-13
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,13 @@
11
{
2-
"exclude": [
3-
"**/node_modules",
4-
"**/platforms",
5-
"**/www",
6-
"www/js/ace/**/*"
7-
],
2+
"exclude": ["**/node_modules", "**/platforms", "**/www", "www/js/ace/**/*"],
83
"compilerOptions": {
94
"baseUrl": "./src",
105
"paths": {
11-
"*": [
12-
"*"
13-
],
6+
"*": ["*"]
147
}
158
},
16-
"include": [
17-
"src/**/*"
18-
],
9+
"include": ["src/**/*"],
1910
"typeAcquisition": {
2011
"enable": true
2112
}
22-
}
13+
}

‎package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "com.foxdebug.acode",
33
"displayName": "Acode",
4-
"version": "1.10.0",
4+
"version": "1.10.4",
55
"description": "Acode is a code editor for android",
66
"scripts": {
77
"lang": "node ./utils/lang.js",
@@ -100,4 +100,4 @@
100100
"yargs": "^17.7.2"
101101
},
102102
"browserslist": "cover 100%,not android < 5"
103-
}
103+
}

‎readme.md

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ Welcome to Acode Editor - a powerful and versatile code editing tool designed sp
1616
- Seamlessly modify source files for various languages like Python, Java, JavaScript, and more.
1717
- Access the console to quickly identify errors and logs.
1818
- Enjoy multi-language editing support with easy management tools.
19+
- Enjoy a large collections of community plugins to enhance your coding experience.
1920

2021
## • Installation
2122

‎src/lang/ar-ye.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -377,5 +377,6 @@
377377
"list files": "List all files in <strong>{name}</strong>? Too many files may crash the app.",
378378
"problems": "Problems",
379379
"show side buttons": "Show side buttons",
380+
"bug_report": "Submit a Bug Report",
380381
"verified publisher": "Verified publisher"
381-
}
382+
}

‎src/lang/be-by.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -377,5 +377,6 @@
377377
"list files": "List all files in <strong>{name}</strong>? Too many files may crash the app.",
378378
"problems": "Problems",
379379
"show side buttons": "Show side buttons",
380+
"bug_report": "Submit a Bug Report",
380381
"verified publisher": "Verified publisher"
381-
}
382+
}

‎src/lang/bn-bd.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -377,5 +377,6 @@
377377
"list files": "<strong>{name}</strong>- এর ভেতরের সকল ফাইল তালিকাভুক্ত করুন? অতিরিক্ত ফাইল অ্যাপটি ক্র্যাশ করতে পারে।",
378378
"problems": "সমস্যাগুলো",
379379
"show side buttons": "সাইড বাটনগুলো দেখান",
380+
"bug_report": "Submit a Bug Report",
380381
"verified publisher": "Verified publisher"
381-
}
382+
}

‎src/lang/cs-cz.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -377,5 +377,6 @@
377377
"list files": "List all files in <strong>{name}</strong>? Too many files may crash the app.",
378378
"problems": "Problems",
379379
"show side buttons": "Show side buttons",
380+
"bug_report": "Submit a Bug Report",
380381
"verified publisher": "Verified publisher"
381-
}
382+
}

‎src/lang/de-de.json

+1
Original file line numberDiff line numberDiff line change
@@ -377,5 +377,6 @@
377377
"list files": "Alle Dateien in <strong>{name}</strong> auflisten? Bei zu viele Dateien könnte die App abstürzen.",
378378
"problems": "Probleme",
379379
"show side buttons": "Zeige Seitenknöpfe",
380+
"bug_report": "Submit a Bug Report",
380381
"verified publisher": "Verifizierter Herausgeber"
381382
}

‎src/lang/en-us.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -377,5 +377,6 @@
377377
"list files": "List all files in <strong>{name}</strong>? Too many files may crash the app.",
378378
"problems": "Problems",
379379
"show side buttons": "Show side buttons",
380+
"bug_report": "Submit Bug Report",
380381
"verified publisher": "Verified publisher"
381-
}
382+
}

‎src/lang/es-sv.json

+1
Original file line numberDiff line numberDiff line change
@@ -377,5 +377,6 @@
377377
"list files": "¿Listar todos los archivos en <strong>{name}</strong>? Demasiados archivos pueden bloquear la aplicación.",
378378
"problems": "Problemas",
379379
"show side buttons": "Mostrar botones laterales",
380+
"bug_report": "Submit a Bug Report",
380381
"verified publisher": "Publicador verificado"
381382
}

‎src/lang/fr-fr.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -377,5 +377,6 @@
377377
"list files": "List all files in <strong>{name}</strong>? Too many files may crash the app.",
378378
"problems": "Problems",
379379
"show side buttons": "Show side buttons",
380+
"bug_report": "Submit a Bug Report",
380381
"verified publisher": "Verified publisher"
381-
}
382+
}

‎src/lang/hi-in.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -378,5 +378,6 @@
378378
"list files": "List all files in <strong>{name}</strong>? Too many files may crash the app.",
379379
"problems": "Problems",
380380
"show side buttons": "Show side buttons",
381+
"bug_report": "बग रिपोर्ट सबमिट करें",
381382
"verified publisher": "Verified publisher"
382-
}
383+
}

‎src/lang/hu-hu.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -377,5 +377,6 @@
377377
"list files": "List all files in <strong>{name}</strong>? Too many files may crash the app.",
378378
"problems": "Problems",
379379
"show side buttons": "Show side buttons",
380+
"bug_report": "Submit a Bug Report",
380381
"verified publisher": "Verified publisher"
381-
}
382+
}

‎src/lang/id-id.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -379,5 +379,6 @@
379379
"list files": "List all files in <strong>{name}</strong>? Too many files may crash the app.",
380380
"problems": "Problems",
381381
"show side buttons": "Show side buttons",
382+
"bug_report": "Submit a Bug Report",
382383
"verified publisher": "Verified publisher"
383-
}
384+
}

‎src/lang/ir-fa.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -378,5 +378,6 @@
378378
"list files": "List all files in <strong>{name}</strong>? Too many files may crash the app.",
379379
"problems": "Problems",
380380
"show side buttons": "Show side buttons",
381+
"bug_report": "Submit a Bug Report",
381382
"verified publisher": "Verified publisher"
382-
}
383+
}

‎src/lang/it-it.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -377,5 +377,6 @@
377377
"list files": "List all files in <strong>{name}</strong>? Too many files may crash the app.",
378378
"problems": "Problems",
379379
"show side buttons": "Show side buttons",
380+
"bug_report": "Submit a Bug Report",
380381
"verified publisher": "Verified publisher"
381-
}
382+
}

‎src/lang/ja-jp.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -377,5 +377,6 @@
377377
"list files": "{name} 内のすべてのファイルを一覧表示しますか?ファイル数が多すぎるとアプリがクラッシュする可能性があります。",
378378
"problems": "問題",
379379
"show side buttons": "サイドボタンを表示",
380+
"bug_report": "Submit a Bug Report",
380381
"verified publisher": "検証済み発行者"
381-
}
382+
}

‎src/lang/ko-kr.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -377,5 +377,6 @@
377377
"list files": "List all files in <strong>{name}</strong>? Too many files may crash the app.",
378378
"problems": "Problems",
379379
"show side buttons": "Show side buttons",
380+
"bug_report": "Submit a Bug Report",
380381
"verified publisher": "Verified publisher"
381-
}
382+
}

‎src/lang/ml-in.json

+1
Original file line numberDiff line numberDiff line change
@@ -377,5 +377,6 @@
377377
"list files": "<strong>{name}</strong> ലെ എല്ലാ ഫയലുകളും കാണിക്കണോ? വളരെയധികം ഫയലുകൾ ആപ്പിനെ ക്രാഷ് ചെയ്തേക്കാം.",
378378
"problems": "പ്രശ്നങ്ങൾ",
379379
"show side buttons": "സൈഡ് ബട്ടണുകൾ കാണിക്കുക",
380+
"bug_report": "Submit a Bug Report",
380381
"verified publisher": "പരിശോധിച്ച പ്രസാധകൻ"
381382
}

‎src/lang/mm-unicode.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -377,5 +377,6 @@
377377
"list files": "List all files in <strong>{name}</strong>? Too many files may crash the app.",
378378
"problems": "Problems",
379379
"show side buttons": "Show side buttons",
380+
"bug_report": "Submit a Bug Report",
380381
"verified publisher": "Verified publisher"
381-
}
382+
}

‎src/lang/mm-zawgyi.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -377,5 +377,6 @@
377377
"list files": "List all files in <strong>{name}</strong>? Too many files may crash the app.",
378378
"problems": "Problems",
379379
"show side buttons": "Show side buttons",
380+
"bug_report": "Submit a Bug Report",
380381
"verified publisher": "Verified publisher"
381-
}
382+
}

‎src/lang/pl-pl.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -377,5 +377,6 @@
377377
"list files": "List all files in <strong>{name}</strong>? Too many files may crash the app.",
378378
"problems": "Problems",
379379
"show side buttons": "Show side buttons",
380+
"bug_report": "Submit a Bug Report",
380381
"verified publisher": "Verified publisher"
381-
}
382+
}

‎src/lang/pt-br.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -377,5 +377,6 @@
377377
"list files": "Listar todos os arquivos em <strong>{name}</strong>? Muitos arquivos podem travar o aplicativo.",
378378
"problems": "Problemas",
379379
"show side buttons": "Mostrar botões laterais",
380+
"bug_report": "Submit a Bug Report",
380381
"verified publisher": "Verified publisher"
381-
}
382+
}

‎src/lang/pu-in.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -377,5 +377,6 @@
377377
"list files": "List all files in <strong>{name}</strong>? Too many files may crash the app.",
378378
"problems": "Problems",
379379
"show side buttons": "Show side buttons",
380+
"bug_report": "Submit a Bug Report",
380381
"verified publisher": "Verified publisher"
381-
}
382+
}

‎src/lang/ru-ru.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -378,5 +378,6 @@
378378
"list files": "Список всех файлов <strong>{name}</strong>. Обширное количество файлов может привести к крашу самого приложения.",
379379
"problems": "Проблемы",
380380
"show side buttons": "Показать кнопки на стороне",
381+
"bug_report": "Submit a Bug Report",
381382
"verified publisher": "Проверенный издатель"
382-
}
383+
}

‎src/lang/tl-ph.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -377,5 +377,6 @@
377377
"list files": "List all files in <strong>{name}</strong>? Too many files may crash the app.",
378378
"problems": "Problems",
379379
"show side buttons": "Show side buttons",
380+
"bug_report": "Submit a Bug Report",
380381
"verified publisher": "Verified publisher"
381-
}
382+
}

‎src/lang/tr-tr.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -377,5 +377,6 @@
377377
"list files": "List all files in <strong>{name}</strong>? Too many files may crash the app.",
378378
"problems": "Problems",
379379
"show side buttons": "Show side buttons",
380+
"bug_report": "Submit a Bug Report",
380381
"verified publisher": "Verified publisher"
381-
}
382+
}

‎src/lang/uk-ua.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -377,5 +377,6 @@
377377
"list files": "List all files in <strong>{name}</strong>? Too many files may crash the app.",
378378
"problems": "Problems",
379379
"show side buttons": "Show side buttons",
380+
"bug_report": "Submit a Bug Report",
380381
"verified publisher": "Verified publisher"
381-
}
382+
}

‎src/lang/uz-uz.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -377,5 +377,6 @@
377377
"list files": "List all files in <strong>{name}</strong>? Too many files may crash the app.",
378378
"problems": "Problems",
379379
"show side buttons": "Show side buttons",
380+
"bug_report": "Submit a Bug Report",
380381
"verified publisher": "Verified publisher"
381-
}
382+
}

‎src/lang/vi-vn.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -377,5 +377,6 @@
377377
"list files": "List all files in <strong>{name}</strong>? Too many files may crash the app.",
378378
"problems": "Problems",
379379
"show side buttons": "Show side buttons",
380+
"bug_report": "Submit a Bug Report",
380381
"verified publisher": "Verified publisher"
381-
}
382+
}

‎src/lang/zh-cn.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -377,5 +377,6 @@
377377
"list files": "列出 <strong>{name}</strong> 下的所有文件吗?过多的文件可能会导致应用崩溃。",
378378
"problems": "有问题",
379379
"show side buttons": "显示侧边按钮",
380+
"bug_report": "Submit a Bug Report",
380381
"verified publisher": "已认证发布者"
381-
}
382+
}

‎src/lang/zh-hant.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -377,5 +377,6 @@
377377
"list files": "列出 <strong>{name}</strong> 下的所有文件嗎?過多的文件可能會導緻應用崩潰。",
378378
"problems": "有問題",
379379
"show side buttons": "顯示側邊按鈕",
380+
"bug_report": "Submit a Bug Report",
380381
"verified publisher": "已認證發布者"
381-
}
382+
}

‎src/lang/zh-tw.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -377,5 +377,6 @@
377377
"list files": "列出在 <strong>{name}</strong> 中的所有檔案嗎?太多檔案也許會導致此應用程式崩潰。",
378378
"problems": "有問題",
379379
"show side buttons": "顯示側邊按鈕",
380+
"bug_report": "Submit a Bug Report",
380381
"verified publisher": "Verified publisher"
381-
}
382+
}

‎src/settings/helpSettings.js

+25-20
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,25 @@
1-
import settingsPage from 'components/settingsPage';
2-
3-
export default function help() {
4-
const title = strings.help;
5-
const items = [
6-
{
7-
key: 'help',
8-
text: strings.help,
9-
link: 'https://telegram.me/foxdebug_acode',
10-
},
11-
{
12-
key: 'faqs',
13-
text: strings.faqs,
14-
link: 'https://acode.app/faqs',
15-
},
16-
];
17-
18-
const page = settingsPage(title, items, () => { }, 'separate');
19-
page.show();
20-
}
1+
import settingsPage from "components/settingsPage";
2+
3+
export default function help() {
4+
const title = strings.help;
5+
const items = [
6+
{
7+
key: "help",
8+
text: strings.help,
9+
link: "https://telegram.me/foxdebug_acode",
10+
},
11+
{
12+
key: "faqs",
13+
text: strings.faqs,
14+
link: "https://acode.app/faqs",
15+
},
16+
{
17+
key: "bug_report",
18+
text: strings.bug_report,
19+
link: "https://github.com/deadlyjack/Acode/issues",
20+
},
21+
];
22+
23+
const page = settingsPage(title, items, () => {}, "separate");
24+
page.show();
25+
}

0 commit comments

Comments
 (0)