From 01de6b4d1835b88ca5ed5fdb29adbbc9fa5465f2 Mon Sep 17 00:00:00 2001 From: "Nicola Spanti (RyDroid)" Date: Sat, 7 Nov 2015 19:39:13 +0100 Subject: [PATCH] Minor changes in README and adding an EditorConfig file --- .editorconfig | 14 ++++++++++++++ README.md | 9 +++++---- 2 files changed, 19 insertions(+), 4 deletions(-) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..490584c5 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,14 @@ +# Copying and distribution of this file, with or without modification, +# are permitted in any medium without royalty provided this notice is +# preserved. This file is offered as-is, without any warranty. + +# EditorConfig +# http://EditorConfig.org + +# top-most EditorConfig file +root = true + +[*] +end_of_line = lf +insert_final_newline = true +charset = utf-8 diff --git a/README.md b/README.md index f37fa208..31f9b18d 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,8 @@ Termux app Termux is an Android terminal app and Linux environment. -* [Termux on Google Play](http://play.google.com/store/apps/details?id=com.termux) +* [Termux on Google Play Store](https://play.google.com/store/apps/details?id=com.termux) +* [Termux on F-Droid](https://f-droid.org/repository/browse/?fdid=com.termux) * [termux.com](http://termux.com) * [Termux Help](http://termux.com/help/) * [Termux app on GitHub](https://github.com/termux/termux-app) @@ -14,7 +15,7 @@ Termux is an Android terminal app and Linux environment. License ======= -Released under the GPLv3 license. Contains code from `Terminal Emulator for Android` which is released under the Apache License. +Released under [the GPLv3 license](https://www.gnu.org/licenses/gpl.html). Contains code from `Terminal Emulator for Android` which is released under [the Apache License](https://www.apache.org/licenses/). Building JNI libraries ====================== @@ -29,9 +30,9 @@ Terminal resources Terminal emulators ================== * VTE (libvte): Terminal emulator widget for GTK+, mainly used in gnome-terminal. [Source](https://github.com/GNOME/vte), [Open Issues](https://bugzilla.gnome.org/buglist.cgi?quicksearch=product%3A%22vte%22+), and [All (including closed) issues](https://bugzilla.gnome.org/buglist.cgi?bug_status=RESOLVED&bug_status=VERIFIED&chfield=resolution&chfieldfrom=-2000d&chfieldvalue=FIXED&product=vte&resolution=FIXED). -* iTerm 2: Mac terminal application. [Source](https://github.com/gnachman/iTerm2), [Issues](https://gitlab.com/gnachman/iterm2/issues) and [Documentation](http://www.iterm2.com/documentation.html) (which includes [iTerm2 proprietary escape codes](http://www.iterm2.com/documentation-escape-codes.html)). +* iTerm 2: OS X terminal application. [Source](https://github.com/gnachman/iTerm2), [Issues](https://gitlab.com/gnachman/iterm2/issues) and [Documentation](http://www.iterm2.com/documentation.html) (which includes [iTerm2 proprietary escape codes](http://www.iterm2.com/documentation-escape-codes.html)). * Konsole: KDE terminal application. [Source](https://projects.kde.org/projects/kde/applications/konsole/repository), in particular [tests](https://projects.kde.org/projects/kde/applications/konsole/repository/revisions/master/show/tests), [Bugs](https://bugs.kde.org/buglist.cgi?bug_severity=critical&bug_severity=grave&bug_severity=major&bug_severity=crash&bug_severity=normal&bug_severity=minor&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&product=konsole) and [Wishes](https://bugs.kde.org/buglist.cgi?bug_severity=wishlist&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&product=konsole). -* hterm: Javascript terminal implementation from chromium. [Source](https://github.com/chromium/hterm), including [tests](https://github.com/chromium/hterm/blob/master/js/hterm_vt_tests.js), and [google group](https://groups.google.com/a/chromium.org/forum/#!forum/chromium-hterm). +* hterm: JavaScript terminal implementation from Chromium. [Source](https://github.com/chromium/hterm), including [tests](https://github.com/chromium/hterm/blob/master/js/hterm_vt_tests.js), and [Google group](https://groups.google.com/a/chromium.org/forum/#!forum/chromium-hterm). * xterm: The grandfather of terminal emulators. [Source](http://invisible-island.net/datafiles/release/xterm.tar.gz). * Connectbot: Android SSH client. [Source](https://github.com/connectbot/connectbot) * Android Terminal Emulator: Android terminal app which Termux terminal handling is based on. Inactive. [Source](https://github.com/jackpal/Android-Terminal-Emulator).