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
1 change: 0 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,6 @@
"nunjucks",
"nuxt",
"objectivecpp",
"octicon",
"OLED",
"oncanrun",
"onchangemode",
Expand Down
2 changes: 1 addition & 1 deletion config.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version='1.0' encoding='utf-8' ?>
<widget id="com.foxdebug.acode" android-versionCode="297" version="1.8.5"
<widget id="com.foxdebug.acode" android-versionCode="298" version="1.8.6"
xmlns="http://www.w3.org/ns/widgets"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:cdv="http://cordova.apache.org/ns/1.0">
Expand Down
1 change: 1 addition & 0 deletions src/ace/supportedModes.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ const modeList = {
Nunjucks: "nunjucks|nunjs|nj|njk",
ObjectiveC: "m|mm",
OCaml: "ml|mli",
Odin: "odin",
PartiQL: "partiql|pql",
Pascal: "pas|p",
Perl: "pl|pm",
Expand Down
1 change: 0 additions & 1 deletion src/components/tile/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ header {
}
}

.octicon,
.icon {
height: 45px;
width: 45px;
Expand Down
3 changes: 2 additions & 1 deletion src/lib/editorManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,7 @@ async function EditorManager($header, $body) {
editor.container.style.lineHeight = settings.lineHeight;

ace.require('ace/ext/language_tools');
ace.require('ace/autocomplete/inline');
editor.setOption('animatedScroll', false);
editor.setOption('tooltipFollowsMouse', false);
editor.setOption('theme', settings.editorTheme);
Expand All @@ -350,7 +351,7 @@ async function EditorManager($header, $body) {
editor.setOption('printMarginColumn', settings.printMargin);
editor.setOption('enableBasicAutocompletion', true);
editor.setOption('enableLiveAutocompletion', settings.liveAutoCompletion);
// editor.setOption('enableInlineAutocompletion', settings.inlineAutoCompletion);
editor.setOption('enableInlineAutocompletion', settings.inlineAutoCompletion);

if (!appSettings.value.textWrap) {
editor.renderer.setScrollMargin(0, 0, 0, settings.leftMargin);
Expand Down
2 changes: 1 addition & 1 deletion src/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ async function loadApp() {
plugins(updates);
$icon.remove();
}
} attr-action='' style={{ fontSize: '1.2rem' }} className='octicon octicon-bell'></span>;
} attr-action='' className='icon notifications'></span>;

if ($editMenuToggler.isConnected) {
$header.insertBefore($icon, $editMenuToggler);
Expand Down
1 change: 0 additions & 1 deletion src/pages/plugins/plugins.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
align-items: center;
margin-right: 15px;

.octicon,
.icon {
height: 30px;
width: 30px;
Expand Down
3 changes: 0 additions & 3 deletions src/styles/list.scss
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@
content: '\e9a6';
}

.octicon,
.icon {
height: 30px;
min-width: 30px;
Expand All @@ -58,7 +57,6 @@
>.tile {
height: 30px;

.octicon,
.icon {
height: 28px;
min-width: 28px;
Expand Down Expand Up @@ -164,7 +162,6 @@
}
}

.octicon,
.icon {
height: 60px;
width: 60px;
Expand Down
1 change: 0 additions & 1 deletion src/styles/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,6 @@ a.icon {
}
}

.octicon,
.icon {
user-select: none;
display: flex;
Expand Down
9 changes: 5 additions & 4 deletions www/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@
<script src="cordova.js"></script>
<script src="./js/emmet-core.js"></script>
<script src="./js/ace/ace.js"></script>
<script src='./js/ace/ext-inline_autocomplete.js'></script>
<script src="./js/ace/ext-beautify.js"></script>
<script src="./js/ace/ext-code_lens.js"></script>
<script src="./js/ace/ext-emmet.js"></script>
Expand Down Expand Up @@ -169,16 +170,16 @@

<title>Acode</title>
<!--styles-->
<link rel="stylesheet" href="./css/build/14.css">
<link rel="stylesheet" href="./css/build/477.css">
<link rel="stylesheet" href="./css/build/53.css">
<link rel="stylesheet" href="./css/build/673.css">
<link rel="stylesheet" href="./css/build/about.css">
<link rel="stylesheet" href="./css/build/customTheme.css">
<link rel="stylesheet" href="./css/build/donate.css">
<link rel="stylesheet" href="./css/build/fileBrowser.css">
<link rel="stylesheet" href="./css/build/main.css">
<link rel="stylesheet" href="./css/build/plugins.css">
<link rel="stylesheet" href="./css/build/src_pages_quickTools_quickTools_js.css">
<link rel="stylesheet" href="./css/build/src_sidebarApps_extensions_index_js.css">
<link rel="stylesheet" href="./css/build/src_sidebarApps_files_index_js.css">
<link rel="stylesheet" href="./css/build/src_sidebarApps_searchInFiles_index_js.css">
<link rel="stylesheet" href="./css/build/themeSetting.css">
<!--styles_end-->
</head>
Expand Down
2 changes: 1 addition & 1 deletion www/js/ace/ace.js

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions www/js/ace/ext-command_bar.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading