Skip to content

Commit

Permalink
Version 12.11.23
Browse files Browse the repository at this point in the history
    *) Bug Fix: switch input method causes the text into a line

    *) Change: remove read Email permission, may lead to the e-mail attachments can not be previewed

    *) Feature: Add recursive directory search
    *) Feature: Add assembler syntax support
  • Loading branch information
jecelyin committed Nov 22, 2012
1 parent 0c47ee4 commit 6ecd84c
Show file tree
Hide file tree
Showing 94 changed files with 9,275 additions and 873 deletions.
8 changes: 8 additions & 0 deletions .classpath
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
<classpathentry kind="src" path="src"/>
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
<classpathentry kind="src" path="gen"/>
<classpathentry kind="output" path="bin/classes"/>
</classpath>
9 changes: 9 additions & 0 deletions .externalToolBuilders/NDK Builder.launch
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<launchConfiguration type="org.eclipse.ui.externaltools.ProgramBuilderLaunchConfigurationType">
<stringAttribute key="org.eclipse.debug.core.ATTR_REFRESH_SCOPE" value="${workspace}"/>
<booleanAttribute key="org.eclipse.debug.ui.ATTR_LAUNCH_IN_BACKGROUND" value="false"/>
<stringAttribute key="org.eclipse.ui.externaltools.ATTR_LOCATION" value="/jecelyin/istudio/android/Dev/android-ndk/ndk-build"/>
<stringAttribute key="org.eclipse.ui.externaltools.ATTR_RUN_BUILD_KINDS" value="full,incremental,clean"/>
<booleanAttribute key="org.eclipse.ui.externaltools.ATTR_TRIGGERS_CONFIGURED" value="true"/>
<stringAttribute key="org.eclipse.ui.externaltools.ATTR_WORKING_DIRECTORY" value="${workspace_loc:/920-Text-Editor}"/>
</launchConfiguration>
43 changes: 43 additions & 0 deletions .project
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>920-Text-Editor</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.android.ide.eclipse.adt.ApkBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.ui.externaltools.ExternalToolBuilder</name>
<triggers>clean,full,incremental,</triggers>
<arguments>
<dictionary>
<key>LaunchConfigHandle</key>
<value>&lt;project&gt;/.externalToolBuilders/NDK Builder.launch</value>
</dictionary>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>com.android.ide.eclipse.adt.AndroidNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
23 changes: 16 additions & 7 deletions AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.jecelyin.editor"
android:versionCode="33"
android:versionCode="36"
android:installLocation="auto"
android:versionName="12.8.26" >
android:versionName="12.11.22" >

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />
<uses-permission android:name="com.google.android.gm.permission.READ_GMAIL" />
<uses-permission android:name="com.google.android.providers.gmail.permission.READ_GMAIL"/>
<uses-sdk
<!-- <uses-permission android:name="com.google.android.gm.permission.READ_GMAIL" /> -->
<!-- <uses-permission android:name="com.google.android.providers.gmail.permission.READ_GMAIL"/>
--> <uses-sdk
android:minSdkVersion="7"
android:targetSdkVersion="7" >
</uses-sdk>

<application
android:icon="@drawable/icon"
android:label="@string/app_name"
android:theme="@style/MultiTab">
android:theme="@style/MultiTab" android:debuggable="true">
<activity
android:configChanges="orientation|keyboardHidden"
android:label="@string/app_name"
Expand All @@ -35,7 +35,14 @@
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="file" />
<data android:scheme="content" />
<data android:mimeType="application/*" />
<data android:mimeType="application/x-*" />
<data android:mimeType="application/xml" />
<data android:mimeType="application/postscript" />
<data android:mimeType="application/plain" />
<data android:mimeType="application/x-tcl" />
<data android:mimeType="application/x-javascript" />
<data android:mimeType="application/inf" />
<data android:mimeType="application/octet-stream" />
<data android:mimeType="text/*" />
</intent-filter>
<intent-filter >
Expand Down Expand Up @@ -63,6 +70,8 @@
</activity>
<activity android:name="Donate" >
</activity>
<activity android:name="Grep" >
</activity>
</application>

