mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-11 07:01:43 +00:00
9cd425e945
fix decals again. clampmap should work properly with them, also removed the extra part. fix rtlight pvs issue with respect to portals fix vid_reload causing the d3d9 renderer to use nearest sampling terrain system should now mostly work with d3d9. still has issues. fix q3 volumetric fog not applying to models git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5174 fc73d0e0-1445-4013-8a0c-d673dee63da5
81 lines
4.3 KiB
XML
81 lines
4.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.fteqw"
|
|
android:versionCode="1"
|
|
android:versionName="1.05"
|
|
android:installLocation="auto">
|
|
<uses-sdk android:minSdkVersion="5" android:targetSdkVersion="8"/>
|
|
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
|
|
<uses-permission android:name="android.permission.VIBRATE"></uses-permission>
|
|
|
|
<application android:icon="@drawable/icon" android:label="@string/app_name">
|
|
<activity android:name=".FTEDroidActivity"
|
|
android:label="@string/app_name"
|
|
android:configChanges="keyboardHidden|orientation">
|
|
|
|
<!-- launcher icon -->
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
|
|
<!-- custom url scheme, because someone didn't like using mime types properly -->
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.VIEW" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
<data android:scheme="qw" />
|
|
</intent-filter>
|
|
|
|
<!-- mime types with unspecified schemes (please don't explode). one for each mime type. because I'm paranoid. -->
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.VIEW" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
<data android:mimeType="application/x-qtv" />
|
|
</intent-filter>
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.VIEW" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
<data android:mimeType="text/x-quaketvident" />
|
|
</intent-filter>
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.VIEW" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
<data android:mimeType="application/x-ftemanifest" />
|
|
</intent-filter>
|
|
|
|
<!-- various file extensions for when people forgot the mime type or simply don't know it -->
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.VIEW" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
<data android:scheme="http" android:host="*" android:pathPattern=".*\\.qtv" />
|
|
<data android:scheme="content" android:host="*" android:pathPattern=".*\\.qtv" />
|
|
<data android:scheme="file" android:host="*" android:pathPattern=".*\\.qtv" />
|
|
<data android:scheme="http" android:host="*" android:pathPattern=".*\\.mvd" />
|
|
<data android:scheme="content" android:host="*" android:pathPattern=".*\\.mvd" />
|
|
<data android:scheme="file" android:host="*" android:pathPattern=".*\\.mvd" />
|
|
<data android:scheme="http" android:host="*" android:pathPattern=".*\\.dem" />
|
|
<data android:scheme="content" android:host="*" android:pathPattern=".*\\.dem" />
|
|
<data android:scheme="file" android:host="*" android:pathPattern=".*\\.dem" />
|
|
<data android:scheme="http" android:host="*" android:pathPattern=".*\\.pak" />
|
|
<data android:scheme="content" android:host="*" android:pathPattern=".*\\.pak" />
|
|
<data android:scheme="file" android:host="*" android:pathPattern=".*\\.pak" />
|
|
<data android:scheme="http" android:host="*" android:pathPattern=".*\\.pk3" />
|
|
<data android:scheme="content" android:host="*" android:pathPattern=".*\\.pk3" />
|
|
<data android:scheme="file" android:host="*" android:pathPattern=".*\\.pk3" />
|
|
<data android:scheme="http" android:host="*" android:pathPattern=".*\\.bsp" />
|
|
<data android:scheme="content" android:host="*" android:pathPattern=".*\\.bsp" />
|
|
<data android:scheme="file" android:host="*" android:pathPattern=".*\\.bsp" />
|
|
<data android:scheme="http" android:host="*" android:pathPattern=".*\\.fmf" />
|
|
<data android:scheme="content" android:host="*" android:pathPattern=".*\\.fmf" />
|
|
<data android:scheme="file" android:host="*" android:pathPattern=".*\\.fmf" />
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
</manifest>
|
|
|