aboutsummaryrefslogtreecommitdiffstats
path: root/app/src
Commit message (Collapse)AuthorAgeFilesLines
...
* | 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
|/
* Use action bar open action in tests instead of menu keyKenny Root2015-09-181-1/+2
|
* Make test matches a bit more descriptiveKenny Root2015-09-181-3/+3
|
* Merge pull request #218 from khorimoto/fix-testsKenny Root2015-09-183-63/+87
|\ | | | | Fix StartupTest tests to work with RecyclerView.
| * Fix StartupTest tests to work with RecyclerView.Kyle Horimoto2015-09-173-63/+87
| |
* | 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
| |
* | Revert "Extend AppCompatActivity instead of Activity."Kenny Root2015-09-171-2/+2
| | | | | | | | | | | | This partially reverts commit fc419491da8693446a98abf9461c00ecf21daa4b. Fixes problem with merge of #206
* | Extend AppCompatActivity instead of Activity.Kyle Horimoto2015-09-161-3/+2
| |
* | Removed unnecessary imports.Kyle Horimoto2015-09-161-3/+0
| |
* | Clean up code.Kyle Horimoto2015-09-151-15/+21
| |
* | Adjusted style to support pre-v11 devices.Kyle Horimoto2015-09-153-1/+8
| |
* | Convert to using RecyclerView.Kyle Horimoto2015-09-143-157/+200
|/
* Kill shell process after exiting local transportKenny Root2015-09-141-15/+22
| | | | Fixes #200
* Add a bit more debugging for saving a known hostKenny Root2015-09-141-4/+6
|
* Remove hostkey and hostkeyalgo from HostBeanKenny Root2015-09-141-22/+0
| | | | | | These are never touched directly via HostBean, so remove them from the HostBean. This fixes #199, but a change in sshlib around KnownHosts might be a bit better.
* Wrap saving a known host in a transactionKenny Root2015-09-141-3/+9
|
* Merge pull request #195 from kruton/database-refactorKenny Root2015-09-1118-438/+479
|\ | | | | Database refactor, part 1
| * Fix merge error in PubkeyListActivityKenny Root2015-09-111-5/+0
| |
| * Remove unused importsKenny Root2015-09-112-3/+0
| |
| * Merge branch 'master' into database-refactorKenny Root2015-09-119-62/+132
| |\
| * | Rename the "red" host test entry to be more uniqueKenny Root2015-09-111-3/+3
| | |
| * | Try to add workaround for Espresso test raceKenny Root2015-09-111-1/+41
| | | | | | | | | | | | | | | | | | The keyboard was not dismissing before the next espresso action ran, so it would send the input event to the wrong window and cause a security exception.
| * | Switch TerminalBridge over to ColorStorage and HostStorageKenny Root2015-09-116-11/+15
| | |
| * | Call saveHost instead of specialized updateFontSizeKenny Root2015-09-112-27/+8
| | |
| * | Switch ColorActivity to ColorStorage interfaceKenny Root2015-09-111-1/+2
| | |
| * | Add interfaces for HostStorage and ColorStorageKenny Root2015-09-113-1/+123
| | | | | | | | | | | | An attempt to help with testing.
| * | Change colors list to primitive arrayKenny Root2015-09-113-12/+12
| | |
| * | Revert "Never cache instances of the HostDatabase"Kenny Root2015-09-118-48/+80
| | | | | | | | | | | | | | | | | | | | | This reverts commit 57afa9bdc5b269a48bd27fc8455cab4cb956d02a. This won't work with injection and makes testing a bit harder, so revert it.
| * | Revert "More no caching of HostDatabase"Kenny Root2015-09-111-6/+3
| | | | | | | | | | | | This reverts commit 3f34fa42ea20546dfccad72a2e31681eb17797c8.
| * | Add back table reset for testingKenny Root2015-09-111-3/+19
| | | | | | | | | | | | This seems to be more reliable than other methods.
| * | Merge branch 'master' into database-refactorKenny Root2015-09-111-9/+5
| |\ \
| * | | Remove unused imports in BackupAgentKenny Root2015-09-071-5/+0
| | | |
| * | | Optimize imports in StartupTestKenny Root2015-09-071-12/+3
| | | |
| * | | Only try to set title when TerminalBridge successfully connectedKenny Root2015-09-071-4/+4
| | | |
| * | | Do not cache instances of PubkeyDatabaseKenny Root2015-09-071-15/+15
| | | |
| * | | More no caching of HostDatabaseKenny Root2015-09-071-4/+9
| | | |
| * | | Never cache instances of the HostDatabaseKenny Root2015-09-078-82/+50
| | | |
| * | | Update pubkey list in onStart instead of onCreateKenny Root2015-09-071-9/+3
| | | |