</manifest>
124 changes: 25 additions & 99 deletions assets/CHANGES
Original file line number Diff line number Diff line change
@@ -1,99 +1,25 @@
Version 12.8.26
*) Feature: add custom Data and Time format
*) Feature: disable the 4.0 or later version of the spelling check.
*) Feature: preview mail attachment

*) Change: the right-click menu to copy / paste failure problem
*) Change: Optimized toolbars and Symbol bar UI
*) Change: update HTML highlight
Thank to Randy Santo
*) Change: update VHDL highlight
*) Change: fixed when you click on symbols, symbols bar to jump back to the original position BUG.
*) Change: add file loading progress bar (ineffective)

Version 12.4.25
*) Feature: Add "Duplicate Line Or Selected text" menu
*) Feature: Add Fortran, ColdFusion, VHDL syntax highlighting
*) Feature: Add "Document Statistics" menu

*) Change: Add a color indicator for the document Tab

*) Bug Fix: Open multiple documents, one document has to change and switch to other Tab, and then exit the app, not prompted to save
*) Bug Fix: Fixed some of the phone, context menu is no copy, cut, paste menu
*) Bug Fix: The same as the length of the text, but the document changes, not prompted to save

Version 12.3.27
*) Bug Fix: fixed click on the text area under the 4.0 system crash bug

Version 12.3.24
*) Feature: new color theme
*) Feature: the toolbar to add access the menu button (only >=android3.0)
*) Feature: touch to enlarge or reduce text size
*) Feature: Remember last open tabs
*) Feature: Add Matlab and GO syntax highlighting
*) Feature: Ctrl + S to quick save (not tested)
*) Feature: Add french language support
Thank to Edouard MARCHAL

*) Change: no longer supported android1.6

*) Bug Fix: Fixed not correctly identify the GBK encoding
*) Bug Fix: Fixed a javascript highlight problems
*) Bug Fix: Find or replace the contents of removal of the space
*) Bug Fix: When a call is not automatically saved!
*) Bug Fix: File browser always scroll to the top

Version 12.3.6.2
*) Bug Fix: fixed enable the "open last file" led to the program may not start bug
Version 12.3.6.1
*) Bug Fix: close all tab error!

Version 12.3.6

*) Feature: new shortcut to use other programs to open or shared the current document
*) Feature: Add to open the file specified encoding
*) Feature: add "tab" right menu(long click to show)
*) Feature: support for receiving the text content or files from other programs to share

*) Change: beautification of the main menu
*) Change: Adjust the symbol column size
*) Change: Remember last open files to edit the location and coding
*) Change: Remember the symbol column position of the current Session

*) Bug Fix: Fixed the last edit location button to display the error
*) Bug Fix: Fixed "Save As" does not work Bug
*) Bug Fix: Enter a Tab character may appear two tab characters


Version 12.2.25beta2

*) Feature: Symbol bar to add "?" Symbol

*) Change: adjust the symbol bar close button size
*) Change: updated Russian translation
Thank to Калакин Алексей

*) Bug Fix: Fixed some phone can not use the hard keyboard
Thanks for all the feedback guy
*) Bug Fix: Tab and text content is lost after the screen rotation
Thank to Fabio Voltattorni


Changes with 12.2.25beta

*) Feature: multi-tab (the great update)
*) Feature: convert line breaks to solve the Android2.0 following version does not correctly display the \r symbol bug
*) Feature: display a new version of the changes log
*) Feature: add Pascal syntax highlighting

*) Change: add right-click menu to switch to show or hide the input method
*) Change: Adjust the Help menu and add the "Help" manual (keyboard shortcuts and customize the syntax highlighting)
*) Change: The default font "Monospace"
*) Change: the non-wrap mode, move to the right display line numbers

