mirror of
https://github.com/fankes/termux-app.git
synced 2025-09-06 10:45:23 +08:00
sessions: failsafe session is now accessible via separate launcher icon
Also enables session autoclosing so no more "annoying" messages about "process completed - press enter". There autoclosing will be performed on exit codes '0' and '130'. On Android TV devices old behaviour will be used - auto close enabled for all sessions when amount of running sessions >1.
This commit is contained in:
committed by
Fredrik Fornwall
parent
bda80547ad
commit
fe41cd486f
@@ -37,14 +37,25 @@
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
<category android:name="android.intent.category.DEFAULT"/>
|
||||
</intent-filter>
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LEANBACK_LAUNCHER" />
|
||||
<category android:name="android.intent.category.DEFAULT"/>
|
||||
</intent-filter>
|
||||
<meta-data android:name="android.app.shortcuts" android:resource="@xml/shortcuts" />
|
||||
</activity>
|
||||
|
||||
<activity
|
||||
android:name="com.termux.app.TermuxFailsafeActivity"
|
||||
android:label="@string/app_failsafe_mode" >
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity
|
||||
android:name="com.termux.app.TermuxHelpActivity"
|
||||
android:exported="false"
|
||||
|
Reference in New Issue
Block a user