DroidFish: Changed default preferences to favor analysis mode, which is the main intended use case for the app.

This commit is contained in:
Peter Osterlund 2014-03-30 08:17:18 +00:00
parent e2ca919e78
commit c9b019e581
2 changed files with 10 additions and 10 deletions

View File

@ -6,9 +6,9 @@
<string name="moves_per_session_default">60</string> <string name="moves_per_session_default">60</string>
<string name="time_control_default">120000</string> <string name="time_control_default">120000</string>
<string name="time_increment_default">0</string> <string name="time_increment_default">0</string>
<string name="squareSelectType_default">0</string> <string name="squareSelectType_default">1</string>
<string name="font_size_default">12</string> <string name="font_size_default">12</string>
<string name="thinking_arrows_default">2</string> <string name="thinking_arrows_default">4</string>
<string name="scroll_sensitivity_default">2</string> <string name="scroll_sensitivity_default">2</string>
<string name="book_line_length_default">1000000</string> <string name="book_line_length_default">1000000</string>
<string name="viewPieceType_default">1</string> <string name="viewPieceType_default">1</string>

View File

@ -65,19 +65,19 @@
android:key="showThinking" android:key="showThinking"
android:title="@string/prefs_showThinking_title" android:title="@string/prefs_showThinking_title"
android:summary="@string/prefs_showThinking_summary" android:summary="@string/prefs_showThinking_summary"
android:defaultValue="false"> android:defaultValue="true">
</CheckBoxPreference> </CheckBoxPreference>
<CheckBoxPreference <CheckBoxPreference
android:key="whiteBasedScores" android:key="whiteBasedScores"
android:title="@string/prefs_whiteBasedScores_title" android:title="@string/prefs_whiteBasedScores_title"
android:summary="@string/prefs_whiteBasedScores_summary" android:summary="@string/prefs_whiteBasedScores_summary"
android:defaultValue="false"> android:defaultValue="true">
</CheckBoxPreference> </CheckBoxPreference>
<CheckBoxPreference <CheckBoxPreference
android:key="bookHints" android:key="bookHints"
android:title="@string/prefs_bookHints_title" android:title="@string/prefs_bookHints_title"
android:summary="@string/prefs_bookHints_summary" android:summary="@string/prefs_bookHints_summary"
android:defaultValue="false"> android:defaultValue="true">
</CheckBoxPreference> </CheckBoxPreference>
<ListPreference <ListPreference
android:key="thinkingArrows" android:key="thinkingArrows"
@ -383,14 +383,14 @@
android:title="@string/prefs_button_action_0_title" android:title="@string/prefs_button_action_0_title"
android:entryValues="@array/button_action_values" android:entryValues="@array/button_action_values"
android:entries="@array/button_action_texts" android:entries="@array/button_action_texts"
android:defaultValue=""> android:defaultValue="toggleAnalysis">
</ListPreference> </ListPreference>
<ListPreference <ListPreference
android:key="button_action_custom2_1" android:key="button_action_custom2_1"
android:title="@string/prefs_button_action_1_title" android:title="@string/prefs_button_action_1_title"
android:entryValues="@array/button_action_values" android:entryValues="@array/button_action_values"
android:entries="@array/button_action_texts" android:entries="@array/button_action_texts"
android:defaultValue=""> android:defaultValue="selectEngine">
</ListPreference> </ListPreference>
<ListPreference <ListPreference
android:key="button_action_custom2_2" android:key="button_action_custom2_2"
@ -435,7 +435,7 @@
android:title="@string/prefs_button_action_0_title" android:title="@string/prefs_button_action_0_title"
android:entryValues="@array/button_action_values" android:entryValues="@array/button_action_values"
android:entries="@array/button_action_texts" android:entries="@array/button_action_texts"
android:defaultValue=""> android:defaultValue="loadLastFile">
</ListPreference> </ListPreference>
<ListPreference <ListPreference
android:key="button_action_custom3_1" android:key="button_action_custom3_1"
@ -661,13 +661,13 @@
android:key="tbHints" android:key="tbHints"
android:title="@string/prefs_tbHints_title" android:title="@string/prefs_tbHints_title"
android:summary="@string/prefs_tbHints_summary" android:summary="@string/prefs_tbHints_summary"
android:defaultValue="false"> android:defaultValue="true">
</CheckBoxPreference> </CheckBoxPreference>
<CheckBoxPreference <CheckBoxPreference
android:key="tbHintsEdit" android:key="tbHintsEdit"
android:title="@string/prefs_tbHintsEdit_title" android:title="@string/prefs_tbHintsEdit_title"
android:summary="@string/prefs_tbHintsEdit_summary" android:summary="@string/prefs_tbHintsEdit_summary"
android:defaultValue="false"> android:defaultValue="true">
</CheckBoxPreference> </CheckBoxPreference>
<CheckBoxPreference <CheckBoxPreference
android:key="tbRootProbe" android:key="tbRootProbe"