*) Bug Fix: Fixed file manager does not correctly display the file or folder contains spaces, such as: Ubuntu One
Thank to [email protected]
*) Bug Fix: Fixed different themes button is too wide
*) Bug Fix: Fixed some Chinese string encoding auto-detection error
*) Bug Fix: Fixed not automatically select the installation path cause can not be moved App to Sdcard the problem
Thank to Marcos Fernández
Version 12.11.23
    *) Bug Fix: switch input method causes the text into a line

    *) Change: remove read Email permission, may lead to the e-mail attachments can not be previewed

    *) Feature: Add recursive directory search
    *) Feature: Add assembler syntax support

Version 12.9.25
    *) Bug Fix: 920 text editor may pop up when you open the Email
    *) Bug Fix: ROOT privileges enabled some BUG
    *) Bug Fix: only open the last a file

    *) Change: using the system menu is disabled by default, resolves can not copy and paste
    *) Change: the "spell check" is disabled by default, resolves can not copy and paste
    *) Change: updated Italian, Spanish, Japanese language

    *) Feature: "save as" supports file encoding and linebreak char conversion
    *) Feature: "Open With.." menu to add Python, Perl, Lua, JavaScript, Tcl, the shell file to run in SL4A

Version 12.8.29
*) Bug Fix:fixed duplicate blank lines cause the editor to crash
*) Bug Fix:fixed may open an empty file cause the editor to crash

*) Feature:add Ruby syntax highlighting
112 changes: 18 additions & 94 deletions assets/CHANGES-CN
Original file line number Diff line number Diff line change
@@ -1,101 +1,25 @@
版本 12.8.26
*) 功能:添加自定义时间格式
*) 功能:禁用4.0以上版本的拼写检查功能
*) 功能:预览邮件的附件
版本 12.11.23
*) Bug Fix:切换输入法时导致文本变成一行

*) 更改:右键菜单复制/粘贴功能可能无效的问题
*) 更改:优化工具栏和符号栏UI
*) 更改:更新HTML高亮
感谢:Randy Santo
*) 更改:更新VHDL高亮
*) 更改:修正当文本区域获取焦点后符号栏跳回原位的问题
*) 更改:添加文件加载进度条(效果不好)
*) 更改:去掉读取Email权限,可能导致无法预览邮件附件

*) 功能:新增递归目录查找功能
*) 功能:添加汇编语法支持

版本 12.4.25
*) 功能: 添加 “重复行或选中的文本” 菜单
*) 功能: 添加fortran, ColdFusion, vhdl语法高亮
*) 功能: 添加文档统计

*) 更改: 有更改的文档标签显示红色

*) Bug Fix: 打开多个标签,其中一个有更改,然后退出程序,不提示保存
*) Bug Fix: 修复一些设备右键没有复制,剪切,粘贴菜单
*) Bug Fix: 文本长度不变,有改动,不提示保存

版本 12.3.27
*) Bug Fix: 修正4.0系统下点击文本区域崩溃的Bug

版本 12.3.24
*) 功能: 新增颜色主题
*) 功能: 工具栏添加访问菜单按钮(仅android3.0以上)
*) 功能: 触摸放大或缩小文字大小
*) 功能: 记住最后所有打开的标签
*) 功能: 添加Matlab和GO语法高亮
*) 功能: Ctrl+S快捷保存(未测试)
*) 功能: 添加法语支持
感谢:Edouard MARCHAL

*) 更改: 不再支持android1.6

*) Bug Fix: 修正可能无法正确识别GBK编码
*) Bug Fix: 修正一个javascript高亮问题
*) Bug Fix: 查找替换内容会去除左右空格
*) Bug Fix: 当有来电时无法自动保存!
*) Bug Fix: 文件浏览器总是滚动到顶部

版本 12.3.6.2
*) Bug Fix: 修正”启用打开最近文件“后无法启动程序

版本 12.3.6.1
*) Bug Fix: 关闭全部标签出错

版本 12.3.6

