|
1 | 1 | # Change Log |
2 | 2 |
|
3 | 3 | ## v1.10.8 (956) |
4 | | -* fix: corrected typo in "vission" to "vision" by @ByteJoseph in #1125 |
5 | | -* feat: Improve tab view gesture handling to distinguish between scroll and swipe on plugin page by @bajrangCoder in #1131 |
6 | | -* fix: heading and image alignment issues with alignment="center" on plugin page by @bajrangCoder in #1132 |
7 | | -* fix: file listing in sftp by @bajrangCoder in #1133 |
8 | | -* feat: color preview in svg files by @bajrangCoder in #1135 |
9 | | -* Implement custom editor tabs support by @bajrangCoder in #1136 |
10 | | - * show image, video, audio previews in editor instead of popups |
11 | | - * exposed api for plugin developers to add content in editor tab , `EditorFile` |
12 | | -* feat: redesigned about page by @bajrangCoder in #1153 |
13 | | -* feat: plugin rebuild option for local plugins by @bajrangCoder in #1150 |
14 | | - * plugin can use `cordova.plugin.http` instead of fetch to avoid cors issue while making network requests |
15 | | -* fix: fallback to */* when accept attribute is absent in input type="file" in inapp browser by @bajrangCoder in #1154 |
16 | | -* fix(browser): re-show console on page reload in inapp browser by @bajrangCoder in #1155 |
17 | | -* Redesigned Plugin page by @bajrangCoder in #1152 |
18 | | - * new meta data for plugin.json: `license`, `changelog`, `keywords`,`contributors` |
19 | | -* chore(ace): updated to v1.37.5 by @bajrangCoder in #1158 |
20 | | -* improved paste operation with proper error handling #1162 |
21 | | -* feat: new option to open file in external app in file browser #1163 |
22 | | -* feat: minor sidebar ui tweaks and improved input element styling #1164 |
23 | | -* use theme color in extra cutout area in landscape mode instead of default color #1165 |
24 | | -* feat: improved file info dialog box design #1170 |
25 | | -* fix: infinite scroll on plugin page to remove duplicates #1171 |
26 | | -* feat: show eruda console for external site in Acode built-in browser #1172 |
27 | | -* Rewritten Sftp implementation |
28 | | - * better performance and stability |
29 | | - * better symlinks support and also better visual for distinguishing symlinks |
30 | | - * proper error handling |
31 | | - * better reading(downloading) and writing |
32 | | - * uses native api for fs stuffs |
33 | | - * better buffer handling etc , now even a 30-40 minutes video will be playable within few seconds (even faster than internal fs) |
34 | | - * emojis are supported |
35 | | -* in #1167 |
36 | | - * fix: logger for limiting it's size |
37 | | - * fix: show info dialog issue in case of non editor tab |
38 | | - * feat: detect binary files without reading it |
39 | | - * tweaked breadcrumbs of file browser to follow app theme |
40 | | - * updated ssh lib to `v3.1.2` |
41 | | - * removed deprecated apis |
42 | | - * experimental saving of native logs in acode logger |
43 | | -* tweaked donation page |
44 | | -* improved ftp client (#1193 by @bajrangCoder) |
45 | | - - supports emoji named files |
46 | | - - supports symlink |
47 | | - - better handling of video, image as binary |
48 | | - - show names instead of path |
49 | | -* many translation updates for `hu-hu` by @summoner |
50 | | -* fix: wrong file attribute in ftp #1194 |
51 | | -* feat: new editor setting: `Fade fold widgets` #1195 @bajrangCoder |
52 | | -* reworked plugin page ui and now it will show all basic info in list such as author name, license, price, etc #1196 by @bajrangCoder |
53 | | -* fix: Palette not opening when called from existing palette #1197 @bajrangCoder |
54 | | -* feat: Add command to change editor and app theme via command palette #1197 @bajrangCoder |
| 4 | + |
| 5 | +### Fixes |
| 6 | +* Fixed a typo: "vission" → "vision" by @ByteJoseph in #1125 |
| 7 | +* Fixed heading and image alignment issues with `alignment="center"` on the plugin page by @bajrangCoder in #1132 |
| 8 | +* Fixed file listing in SFTP by @bajrangCoder in #1133 |
| 9 | +* Fixed fallback to `*/*` when the `accept` attribute is absent in `<input type="file">` in the in-app browser by @bajrangCoder in #1154 |
| 10 | +* Fixed console not reappearing after page reload in the in-app browser by @bajrangCoder in #1155 |
| 11 | +* Fixed infinite scroll on the plugin page to remove duplicates by @bajrangCoder in #1171 |
| 12 | +* Fixed logger to limit its size in #1167 |
| 13 | +* Fixed an issue where the info dialog wouldn't appear for non-editor tabs in #1167 |
| 14 | +* Fixed incorrect file attributes in FTP by @bajrangCoder in #1194 |
| 15 | +* Fixed the palette not opening when triggered from an existing palette by @bajrangCoder in #1197 |
| 16 | + |
| 17 | +### Features |
| 18 | +* Improved tab view gesture handling to distinguish between scroll and swipe on the plugin page by @bajrangCoder in #1131 |
| 19 | +* Added color preview for SVG files by @bajrangCoder in #1135 |
| 20 | +* Implemented custom editor tab support by @bajrangCoder in #1136 |
| 21 | + * Now supports image, video, and audio previews directly in the editor instead of pop-ups |
| 22 | + * Exposed API for plugin developers to add content in editor tabs via `EditorFile` |
| 23 | +* Redesigned the About page by @bajrangCoder in #1153 |
| 24 | +* Added a plugin rebuild option for local plugins by @bajrangCoder in #1150 |
| 25 | + * Plugins can use `cordova.plugin.http` instead of `fetch` to avoid CORS issues when making network requests |
| 26 | +* Redesigned the Plugin page by @bajrangCoder in #1152 |
| 27 | + * Added new metadata fields in `plugin.json`: `license`, `changelog`, `keywords`, and `contributors` |
| 28 | +* Added a new option to open files in an external app from the file browser in #1163 |
| 29 | +* Added minor sidebar UI tweaks and improved input element styling in #1164 |
| 30 | +* Used theme colors in the extra cutout area in landscape mode instead of the default color in #1165 |
| 31 | +* Improved file info dialog design in #1170 |
| 32 | +* Added Eruda console support for external sites in Acode's built-in browser in #1172 |
| 33 | +* Added a new editor setting: **"Fade fold widgets"** by @bajrangCoder in #1195 |
| 34 | +* Added a command to change the editor and app theme via the command palette by @bajrangCoder in #1197 |
| 35 | + |
| 36 | +### Improvements |
| 37 | +* Improved paste operation with proper error handling in #1162 |
| 38 | +* Rewritten SFTP implementation(#1167): |
| 39 | + * Better performance and stability |
| 40 | + * Improved symlink support with better visual distinction |
| 41 | + * Proper error handling |
| 42 | + * Enhanced file reading (downloading) and writing |
| 43 | + * Uses native APIs for file system operations |
| 44 | + * Better buffer handling—now even 30-40 minute videos load within seconds (faster than internal storage) |
| 45 | + * Emoji support added |
| 46 | +* Improved the FTP client (#1193) by @bajrangCoder |
| 47 | + * Supports emoji-named files |
| 48 | + * Improved symlink handling |
| 49 | + * Better handling of videos and images as binary files |
| 50 | + * Displays file names instead of full paths |
| 51 | +* Reworked the plugin page UI—now displays essential info such as author, license, price, etc., in the list view by @bajrangCoder in #1196 |
| 52 | +* Tweaked breadcrumbs in the file browser to follow the app theme in #1167 |
| 53 | +* Updated the SSH library to `v3.1.2` in #1167 |
| 54 | +* Removed deprecated APIs in #1167 |
| 55 | +* Added experimental support for saving native logs in Acode Logger in #1167 |
| 56 | +* Tweaked the donation page #1188 |
| 57 | + |
| 58 | +### Other Changes |
| 59 | +* Updated **Ace Editor** to v1.37.5 by @bajrangCoder in #1158 |
| 60 | +* Many translation updates for `hu-hu` by @summoner |
55 | 61 |
|
56 | 62 | ## v1.10.7 (955) |
57 | 63 |
|
|
0 commit comments