Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e352804a authored by Wysie's avatar Wysie Committed by ABAAKOUK Mehdi
Browse files

Release 0.6.

Fixed some FCs.
Call log
- Preference to show exact time instead of relative time
Contacts/Favourites
- Preference to show/hide Dial button
parent 7e6a1f47
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -31,6 +31,7 @@
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.WRITE_SETTINGS" />
    <uses-permission android:name="android.permission.USE_CREDENTIALS" />
    <uses-permission android:name="android.permission.GET_ACCOUNTS" />
    <uses-permission android:name="android.permission.VIBRATE" />

    <application
+6 −0
Original line number Diff line number Diff line
@@ -41,4 +41,10 @@
        android:icon="@drawable/ic_menu_import_export"
        android:title="@string/menu_import_export" />

    <!-- Wysie -->
    <item
        android:id="@+id/menu_preferences"
        android:icon="@android:drawable/ic_menu_preferences"
        android:title="@string/menu_preferences" />

</menu>
+1 −1
Original line number Diff line number Diff line
@@ -60,7 +60,7 @@
  </string-array>
        
    <string-array name="vm_handlers">
	    <item>Google Voice/com.google.android.apps.googlevoice/.SplashActivity</item>
	    <item>Google Voice/com.google.android.apps.googlevoice/.HidingSplashActivity</item>
	    <item>HulloMail UK Visual Voicemail/com.hullomail.android.messaging/.HulloMail</item>
	    <item>HulloMail US Visual Voicemail/com.hullomail.android.messaging.us/.HulloMail</item>
	    <item>PhoneFusion Visual Voicemail/com.phonefusion.voicemailplus.android/.VoicemailPlus</item>
+26 −2
Original line number Diff line number Diff line
@@ -1141,6 +1141,16 @@
    <!-- Wysie: Dialer strings -->
    <string name="dialer_menu_sms">SMS/MMS</string>
    
    <!-- Wysie: Call log strings -->
    <string name="recentCalls_deleteAllIncoming">Clear incoming</string>
    <string name="recentCalls_deleteAllOutgoing">Clear outgoing</string>
    <string name="recentCalls_deleteAllMissed">Clear missed</string>
    <string name="alert_clear_call_log_title">Clear call log</string>
    <string name="alert_clear_call_log_message">Are you sure you want to clear all call records?</string>
    <string name="alert_clear_cl_all_incoming">Are you sure you want to clear all incoming call records?</string>
    <string name="alert_clear_cl_all_outgoing">Are you sure you want to clear all outgoing call records?</string>
    <string name="alert_clear_cl_all_missed">Are you sure you want to clear all missed call records?</string>
    
    <!-- Wysie: Preferences strings -->
    
    <!-- Preferences: Dialer -->
@@ -1161,6 +1171,20 @@
    <string name="title_use_custom_color">Use custom digits colors</string>
    <string name="summaryon_custom_color">Supported formats: #RRGGBB or #AARRGGBB. Input the # as well.</string>
    
    <!-- Preferences: Call log -->
    <string name="title_cl_exact_time">Exact times</string>
    <string name="summaryon_cl_exact_time">Use exact times in call log</string>
    <string name="summaryoff_cl_exact_time">Use relative times in call log</string>
    <string name="title_cl_show_seconds">Show seconds</string>
    <string name="summary_cl_show_seconds">Show seconds when using exact times</string>          
    <string name="title_cl_ask_before_clear">Ask before clearing</string>
    <string name="summaryon_cl_ask_before_clear">Ask before clearing call log</string>
    <string name="summaryoff_cl_ask_before_clear">Call logs will be cleared without asking</string>
    
    <!-- Preferences: Contacts -->
    <string name="title_contacts_show_pic">Show contact pictures</string>
    <string name="title_contacts_show_dial_button">Show dial button</string>
    <string name="summary_contacts_show_dial_button">Show a dial button for contacts with numbers</string>
    
    <!-- Preferences: Misc -->
    <string name="title_misc_category">Miscellaneous</string>
@@ -1168,9 +1192,9 @@
    <!-- Wysie: About strings -->    
    <string name="title_about">About</string>
    <string name="title_about_name">Mod Name</string>
    <string name="summary_about_name">Wysie Eclair Contacts Mod</string>
    <string name="summary_about_name">WyContacts Eclair</string>
    <string name="title_about_version">Version</string>
    <string name="summary_about_version">0.5</string>
    <string name="summary_about_version">0.6</string>
    <string name="title_about_credits">Credits</string>
    <string name="summary_about_credits">ChainsDD, geesun, niuchl, rac2030 and the rest of XDA! :)</string>
    
+46 −0
Original line number Diff line number Diff line
@@ -91,6 +91,52 @@
                    android:dependency="dial_digit_use_custom_color" />
        </PreferenceScreen>
    </PreferenceCategory>
    <PreferenceCategory android:title="@string/recentCallsIconLabel"> 
        <CheckBoxPreference
            android:key="cl_exact_time"
            android:title="@string/title_cl_exact_time"
            android:summaryOn="@string/summaryon_cl_exact_time"
            android:summaryOff="@string/summaryoff_cl_exact_time"
            android:disableDependentsState="false"
            android:defaultValue="true" />
        <CheckBoxPreference
            android:key="cl_show_seconds"
            android:title="@string/title_cl_show_seconds"
            android:summary="@string/summary_cl_show_seconds"
            android:dependency="cl_exact_time"
            android:defaultValue="true" />
        <CheckBoxPreference
            android:key="cl_ask_before_clear"
            android:title="@string/title_cl_ask_before_clear"
            android:summaryOn="@string/summaryon_cl_ask_before_clear"
            android:summaryOff="@string/summaryoff_cl_ask_before_clear"
            android:defaultValue="false" />         
    </PreferenceCategory>
    <PreferenceCategory android:title="@string/contactsIconLabel">
        <CheckBoxPreference
            android:key="contacts_show_dial_button"
            android:title="@string/title_contacts_show_dial_button"
            android:summary="@string/summary_contacts_show_dial_button"
            android:defaultValue="true" />
        <!--
        <CheckBoxPreference
            android:key="contacts_show_pic"
            android:title="@string/title_contacts_show_pic"
            android:defaultValue="true" />
        -->
    </PreferenceCategory>
    <PreferenceCategory android:title="@string/contactsFavoritesLabel">
        <CheckBoxPreference
            android:key="favs_show_dial_button"
            android:title="@string/title_contacts_show_dial_button"
            android:defaultValue="true" />
        <!--
        <CheckBoxPreference
            android:key="favs_show_pic"
            android:title="@string/title_contacts_show_pic"
            android:defaultValue="true" />
        -->
    </PreferenceCategory>  
    <PreferenceCategory android:title="@string/title_misc_category">
        <PreferenceScreen
            android:key="misc_about"
Loading