*) 功能: 新增快捷使用其它程序打开或共享当前文档
*) 功能: 添加按指定的编码打开文件
*) 功能: 添加"标签"菜单
*) 功能: 支持接收来自其它程序共享的文本内容或文件
版本 12.9.25
*) Bug Fix:某些打开方式出现920文本编辑器的情况
*) Bug Fix:启用ROOT权限后出现的一些BUG
*) Bug Fix:仅打开最后一个文件的问题

*) 更改: 美化主菜单
*) 更改: 调整符号栏尺寸
*) 更改: 记住最后打开文件的位置和编码
*) 更改: 记住当前Session的符号栏位置
*) 更改:默认不“使用系统菜单”,可解决一些不能复制粘贴的问题
*) 更改:默认禁用“拼写检查”,可解决一些不能复制粘贴的问题
*) 更改:更新意大利语,西班牙语,日语

*) Bug修正: 修正"最后编辑位置"按钮显示错误
*) Bug修正: 修正无法"另存为"Bug
*) Bug修正: 输入一个Tab字符可能出现2个Tab字符的情况


版本 12.2.25beta2
*) 功能:另存为时支持文件编码和换行符转换
*) 功能:“打开方式”菜单添加Python, Perl, Lua, JavaScript, Tcl, shell文件运行于SL4A

*) 功能: 符号栏增加“?”符号

*) 更改: 调整符号栏关闭按钮大小
*) 更改: 更新russian(俄语)翻译
感谢 Калакин Алексей

*) Bug修正: 修正一些手机无法使用硬键盘的问题
感谢 所有反馈的帅哥
*) Bug修正: 修正屏幕旋转后Tab和文本内容丢失的Bug
感谢 Fabio Voltattorni


版本 12.2.25beta

*) 功能: 多标签(伟大的更新)
*) 功能: 转换断行符,解决Android2.0以下版本不能正常显示\r符号
*) 功能: 显示新版本的改变日志
*) 功能: 增加Pascal语法高亮

*) 更改: 右键菜单增加切换显示或隐藏输入法
*) 更改: 调整帮助菜单并增加“帮助”手册(快捷键使用和自定义语法高亮)
*) 更改: 默认为“Monospace”等宽字体
*) 更改: “不自动换行”模式下向右移动时显示行号
版本 12.8.29
*) Bug Fix:修正复制空行导致编辑器崩溃
*) Bug Fix:修正打开空文件可以导致编辑器崩溃

*) Bug修正: 修正文件管理器不能正确显示含有空格的文件或文件夹,如: Ubuntu One
感谢 [email protected]
*) Bug修正: 修正在不同主题下按钮太宽的问题
*) Bug修正: 修正一些中文编码自动识别错误的问题
*) Bug修正: 修正不能自动选择安装路径导致无法移动App到Sdcard的问题
感谢 Marcos Fernández
*) 功能:添加Ruby语法高亮
9 changes: 9 additions & 0 deletions assets/donate.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,15 @@
<li>Michel Pitermann</li>
<li>Kevin Mears</li>
<li>Tom Louie</li>
<li>Cédric Heintz</li>
<li>赵先聪</li>
<li>DAVID ARSO CIVIL</li>
<li>Meng Li</li>
<li>Visualdensity</li>
<li>Jesús Màrquez</li>
<li>Yoshimasa Ideguchi</li>
<li>Nathan Quinn</li>
<li>Vincent Scholze</li>
</ul>
</p>
</div>
Expand Down
Binary file modified assets/syntax.zip
Binary file not shown.
3 changes: 2 additions & 1 deletion jni/Application.mk
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# The ARMv7 is significanly faster due to the use of the hardware FPU
APP_BUILD_SCRIPT := $(call my-dir)/highlight/Android.mk \
$(call my-dir)/charset-detector/Android.mk
$(call my-dir)/charset-detector/Android.mk \
$(call my-dir)/grep/Android.mk
Loading

0 comments on commit 6ecd84c

Please sign in to comment.