aboutsummaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorJeffrey Sharkey <jsharkey@jsharkey.org>2008-09-15 05:19:47 +0000
committerJeffrey Sharkey <jsharkey@jsharkey.org>2008-09-15 05:19:47 +0000
commit345c94f8eb6a837a39123f5bc2880e4a5c8c4d8d (patch)
tree2780d2ca523d1c9e8b65a96cac8071e4aa8bef48 /AndroidManifest.xml
parent071e39dc7e7d06c021a6d65ae7a65242c8ea99ed (diff)
downloadconnectbot-345c94f8eb6a837a39123f5bc2880e4a5c8c4d8d.tar.gz
connectbot-345c94f8eb6a837a39123f5bc2880e4a5c8c4d8d.tar.bz2
connectbot-345c94f8eb6a837a39123f5bc2880e4a5c8c4d8d.zip
* changed handling of Console window to accept ssh://user@host:port/#nickname intents, which will also be used by desktop shortcuts later
* changed terminalbridge to handle all hostkey and password authentication through console instead of android gui (mimics traditional openssh) * added disconnect and paste functionality to Console menu
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml25
1 files changed, 19 insertions, 6 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index a046a20..32caf4b 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -8,12 +8,29 @@
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
+ <intent-filter>
+ <action android:name="android.intent.action.CREATE_SHORTCUT" />
+ <category android:name="android.intent.category.DEFAULT" />
+ </intent-filter>
</activity>
- <activity android:name=".HostEditor">
+ <activity android:name=".HostEditor" />
+ <activity android:name=".SettingsActivity" />
+ <activity android:name=".AboutActivity" />
+
+ <service android:name="org.connectbot.service.TerminalManager" />
+
+ <activity android:name="org.connectbot.Console" android:screenOrientation="landscape">
+ <intent-filter>
+ <action android:name="android.intent.action.VIEW" />
+ <category android:name="android.intent.category.DEFAULT" />
+ <data android:scheme="ssh" />
+ <!-- format: ssh://user@host:port/#nickname -->
+ </intent-filter>
</activity>
-<!-- pack=org.theb.ssh
+
+<!-- package=org.theb.ssh
<activity android:name=".Console" android:screenOrientation="landscape">
</activity>
@@ -21,10 +38,6 @@
-->
- <service android:name="org.connectbot.service.TerminalManager" />
-
- <activity android:name="org.connectbot.Console" android:screenOrientation="landscape">
- </activity>
<provider android:name="org.theb.ssh.HostDbProvider" android:authorities="org.theb.provider.HostDb"/>