Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions .classpath

This file was deleted.

2 changes: 2 additions & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export JAVA_HOME=/usr/lib/jvm/java-17-openjdk-amd64
export PATH="$JAVA_HOME/bin:$PATH"
53 changes: 49 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,50 @@
bin
gen
launchpad-*.tar.gz
local.properties
*~
bin/
build/
gen/
.gradle/

!**/src/**/build/

# Ignore Gradle GUI config
gradle-app.setting

# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
!gradle-wrapper.jar

# Avoid ignore Gradle wrapper properties
!gradle-wrapper.properties

# Cache of project
.gradletasknamecache

# Eclipse Gradle plugin generated files
# Eclipse Core
.project
# JDT-specific (Eclipse Java Development Tools)
.classpath

# Compiled class file
*.class

# Log file
*.log

# BlueJ files
*.ctxt

# Mobile Tools for Java (J2ME)
.mtj.tmp/

# Package Files #
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
replay_pid*
33 changes: 0 additions & 33 deletions .project

This file was deleted.

5 changes: 0 additions & 5 deletions .settings/org.eclipse.jdt.core.prefs

This file was deleted.

114 changes: 0 additions & 114 deletions .settings/org.eclipse.jdt.ui.prefs

This file was deleted.

11 changes: 11 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"java.jdt.ls.java.home": "/usr/lib/jvm/java-17-openjdk-amd64",
"java.home": "/usr/lib/jvm/java-17-openjdk-amd64",
"java.configuration.updateBuildConfiguration": "automatic",
"java.configuration.runtimes": [
{
"name": "JavaSE-17",
"path": "/usr/lib/jvm/java-17-openjdk-amd64"
}
]
}
20 changes: 11 additions & 9 deletions AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,11 @@
limitations under the License.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="sk.vx.connectbot"
android:versionName="1.7.1-29"
android:versionCode="29"
android:versionName="1.8.0-30"
android:versionCode="30"
android:installLocation="auto">

<uses-sdk android:targetSdkVersion="11" android:minSdkVersion="8" />
<uses-sdk android:minSdkVersion="15" android:targetSdkVersion="25" />

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.VIBRATE" />
Expand Down Expand Up @@ -50,7 +49,7 @@
android:backupAgent=".service.BackupAgent"
android:killAfterRestore="true">

<activity android:name=".HostListActivity" >
<activity android:name=".HostListActivity" android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
Expand All @@ -68,7 +67,7 @@
</intent-filter>
</activity>

<activity android:name=".PubkeyListActivity" android:configChanges="keyboardHidden|orientation" >
<activity android:name=".PubkeyListActivity" android:configChanges="keyboardHidden|orientation" android:exported="true">
<intent-filter>
<action android:name="org.openintents.ssh.agent.IDENTITY_ADMIN" />
<category android:name="android.intent.category.DEFAULT" />
Expand All @@ -86,19 +85,22 @@

<service android:name="sk.vx.connectbot.service.TerminalManager"
android:configChanges="keyboardHidden|orientation"
android:description="@string/service_desc" />
android:description="@string/service_desc"
android:exported="false" />

<service android:name="sk.vx.connectbot.service.AuthAgentService"
android:description="@string/auth_agent_service_desc"
android:permission="org.openintents.ssh.permission.ACCESS_SSH_AGENT">
android:permission="org.openintents.ssh.permission.ACCESS_SSH_AGENT"
android:exported="true">
<intent-filter>
<action android:name="org.openintents.ssh.BIND_SSH_AGENT_SERVICE" />
</intent-filter>
</service>

<activity android:name=".ConsoleActivity" android:configChanges="keyboardHidden|orientation"
android:theme="@style/NoTitle" android:windowSoftInputMode="stateAlwaysVisible|adjustResize"
android:launchMode="singleTop">
android:launchMode="singleTop"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
Expand Down
Loading