Compare commits
26 Commits
atscript_e
...
v0.7.3
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0611b1a0d5 | ||
|
|
20bf067e3d | ||
|
|
57ba9dfa69 | ||
|
|
8d4adab240 | ||
|
|
9e799962e9 | ||
|
|
29973a74dd | ||
|
|
8e98805a93 | ||
|
|
72a229a78a | ||
|
|
aefa578004 | ||
|
|
4b75f06987 | ||
|
|
61ec20c775 | ||
|
|
518ada6a82 | ||
|
|
660504ca72 | ||
|
|
f5df781fc9 | ||
|
|
50751390a3 | ||
|
|
a24672a3f1 | ||
|
|
b06c5b9b15 | ||
|
|
7cc2d303ef | ||
|
|
106203d85b | ||
|
|
8b3ac992ce | ||
|
|
1fabb499a9 | ||
|
|
51e63167a0 | ||
|
|
37ef73d9e2 | ||
|
|
b950993852 | ||
|
|
4a2aa90373 | ||
|
|
161f516a98 |
@@ -18,7 +18,7 @@
|
||||
<exclude-output />
|
||||
<content url="file://$MODULE_DIR$">
|
||||
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
|
||||
<sourceFolder url="file://$MODULE_DIR$/gen" isTestSource="false" />
|
||||
<sourceFolder url="file://$MODULE_DIR$/gen" isTestSource="false" generated="true" />
|
||||
</content>
|
||||
<orderEntry type="inheritedJdk" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
|
||||
@@ -1,65 +1,68 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<manifest
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.gpl.rpg.AndorsTrail"
|
||||
android:versionCode="40"
|
||||
android:versionName="0.7.1dev"
|
||||
android:installLocation="auto"
|
||||
>
|
||||
<uses-sdk
|
||||
android:minSdkVersion="4"
|
||||
android:targetSdkVersion="17"
|
||||
/>
|
||||
|
||||
<supports-screens
|
||||
android:smallScreens="true"
|
||||
android:normalScreens="true"
|
||||
android:largeScreens="true"
|
||||
android:xlargeScreens="true"
|
||||
android:anyDensity="true"
|
||||
/>
|
||||
|
||||
<uses-permission
|
||||
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
|
||||
/>
|
||||
|
||||
<application
|
||||
android:name=".AndorsTrailApplication"
|
||||
android:label="@string/app_name"
|
||||
android:icon="@drawable/icon"
|
||||
android:description="@string/app_description"
|
||||
android:allowBackup="true"
|
||||
>
|
||||
<activity
|
||||
android:name=".activity.StartScreenActivity"
|
||||
android:clearTaskOnLaunch="true"
|
||||
>
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<activity
|
||||
android:name=".activity.MainActivity"
|
||||
android:label="@string/app_name"
|
||||
android:theme="@style/Theme.NoBackground"
|
||||
/>
|
||||
<activity android:name=".activity.HeroinfoActivity" />
|
||||
<activity android:name=".activity.MonsterInfoActivity" android:theme="@android:style/Theme.Dialog" />
|
||||
<activity android:name=".activity.ItemInfoActivity" android:theme="@android:style/Theme.Dialog" />
|
||||
<activity android:name=".activity.LevelUpActivity" android:theme="@android:style/Theme.Dialog" />
|
||||
<activity android:name=".activity.MonsterEncounterActivity" android:theme="@android:style/Theme.Dialog" />
|
||||
<activity android:name=".activity.ConversationActivity" android:theme="@android:style/Theme.Dialog" />
|
||||
<activity android:name=".activity.ShopActivity" />
|
||||
<activity android:name=".activity.AboutActivity" />
|
||||
<activity android:name=".activity.LoadingActivity" />
|
||||
<activity android:name=".activity.Preferences" />
|
||||
<activity android:name=".activity.LoadSaveActivity" android:theme="@android:style/Theme.Dialog" />
|
||||
<activity android:name=".activity.ActorConditionInfoActivity" android:theme="@android:style/Theme.Dialog" />
|
||||
<activity android:name=".activity.BulkSelectionInterface" android:theme="@android:style/Theme.Dialog" />
|
||||
<activity android:name=".activity.SkillInfoActivity" android:theme="@android:style/Theme.Dialog" />
|
||||
<activity android:name=".activity.DisplayWorldMapActivity" />
|
||||
</application>
|
||||
|
||||
</manifest>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<manifest
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.gpl.rpg.AndorsTrail"
|
||||
android:versionCode="44"
|
||||
android:versionName="0.7.3"
|
||||
android:installLocation="auto"
|
||||
>
|
||||
<uses-sdk
|
||||
android:minSdkVersion="4"
|
||||
android:targetSdkVersion="28"
|
||||
/>
|
||||
|
||||
<supports-screens
|
||||
android:smallScreens="true"
|
||||
android:normalScreens="true"
|
||||
android:largeScreens="true"
|
||||
android:xlargeScreens="true"
|
||||
android:anyDensity="true"
|
||||
/>
|
||||
|
||||
<uses-permission
|
||||
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
|
||||
/>
|
||||
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /><uses-permission android:name="android.permission.READ_LOGS"/>
|
||||
|
||||
|
||||
<application
|
||||
android:name=".AndorsTrailApplication"
|
||||
android:label="@string/app_name"
|
||||
android:icon="@drawable/icon"
|
||||
android:description="@string/app_description"
|
||||
android:allowBackup="true"
|
||||
android:theme="@style/AndorsTrailTheme_Blue"
|
||||
>
|
||||
<activity
|
||||
android:name=".activity.StartScreenActivity"
|
||||
android:clearTaskOnLaunch="true"
|
||||
>
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<activity
|
||||
android:name=".activity.MainActivity"
|
||||
android:label="@string/app_name"
|
||||
android:theme="@style/AndorsTrailTheme_Blue.NoBackground"
|
||||
/>
|
||||
<activity android:name=".activity.HeroinfoActivity" />
|
||||
<activity android:name=".activity.MonsterInfoActivity" android:theme="@style/AndorsTrailDialogTheme_Blue" />
|
||||
<activity android:name=".activity.ItemInfoActivity" android:theme="@style/AndorsTrailDialogTheme_Blue" />
|
||||
<activity android:name=".activity.LevelUpActivity" android:theme="@style/AndorsTrailDialogTheme_Blue" />
|
||||
<activity android:name=".activity.MonsterEncounterActivity" android:theme="@style/AndorsTrailDialogTheme_Blue" />
|
||||
<activity android:name=".activity.ConversationActivity" android:theme="@style/AndorsTrailDialogTheme_Blue" />
|
||||
<activity android:name=".activity.ShopActivity" />
|
||||
<activity android:name=".activity.AboutActivity" />
|
||||
<activity android:name=".activity.LoadingActivity" />
|
||||
<activity android:name=".activity.Preferences" />
|
||||
<activity android:name=".activity.LoadSaveActivity" android:theme="@style/AndorsTrailDialogTheme_Blue" />
|
||||
<activity android:name=".activity.ActorConditionInfoActivity" android:theme="@style/AndorsTrailDialogTheme_Blue" />
|
||||
<activity android:name=".activity.BulkSelectionInterface" android:theme="@style/AndorsTrailDialogTheme_Blue" />
|
||||
<activity android:name=".activity.SkillInfoActivity" android:theme="@style/AndorsTrailDialogTheme_Blue" />
|
||||
<activity android:name=".activity.DisplayWorldMapActivity" />
|
||||
</application>
|
||||
|
||||
</manifest>
|
||||
|
||||
37665
AndorsTrail/assets/translation/bg.po
Normal file
37665
AndorsTrail/assets/translation/ca.po
Normal file
37815
AndorsTrail/assets/translation/cs.po
Normal file
37660
AndorsTrail/assets/translation/es_AR.po
Normal file
37672
AndorsTrail/assets/translation/fi.po
Executable file
37672
AndorsTrail/assets/translation/gl.po
Executable file
38097
AndorsTrail/assets/translation/hu.po
Normal file
37678
AndorsTrail/assets/translation/ko.po
Normal file
37665
AndorsTrail/assets/translation/nb.po
Normal file
37675
AndorsTrail/assets/translation/nl.po
Normal file
37665
AndorsTrail/assets/translation/pa.po
Normal file
37674
AndorsTrail/assets/translation/sv.po
Executable file
37672
AndorsTrail/assets/translation/th.po
Normal file
37755
AndorsTrail/assets/translation/tr.po
Normal file
37736
AndorsTrail/assets/translation/uk.po
Normal file
37701
AndorsTrail/assets/translation/zh_CN.po
Normal file
37674
AndorsTrail/assets/translation/zh_TW.po
Normal file
@@ -8,4 +8,4 @@
|
||||
# project structure.
|
||||
|
||||
# Project target.
|
||||
target=android-17
|
||||
target=android-28
|
||||
|
||||
8
AndorsTrail/res/anim/hidemonsterconditionbar.xml
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<translate
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@android:anim/accelerate_interpolator"
|
||||
android:fromYDelta="0%"
|
||||
android:toYDelta="-100%"
|
||||
android:duration="300"
|
||||
/>
|
||||
8
AndorsTrail/res/anim/hidemonsterconditionbutton.xml
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<translate
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@android:anim/accelerate_interpolator"
|
||||
android:fromXDelta="0%"
|
||||
android:toXDelta="100%"
|
||||
android:duration="300"
|
||||
/>
|
||||
9
AndorsTrail/res/anim/showmonsterconditionbar.xml
Normal file
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<translate
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@android:anim/decelerate_interpolator"
|
||||
android:fromYDelta="-100%"
|
||||
android:toYDelta="0%"
|
||||
android:duration="300"
|
||||
/>
|
||||
|
||||
9
AndorsTrail/res/anim/showmonsterconditionbutton.xml
Normal file
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<translate
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@android:anim/decelerate_interpolator"
|
||||
android:fromXDelta="100%"
|
||||
android:toXDelta="0%"
|
||||
android:duration="300"
|
||||
/>
|
||||
|
||||
8
AndorsTrail/res/color/ui_blue_textbutton_textcolor.xml
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_enabled="true" android:state_pressed="true" android:color="@color/ui_blue_palette_text_gray_light"/>
|
||||
<item android:state_enabled="true" android:state_checked="true" android:color="@color/ui_blue_palette_text_gray_light"/>
|
||||
<item android:state_enabled="true" android:color="@color/ui_blue_palette_text_gray_mid"/>
|
||||
<item android:state_enabled="false" android:color="@color/ui_blue_palette_text_gray_darker"/>
|
||||
<item android:color="@color/ui_blue_palette_text_gray_mid"/>
|
||||
</selector>
|
||||
BIN
AndorsTrail/res/drawable-nodpi/ts_background.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
AndorsTrail/res/drawable-nodpi/ts_clouds_l_01.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
AndorsTrail/res/drawable-nodpi/ts_clouds_l_02.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
AndorsTrail/res/drawable-nodpi/ts_clouds_l_03.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
AndorsTrail/res/drawable-nodpi/ts_clouds_l_04.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
AndorsTrail/res/drawable-nodpi/ts_clouds_m_01.png
Normal file
|
After Width: | Height: | Size: 734 B |
BIN
AndorsTrail/res/drawable-nodpi/ts_clouds_m_02.png
Normal file
|
After Width: | Height: | Size: 786 B |
BIN
AndorsTrail/res/drawable-nodpi/ts_clouds_s_01.png
Normal file
|
After Width: | Height: | Size: 587 B |
BIN
AndorsTrail/res/drawable-nodpi/ts_clouds_s_02.png
Normal file
|
After Width: | Height: | Size: 379 B |
BIN
AndorsTrail/res/drawable-nodpi/ts_clouds_s_03.png
Normal file
|
After Width: | Height: | Size: 515 B |
BIN
AndorsTrail/res/drawable-nodpi/ts_foreground.png
Normal file
|
After Width: | Height: | Size: 4.1 KiB |
BIN
AndorsTrail/res/drawable-nodpi/ts_midground.png
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
AndorsTrail/res/drawable-nodpi/ts_sky_gradient_x6.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
AndorsTrail/res/drawable-xhdpi/icon.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
AndorsTrail/res/drawable-xxhdpi/icon.png
Normal file
|
After Width: | Height: | Size: 31 KiB |
BIN
AndorsTrail/res/drawable/actorconditions_japozero.png
Normal file
|
After Width: | Height: | Size: 132 KiB |
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 2.3 KiB |
BIN
AndorsTrail/res/drawable/char_hero_large.png
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
BIN
AndorsTrail/res/drawable/char_hero_maksiu_boy_01.png
Executable file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
AndorsTrail/res/drawable/char_hero_maksiu_boy_01_large.png
Executable file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
AndorsTrail/res/drawable/char_hero_maksiu_girl_01.png
Executable file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
AndorsTrail/res/drawable/char_hero_maksiu_girl_01_large.png
Executable file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
AndorsTrail/res/drawable/effect_miss1.png
Normal file
|
After Width: | Height: | Size: 31 KiB |
BIN
AndorsTrail/res/drawable/items_japozero.png
Normal file
|
After Width: | Height: | Size: 1.0 MiB |
BIN
AndorsTrail/res/drawable/items_rijackson_1.png
Normal file
|
After Width: | Height: | Size: 16 KiB |
22
AndorsTrail/res/drawable/loading_anim.xml
Normal file
@@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:oneshot="false">
|
||||
|
||||
<item android:drawable="@drawable/loading_anim_00"
|
||||
android:duration="150" />
|
||||
<item android:drawable="@drawable/loading_anim_01"
|
||||
android:duration="80" />
|
||||
<item android:drawable="@drawable/loading_anim_02"
|
||||
android:duration="80" />
|
||||
<item android:drawable="@drawable/loading_anim_03"
|
||||
android:duration="80" />
|
||||
<item android:drawable="@drawable/loading_anim_04"
|
||||
android:duration="80" />
|
||||
<item android:drawable="@drawable/loading_anim_05"
|
||||
android:duration="80" />
|
||||
<item android:drawable="@drawable/loading_anim_06"
|
||||
android:duration="80" />
|
||||
<item android:drawable="@drawable/loading_anim_00"
|
||||
android:duration="150" />
|
||||
|
||||
</animation-list>
|
||||
BIN
AndorsTrail/res/drawable/loading_anim_00.png
Normal file
|
After Width: | Height: | Size: 538 B |
BIN
AndorsTrail/res/drawable/loading_anim_01.png
Normal file
|
After Width: | Height: | Size: 602 B |
BIN
AndorsTrail/res/drawable/loading_anim_02.png
Normal file
|
After Width: | Height: | Size: 607 B |
BIN
AndorsTrail/res/drawable/loading_anim_03.png
Normal file
|
After Width: | Height: | Size: 604 B |
BIN
AndorsTrail/res/drawable/loading_anim_04.png
Normal file
|
After Width: | Height: | Size: 516 B |
BIN
AndorsTrail/res/drawable/loading_anim_05.png
Normal file
|
After Width: | Height: | Size: 511 B |
BIN
AndorsTrail/res/drawable/loading_anim_06.png
Normal file
|
After Width: | Height: | Size: 567 B |
BIN
AndorsTrail/res/drawable/logo_anim_shine_00.png
Normal file
|
After Width: | Height: | Size: 7.1 KiB |
BIN
AndorsTrail/res/drawable/logo_anim_shine_01.png
Normal file
|
After Width: | Height: | Size: 7.2 KiB |
BIN
AndorsTrail/res/drawable/logo_anim_shine_02.png
Normal file
|
After Width: | Height: | Size: 7.2 KiB |
BIN
AndorsTrail/res/drawable/logo_anim_shine_03.png
Normal file
|
After Width: | Height: | Size: 7.2 KiB |
BIN
AndorsTrail/res/drawable/logo_anim_shine_04.png
Normal file
|
After Width: | Height: | Size: 6.4 KiB |
BIN
AndorsTrail/res/drawable/logo_anim_shine_05.png
Normal file
|
After Width: | Height: | Size: 7.2 KiB |
BIN
AndorsTrail/res/drawable/logo_anim_shine_06.png
Normal file
|
After Width: | Height: | Size: 7.1 KiB |
BIN
AndorsTrail/res/drawable/logo_anim_shine_07.png
Normal file
|
After Width: | Height: | Size: 4.9 KiB |
BIN
AndorsTrail/res/drawable/logo_anim_shine_08.png
Normal file
|
After Width: | Height: | Size: 6.7 KiB |
BIN
AndorsTrail/res/drawable/logo_anim_shine_09.png
Normal file
|
After Width: | Height: | Size: 7.2 KiB |
|
Before Width: | Height: | Size: 185 KiB After Width: | Height: | Size: 187 KiB |
|
Before Width: | Height: | Size: 154 KiB After Width: | Height: | Size: 160 KiB |
|
Before Width: | Height: | Size: 106 KiB After Width: | Height: | Size: 124 KiB |
BIN
AndorsTrail/res/drawable/map_dynamic_placeholders.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 27 KiB |
BIN
AndorsTrail/res/drawable/map_guynmart.png
Normal file
|
After Width: | Height: | Size: 102 KiB |
|
Before Width: | Height: | Size: 168 KiB After Width: | Height: | Size: 174 KiB |
|
Before Width: | Height: | Size: 131 KiB After Width: | Height: | Size: 132 KiB |
BIN
AndorsTrail/res/drawable/map_transition_5.png
Normal file
|
After Width: | Height: | Size: 5.4 KiB |
|
Before Width: | Height: | Size: 57 KiB After Width: | Height: | Size: 59 KiB |
BIN
AndorsTrail/res/drawable/monsters_guynmart.png
Normal file
|
After Width: | Height: | Size: 6.3 KiB |
BIN
AndorsTrail/res/drawable/monsters_maksiu1.png
Normal file
|
After Width: | Height: | Size: 5.5 KiB |
|
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 3.2 KiB |
|
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 19 KiB |
|
Before Width: | Height: | Size: 59 KiB After Width: | Height: | Size: 50 KiB |
|
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 8.2 KiB |
BIN
AndorsTrail/res/drawable/sky_bottom.png
Normal file
|
After Width: | Height: | Size: 200 B |
BIN
AndorsTrail/res/drawable/sky_gradient.png
Normal file
|
After Width: | Height: | Size: 385 B |
7
AndorsTrail/res/drawable/sky_gradient_drawable.xml
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:tileMode="repeat"
|
||||
android:src="@drawable/ts_sky_gradient_x6"
|
||||
android:antialias="false"
|
||||
android:dither="false"
|
||||
/>
|
||||