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

Commit bb98c49c authored by Wysie's avatar Wysie
Browse files

Release 2.2.

Fixed a small bug with adding/removing a user from groups.
Implemented ability to add, rename, and delete groups! Access it from Menu in either Contacts or Favourites.
parent 9645e857
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -383,6 +383,9 @@
            </intent-filter>
    </activity>
    
	<activity android:name="GroupsListActivity">
    </activity>

    </application>
</manifest>

+9 −1
Original line number Diff line number Diff line
@@ -24,6 +24,7 @@
    <uses-permission android:name="android.permission.CALL_PRIVILEGED" />
    <uses-permission android:name="android.permission.READ_CONTACTS" />
    <uses-permission android:name="android.permission.WRITE_CONTACTS" />
    <uses-permission android:name="android.permission.WRITE_OWNER_DATA" />
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.READ_PHONE_STATE" />
    <uses-permission android:name="android.permission.MODIFY_PHONE_STATE" />
@@ -382,6 +383,13 @@
            </intent-filter>
    </activity>
    
	<activity android:name="GroupsListActivity">
            <intent-filter>
                <action android:name="android.intent.action.VIEW" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
    </activity>

    </application>
</manifest>

+17 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical">

	<ListView
        android:id="@+id/android:list"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:fastScrollEnabled="true"/>
  	<TextView
  	    android:id="@id/android:empty"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"/>
        
</LinearLayout>
+19 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="?android:attr/listPreferredItemHeight"
    android:paddingLeft="7dip">

    <TextView
        android:id="@+id/text1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:ellipsize="marquee"
        android:gravity="center_vertical|left"
        android:layout_alignParentLeft="true"
        android:layout_centerVertical="true"
        android:singleLine="true"
        android:textAppearance="?android:attr/textAppearanceLarge"/>
    
</RelativeLayout>
+24 −3
Original line number Diff line number Diff line
@@ -743,12 +743,13 @@
    
    <!-- Wysie_Soh: Contacts menu (across all 4, ie. Dialer, Contacts, Call log, Favourites -->    
    <string name="menu_preferences">Preferences</string>
    <string name="contacts_manage_groups">Manage groups</string>
    
    <!-- Wysie_Soh: Dialer menu -->
    <string name="dialer_menu_sms">SMS/MMS</string>
    
    <!-- Wysie_Soh: Call log menu -->
    <string name="call_log_menu_total_duration">Total Incoming/Outgoing</string>
    <string name="call_log_menu_total_duration">Total incoming/outgoing</string>
    
    <!-- Wysie_Soh: Total incoming/outgoing dialog -->
    <string name="totalcalllog">Total incoming/outgoing duration</string>
@@ -757,7 +758,7 @@
    <string name="total_button_ok">Ok</string>
    
    <!-- Favourites menu -->
    <string name="fav_clear_freq">Clear Frequently Called</string>
    <string name="fav_clear_freq">Clear frequently called</string>
    
    <!-- Wysie_Soh: Preferences strings (based on ChainsDD's code) -->
    <string name="title_dialer_category">Dialer</string>
@@ -801,6 +802,11 @@
    <string name="summaryon_contacts_show_separators">Alphabetical separators will be shown in the contacts list</string>
    <string name="summaryoff_contacts_show_separators">Alphabetical separators will be hidden in the contacts list</string>
    
    <string name="groups_manager_title">Manage groups preferences</string>    
    <string name="title_groups_ask_before_del">Ask before deleting</string>
    <string name="summaryon_groups_ask_before_del">Ask before deleting group</string>
    <string name="summaryoff_groups_ask_before_del">Groups will be deleted without asking</string>
    
    <string name="title_favourites_category">Favourites</string>
    <string name="title_favourites_hide_freq_call">Hide frequently called</string>
    <string name="summary_favourites_hide_freq_call">The actual data is not cleared, but hidden.</string>
@@ -815,7 +821,7 @@
    <string name="title_about_name">Mod Name</string>
    <string name="summary_about_name">Wysie Contacts</string>
    <string name="title_about_version">Version</string>
    <string name="summary_about_version">2.11</string>
    <string name="summary_about_version">2.2</string>
    <string name="title_about_credits">Credits</string>
    <string name="summary_about_credits">ChainsDD and the rest of XDA! :)</string>
    
@@ -832,4 +838,19 @@
    <string name="view_contact_navigate">Navigate to</string>
    <string name="view_contact_groups">Groups</string>
    
    
    <!-- Wysie_Soh: Groups management -->
    <string name="help_title">Usage</string>
    <string name="help_message">
    Long-press on group name to rename or delete it. Press menu to add group. This message will not be shown until the next update.
    </string>
    
    <string name="title_groups_manager">Manage groups</string>    
    <string name="option_create_group">Create group</string>
    <string name="alert_create_group_message">Enter group name</string>    
    <string name="context_rename_group">Rename group</string>
    <string name="context_delete_group">Delete group</string>
    <string name="alert_rename_group_message">Enter new group name</string>
    <string name="alert_delete_group_message">Are you sure you want to delete?</string>
    
</resources>
Loading