aboutsummaryrefslogtreecommitdiffstats
path: root/app/src/main
Commit message (Collapse)AuthorAgeFilesLines
* Handle mouse events when the terminal won't. Add more comments.Jeremy Klein2015-10-012-4/+13
|
* Forward mouseevents to the terminal when appropriate.Jeremy Klein2015-10-013-21/+60
| | | | | | | Only handle mouse events locally if shift is held. Partially fixes #225. Still need to figure out mouse wheel forwarding and proper copy support when the terminal is handling selection itself (ie in an editor).
* jlklein comment.Kyle Horimoto2015-10-011-0/+1
|
* Remove launcher intent-filter.Kyle Horimoto2015-10-011-5/+5
|
* Add host display editing UI.Kyle Horimoto2015-10-014-143/+307
|
* Fix lint.Kyle Horimoto2015-09-2831-41/+31
|
* Add FAB to port forward activity.Kyle Horimoto2015-09-282-63/+67
|
* Don't allow suggestions in text fields.Kyle Horimoto2015-09-251-3/+3
|
* kruton comments.Kyle Horimoto2015-09-253-17/+37
|
* Add EditHostActivity.Kyle Horimoto2015-09-2518-0/+623
|
* Remove the reference to trackball from the bumpy arrows description.Jeremy Klein2015-09-251-1/+1
|
* Change app color scheme to light blueRyan Hansberry2015-09-241-5/+5
|
* Change getColor call that crashes on pre-APIv14Ryan Hansberry2015-09-241-3/+3
|
* Only use pubkey if it is not nullKenny Root2015-09-231-4/+3
| | | | | Since we null check the pubkey, we should make sure not to dereference it later on.
* Only use host if it is not nullKenny Root2015-09-231-8/+9
| | | | | Since we null check the host, we should make sure not to dereference it later on.
* Add padding to bottom of HostList to prevent FAB covering list.Ryan Hansberry2015-09-231-0/+4
|
* Fix app name in launcher being 'Hosts'Ryan Hansberry2015-09-231-1/+1
|
* Make HostListActivity use intended title 'Hosts'.Ryan Hansberry2015-09-231-0/+1
|
* Give color to action button in GeneratePubkeyActivity.Ryan Hansberry2015-09-231-2/+9
|
* Merge pull request #239 from rhansby/convert-generatepubkey-to-appcompatJeremy Klein2015-09-231-2/+2
|\ | | | | Convert GeneratePubkeyActivity to AppCompatActivity.
| * Convert GeneratePubkeyActivity to AppCompatActivity.Ryan Hansberry2015-09-231-2/+2
| |
* | Update translationsKenny Root2015-09-223-0/+26
| |
* | Merge pull request #223 from rhansby/fix-missing-pref-summariesJeremy Klein2015-09-221-1/+2
|\ \ | | | | | | Fix missing summaries for SwitchPreferences in host editing list.
| * | Fix missing summaries for SwitchPreferences in host editing list.Ryan Hansberry2015-09-221-1/+2
| |/ | | | | | | Fixes #222
* | Merge pull request #233 from rhansby/new-connection-status-iconsJeremy Klein2015-09-2216-3/+3
|\ \ | | | | | | Add Material Design HostList status indicator icons
| * | Add Material Design HostList status indicator iconsRyan Hansberry2015-09-2216-3/+3
| | |
* | | Fix empty host list blurb. (in English only)Ryan Hansberry2015-09-221-1/+1
| |/ |/|
* | Fix style issues.Ryan Hansberry2015-09-222-3/+2
| |
* | Merge branch 'master' into convert-activities-to-appcompatRyan Hansberry2015-09-2210-76/+174
|\|
| * Spaces -> tabs.Kyle Horimoto2015-09-181-3/+3
| |
| * Cleanup.Kyle Horimoto2015-09-181-5/+2
| |
| * Add FAB to host list.Kyle Horimoto2015-09-1810-78/+179
| |
* | Convert PubkeyListActivity, PortFowardListActivity, and HostListActivity to ↵Ryan Hansberry2015-09-225-668/+646
| | | | | | | | AppCompat, using AppCompatListActivity superclass
* | Convert SettingsActivity and HostEditorActivity to AppCompat.Ryan Hansberry2015-09-213-4/+136
| |
* | Convert ColorsActivity to AppCompat ActivityRyan Hansberry2015-09-211-2/+2
| |
* | Convert HelpActivity to AppCompatActivity.Ryan Hansberry2015-09-211-2/+2
| |
* | Convert HelpTopicActivity and EulaActivity to AppCompatActivity.Ryan Hansberry2015-09-213-5/+5
| |
* | Convert PubkeyListActivity to AppCompatRyan Hansberry2015-09-183-222/+321
|/
* Merge pull request #218 from khorimoto/fix-testsKenny Root2015-09-181-1/+3
|\ | | | | Fix StartupTest tests to work with RecyclerView.
| * Fix StartupTest tests to work with RecyclerView.Kyle Horimoto2015-09-171-1/+3
| |
* | Merge pull request #205 from rhansby/use-switches-not-checkboxesKenny Root2015-09-187-28/+420
|\ \ | | | | | | Changed Settings options to use switches instead of checkboxes.
| * | Moved SwitchCompatPreference to util package for consistency with other ↵Ryan Hansberry2015-09-173-18/+20
| | | | | | | | | | | | custom Preferences.
| * | Merge branch 'master' into use-switches-not-checkboxesRyan Hansberry2015-09-176-188/+216
| |\|
| * | Make APIv14 and above use SwitchPreference, and below use custom ↵Ryan Hansberry2015-09-174-45/+333
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | SwitchCompatPreference. Created API-v14-and-above preferences.xml and host_prefs.xml files (under xml-v14/) in order to do so. This unfortunately for the most part duplicates preferences.xml and host_prefs.xml. This method is an effective workaround for the visual glitch encountered earlier, as recorded here: https://github.com/connectbot/connectbot/pull/205#issuecomment-140547689
| * | Added SwitchCompat switches to Host Preferences.Ryan Hansberry2015-09-161-0/+4
| | |
| * | Switched to using SwitchCompat instead of PreferenceSwitch in order to ↵Ryan Hansberry2015-09-154-13/+111
| | | | | | | | | | | | | | | | | | support pre-APIv14. Big thanks to: https://plus.sandbox.google.com/+ChristianGollner/posts/badausxo1J6
| * | Changed Settings options to use switches instead of checkboxes.Ryan Hansberry2015-09-151-13/+13
| | | | | | | | | | | | Fixes #169.
* | | Switch all pubkey icon references to new icons.Ryan Hansberry2015-09-171-3/+3
| | |
* | | Replaced old pubkey lock/unlock icons with new Material Design icons.Ryan Hansberry2015-09-1713-3/+2
| |/ |/| | | | | This fixes #207.
* | Use AppCompatActivity instead of Activity.Kyle Horimoto2015-09-172-28/+4
| |