Skip to content

Commit

Permalink
Minor changes in some variables for better understanding
Browse files Browse the repository at this point in the history
  • Loading branch information
Theofilos-Chamalis committed Feb 24, 2015
1 parent 922cea1 commit db3bbe8
Show file tree
Hide file tree
Showing 374 changed files with 299 additions and 195 deletions.
Empty file modified LICENSE
100755 → 100644
Empty file.
Empty file modified README.md
100755 → 100644
Empty file.
6 changes: 4 additions & 2 deletions app/build.gradle
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ dependencies {
compile 'com.android.support:recyclerview-v7:21.+'
compile files('/home/theofilos/new_git/QRPushToTalk/libraries/android-async-http-1.4.6.jar')
compile files('/home/theofilos/new_git/QRPushToTalk/libraries/gson-2.3.1.jar')
compile files('/home/theo/git/QRPushToTalk/libraries/android-async-http-1.4.6.jar')
compile files('/home/theo/git/QRPushToTalk/libraries/gson-2.3.1.jar')
}


Expand All @@ -62,8 +64,8 @@ android {
minSdkVersion 14
targetSdkVersion 21
applicationId "com.terracom.qrpttbeta"
versionCode 79
versionName "0.8.9"
versionCode 80
versionName "0.9.0"
testInstrumentationRunner "android.test.InstrumentationTestRunner"
buildConfigField "boolean", "DONATE_NAG", "false"
}
Expand Down
Empty file.
Empty file modified app/src/free/AndroidManifest.xml
100755 → 100644
Empty file.
Empty file modified app/src/free/ic_launcher-web.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified app/src/free/res/drawable-hdpi/ic_launcher.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified app/src/free/res/drawable-mdpi/ic_launcher.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified app/src/free/res/drawable-xhdpi/ic_launcher.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified app/src/free/res/drawable-xxhdpi/ic_launcher.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified app/src/free/res/drawable-xxxhdpi/ic_launcher.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified app/src/free/res/values/strings.xml
100755 → 100644
Empty file.
Empty file modified app/src/free/res/xml/searchable.xml
100755 → 100644
Empty file.
Empty file modified app/src/main/AndroidManifest.xml
100755 → 100644
Empty file.
Empty file modified app/src/main/java/com/terracom/qrpttbeta/Constants.java
100755 → 100644
Empty file.
Empty file modified app/src/main/java/com/terracom/qrpttbeta/Settings.java
100755 → 100644
Empty file.
Empty file modified app/src/main/java/com/terracom/qrpttbeta/app/DrawerAdapter.java
100755 → 100644
Empty file.
18 changes: 18 additions & 0 deletions app/src/main/java/com/terracom/qrpttbeta/app/QRPushToTalkActivity.java
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,9 @@ public class QRPushToTalkActivity extends ActionBarActivity implements ListView.
*/
public static final String EXTRA_DRAWER_FRAGMENT = "drawer_fragment";

public static final String LastChannelPreference = "lastchannelloggedprefs";
public static String nameOfSavedLastLoggedChannel = "";

private QRPushToTalkService.QRPushToTalkBinder mService;
private QRPushToTalkDatabase mDatabase;
private Settings mSettings;
Expand Down Expand Up @@ -386,6 +389,16 @@ protected void onDestroy() {
SharedPreferences preferences = PreferenceManager.getDefaultSharedPreferences(this);
preferences.unregisterOnSharedPreferenceChangeListener(this);
mDatabase.close();


if(!ServerEditFragment.CompanyNameStr.equals("")){
SharedPreferences mysettings = getSharedPreferences(LastChannelPreference,0);
SharedPreferences.Editor myEditor = mysettings.edit();
myEditor.putString("LastChannel",ServerEditFragment.CompanyNameStr);
myEditor.commit();
}


super.onDestroy();
}

Expand Down Expand Up @@ -747,6 +760,11 @@ public void onDisconnected(JumbleException e) throws RemoteException {
}
}*/


SharedPreferences mysettings = getSharedPreferences(LastChannelPreference,0);
nameOfSavedLastLoggedChannel = mysettings.getString("LastChannel","");


ServerConnectTask connectTask = new ServerConnectTask(this, mDatabase);
connectTask.execute(server);
}
Expand Down
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
347 changes: 258 additions & 89 deletions app/src/main/java/com/terracom/qrpttbeta/channel/ChannelListAdapter.java
100755 → 100644

Large diffs are not rendered by default.

Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file modified app/src/main/java/com/terracom/qrpttbeta/db/PublicServer.java
100755 → 100644
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
118 changes: 16 additions & 102 deletions app/src/main/java/com/terracom/qrpttbeta/servers/ServerEditFragment.java
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -20,80 +20,22 @@
import android.app.Activity;
import android.app.AlertDialog;
import android.app.Dialog;
import android.content.ContextWrapper;
import android.os.AsyncTask;
import android.os.Bundle;
import android.support.v4.app.DialogFragment;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.EditText;
import android.widget.TextView;

import com.google.gson.JsonObject;
import com.terracom.jumble.Constants;
import com.terracom.jumble.model.Server;
import com.terracom.qrpttbeta.R;
import com.terracom.qrpttbeta.Settings;
import com.terracom.qrpttbeta.app.QRPushToTalkActivity;
import com.terracom.qrpttbeta.db.DatabaseProvider;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.HashMap;

import org.apache.http.Header;
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.NameValuePair;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.ResponseHandler;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.entity.StringEntity;
import org.apache.http.impl.client.BasicResponseHandler;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.message.BasicNameValuePair;
import org.apache.http.params.BasicHttpParams;
import org.apache.http.params.HttpConnectionParams;
import org.apache.http.params.HttpParams;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import org.json.JSONStringer;

import android.app.AlarmManager;
import android.app.PendingIntent;
import android.app.ProgressDialog;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.ActionBarActivity;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.ListAdapter;
import android.widget.ListView;
import android.widget.SimpleAdapter;
import android.widget.Toast;

import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.loopj.android.http.AsyncHttpClient;
import com.loopj.android.http.AsyncHttpResponseHandler;
import com.loopj.android.http.RequestParams;

import java.util.List;
import java.util.Random;
import com.terracom.qrpttbeta.servers.HttpRequest;

import ch.boye.httpclientandroidlib.client.HttpClient;

public class ServerEditFragment extends DialogFragment {
private TextView mNameTitle;
Expand All @@ -104,9 +46,9 @@ public class ServerEditFragment extends DialogFragment {
private EditText mPasswordEdit;
private TextView mErrorText;

public String resultFromWebService = "Tipotadenmphkeakoma";
public String resultFromWebService = "Noresponseyet";
public String uname = "";
public String CompanyNameStr= "";
public static String CompanyNameStr= "";
public String GuardAliasStr = "";
public String errorResultFromJsonStr = "";
public String errorMessageFromJsonStr = "";
Expand All @@ -118,6 +60,7 @@ public class ServerEditFragment extends DialogFragment {
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setStyle(DialogFragment.STYLE_NO_TITLE, 0);

}

@Override
Expand Down Expand Up @@ -146,32 +89,25 @@ public void onClick(View v) {
getFormData();
try {
Thread.sleep(6000);
//resultFromWebService = resultFromWebService.substring(1, resultFromWebService.length()-1);
resultFromWebService = resultFromWebService.replace("(","");
resultFromWebService = resultFromWebService.replace(")","");

Log.d("+KALO SLEEP H MOUFA???+",resultFromWebService);
try {
JSONObject jsonaqui = new JSONObject(resultFromWebService);
errorResultFromJsonStr = jsonaqui.get("result").toString();
errorMessageFromJsonStr = jsonaqui.get("Message").toString();
if(jsonaqui.get("result").toString().equals("0")){
//EMFWLEVMENO JSON
JSONObject jsonaquidata = jsonaqui.getJSONObject("data");
CompanyNameStr = jsonaquidata.get("CompanyName").toString().replaceAll("\\s","").trim();
GuardAliasStr = jsonaquidata.get("GuardAlias").toString().replaceAll("\\s","").trim();
Log.d("Jsnqui.get(\"CompanyName\")",CompanyNameStr);
Log.d("--Jsonaqui.get(\"data\")-",GuardAliasStr);
JSONObject myjson = new JSONObject(resultFromWebService);
errorResultFromJsonStr = myjson.get("result").toString();
errorMessageFromJsonStr = myjson.get("Message").toString();
if(myjson.get("result").toString().equals("0")){
JSONObject myjsondata = myjson.getJSONObject("data");
CompanyNameStr = myjsondata.get("CompanyName").toString().replaceAll("\\s","").trim();
GuardAliasStr = myjsondata.get("GuardAlias").toString().replaceAll("\\s","").trim();
}else{
CompanyNameStr = "";
}

Log.d("+++++JSONAQUI???++++++",jsonaqui.toString());
} catch (JSONException e) {
Log.d("++DEN STRING SE JSON++","++++++++++++++++");
CompanyNameStr = "";
e.printStackTrace();
}

} catch (InterruptedException e) {
Log.d("++DEN EPIASE TO SLEEP++","");
e.printStackTrace();
}
if (validate()) {
Expand All @@ -197,7 +133,6 @@ protected String doInBackground(String... urls) {
// onPostExecute displays the results of the AsyncTask.
@Override
protected void onPostExecute(String resultAfterPost) {
Log.d("~~META TO POSTEXECUTE~~", resultAfterPost);
}
}

Expand All @@ -208,10 +143,8 @@ public String WebserviceGet(String jsonGuard) {
resultFromWebService = req.trustAllCerts().trustAllHosts().body();
resultFromWebService = resultFromWebService.replace("(","");
resultFromWebService = resultFromWebService.replace(")","");
Log.d("------REQ BODY2------",resultFromWebService);
return resultFromWebService;
}catch(Exception e){
Log.d("=-=-To exception is:=-=",e.getMessage());
return e.getMessage();
}
}
Expand Down Expand Up @@ -243,8 +176,6 @@ public Dialog onCreateDialog(Bundle savedInstanceState) {
mHostEdit = (EditText) view.findViewById(R.id.server_edit_host);
mPortEdit = (EditText) view.findViewById(R.id.server_edit_port);
mUsernameEdit = (EditText) view.findViewById(R.id.server_edit_username);
//mUsernameEdit.setHint(settings.getDefaultUsername());
//mUsernameEdit.setHint("Insert demo here");
mPasswordEdit = (EditText) view.findViewById(R.id.server_edit_password);
mErrorText = (TextView) view.findViewById(R.id.server_edit_error);
if (getServer() != null) {
Expand All @@ -253,7 +184,6 @@ public Dialog onCreateDialog(Bundle savedInstanceState) {
mHostEdit.setText(oldServer.getHost());
mPortEdit.setText(String.valueOf(oldServer.getPort()));
mUsernameEdit.setText(oldServer.getUsername());
//mPasswordEdit.setText(oldServer.getPassword());
mPasswordEdit.setText("");
}

Expand Down Expand Up @@ -336,26 +266,19 @@ public void getFormData(){
String username = (mUsernameEdit).getText().toString().trim();
String passwordPIN = mPasswordEdit.getText().toString().trim();


if(username.equals("demo") || username.equals(null) || username.equals("Demo")|| username.equals("DEMO")){
username = randomNumStr;
uname = username;
//mUsernameEdit.setText(username);
mUsernameEdit.setText(uname);
}else{
JSONObject jsonGuard = new JSONObject();
try {
jsonGuard.put("GuardID",username);
jsonGuard.put("GuardPIN",passwordPIN);
Log.d("=====TO JSON m====",jsonGuard.toString());
Log.d("==jsGrd.gtStr(GrdID)==",jsonGuard.getString("GuardID"));
Log.d("==jsGrd.gtStr(GrdPIN)==",jsonGuard.getString("GuardPIN"));
} catch (JSONException e) {
e.printStackTrace();
}

new HttpAsyncTask().execute(jsonGuard.toString());

}
}

Expand All @@ -381,18 +304,8 @@ public boolean validate() {
}
}

/*if(!mUsernameEdit.getText().equals("demo") && !mUsernameEdit.getText().toString().startsWith("demo") && !mUsernameEdit.getText().equals("Demo") && !mUsernameEdit.getText().toString().startsWith("Demo") && !mUsernameEdit.getText().equals("DEMO") && !mUsernameEdit.getText().toString().startsWith("DEMO")){
error = "Guard ID or PIN not valid!";
}*/

//mErrorText.setVisibility(error != null ? View.VISIBLE : View.GONE);
/*if (error != null) {
mErrorText.setText(error);
return false;
} else {
return true;
}*/
if(mUsernameEdit.getText().equals("demo") || mUsernameEdit.getText().toString().startsWith("demo")){
CompanyNameStr = "";
mErrorText.setVisibility(View.GONE);
uname = mUsernameEdit.getText().toString().trim().replaceAll("\\s","");
if(uname.length() == 8){
Expand All @@ -418,4 +331,5 @@ public interface ServerEditListener {
public void serverInfoUpdated();
public void connectToServer(Server server);
}
}
}

Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file modified app/src/main/java/com/terracom/qrpttbeta/util/ModelUtils.java
100755 → 100644
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file modified app/src/main/res/anim/fade_in.xml
100755 → 100644
Empty file.
Empty file modified app/src/main/res/anim/fade_out.xml
100755 → 100644
Empty file.
Empty file modified app/src/main/res/anim/slide_down.xml
100755 → 100644
Empty file.
Empty file modified app/src/main/res/anim/slide_up.xml
100755 → 100644
Empty file.
Empty file modified app/src/main/res/drawable-hdpi-v11/ic_stat_notify.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified app/src/main/res/drawable-hdpi-v9/ic_stat_notify.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified app/src/main/res/drawable-hdpi/drawer_shadow.9.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified app/src/main/res/drawable-hdpi/ic_action_add_dark.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified app/src/main/res/drawable-hdpi/ic_action_add_light.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified app/src/main/res/drawable-hdpi/ic_action_audio.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified app/src/main/res/drawable-hdpi/ic_action_audio_muted.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified app/src/main/res/drawable-hdpi/ic_action_audio_on.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified app/src/main/res/drawable-hdpi/ic_action_channels.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified app/src/main/res/drawable-hdpi/ic_action_chat.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified app/src/main/res/drawable-hdpi/ic_action_collapsed.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified app/src/main/res/drawable-hdpi/ic_action_comment.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified app/src/main/res/drawable-hdpi/ic_action_delete_dark.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified app/src/main/res/drawable-hdpi/ic_action_delete_light.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified app/src/main/res/drawable-hdpi/ic_action_drag_handle.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified app/src/main/res/drawable-hdpi/ic_action_edit_dark.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified app/src/main/res/drawable-hdpi/ic_action_expanded.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified app/src/main/res/drawable-hdpi/ic_action_favourite_on.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified app/src/main/res/drawable-hdpi/ic_action_fullscreen.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified app/src/main/res/drawable-hdpi/ic_action_headphones.png
100755 → 100644
Empty file modified app/src/main/res/drawable-hdpi/ic_action_info_dark.png
100755 → 100644
Empty file modified app/src/main/res/drawable-hdpi/ic_action_microphone.png
100755 → 100644
Empty file modified app/src/main/res/drawable-hdpi/ic_action_microphone_dark.png
100755 → 100644
Empty file modified app/src/main/res/drawable-hdpi/ic_action_microphone_muted.png
100755 → 100644
Empty file modified app/src/main/res/drawable-hdpi/ic_action_move.png
100755 → 100644
Empty file modified app/src/main/res/drawable-hdpi/ic_action_save.png
100755 → 100644
Empty file modified app/src/main/res/drawable-hdpi/ic_action_search.png
100755 → 100644
Empty file modified app/src/main/res/drawable-hdpi/ic_action_send.png
100755 → 100644
Empty file modified app/src/main/res/drawable-hdpi/ic_action_settings.png
100755 → 100644
Empty file modified app/src/main/res/drawable-hdpi/ic_action_sort.png
100755 → 100644
Empty file modified app/src/main/res/drawable-hdpi/ic_action_user_dark.png
100755 → 100644
Empty file modified app/src/main/res/drawable-hdpi/ic_carriage_return.png
100755 → 100644
Empty file modified app/src/main/res/drawable-hdpi/ic_deafened.png
100755 → 100644
Empty file modified app/src/main/res/drawable-hdpi/ic_drawer.png
100755 → 100644
Empty file modified app/src/main/res/drawable-hdpi/ic_home.png
100755 → 100644
Empty file modified app/src/main/res/drawable-hdpi/ic_launcher.png
100755 → 100644
Empty file modified app/src/main/res/drawable-hdpi/ic_muted.png
100755 → 100644
Empty file modified app/src/main/res/drawable-hdpi/ic_muted_local.png
100755 → 100644
Empty file modified app/src/main/res/drawable-hdpi/ic_registered.png
100755 → 100644
Empty file modified app/src/main/res/drawable-hdpi/ic_server_deafened.png
100755 → 100644
Empty file modified app/src/main/res/drawable-hdpi/ic_server_light.png
100755 → 100644
Empty file modified app/src/main/res/drawable-hdpi/ic_server_location.png
100755 → 100644
Empty file modified app/src/main/res/drawable-hdpi/ic_server_muted.png
100755 → 100644
Empty file modified app/src/main/res/drawable-hdpi/ic_stat_notify.png
100755 → 100644
Empty file modified app/src/main/res/drawable-hdpi/ic_suppressed.png
100755 → 100644
Empty file modified app/src/main/res/drawable-hdpi/ic_talking_off.png
100755 → 100644
Empty file modified app/src/main/res/drawable-hdpi/ic_talking_on.png
100755 → 100644
Empty file modified app/src/main/res/drawable-hdpi/ic_user_light.png
100755 → 100644
Empty file modified app/src/main/res/drawable-hdpi/list_longpressed.9.png
100755 → 100644
Empty file modified app/src/main/res/drawable-hdpi/list_pressed.9.png
100755 → 100644
Empty file modified app/src/main/res/drawable-hdpi/list_selector_disabled.9.png
100755 → 100644
Empty file modified app/src/main/res/drawable-hdpi/list_selector_focused.9.png
100755 → 100644
Empty file modified app/src/main/res/drawable-hdpi/server_card.9.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi-v11/ic_stat_notify.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi-v9/ic_stat_notify.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi/drawer_shadow.9.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi/ic_action_add_dark.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi/ic_action_add_light.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi/ic_action_audio.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi/ic_action_audio_muted.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi/ic_action_audio_on.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi/ic_action_channels.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi/ic_action_chat.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi/ic_action_collapsed.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi/ic_action_comment.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi/ic_action_delete_dark.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi/ic_action_delete_light.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi/ic_action_drag_handle.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi/ic_action_edit_dark.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi/ic_action_expanded.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi/ic_action_favourite_on.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi/ic_action_fullscreen.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi/ic_action_headphones.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi/ic_action_info_dark.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi/ic_action_microphone.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi/ic_action_microphone_dark.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi/ic_action_microphone_muted.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi/ic_action_move.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi/ic_action_save.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi/ic_action_search.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi/ic_action_send.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi/ic_action_settings.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi/ic_action_sort.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi/ic_action_user_dark.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi/ic_carriage_return.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi/ic_deafened.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi/ic_drawer.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi/ic_home.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi/ic_launcher.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi/ic_muted.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi/ic_muted_local.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi/ic_registered.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi/ic_server_deafened.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi/ic_server_light.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi/ic_server_location.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi/ic_server_muted.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi/ic_stat_notify.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi/ic_suppressed.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi/ic_talking_off.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi/ic_talking_on.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi/ic_user_light.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi/list_longpressed.9.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi/list_pressed.9.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi/list_selector_disabled.9.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi/list_selector_focused.9.png
100755 → 100644
Empty file modified app/src/main/res/drawable-mdpi/server_card.9.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi-v11/ic_stat_notify.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi-v9/ic_stat_notify.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/drawer_shadow.9.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/ic_action_add_dark.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/ic_action_add_light.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/ic_action_audio.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/ic_action_audio_muted.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/ic_action_bad.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/ic_action_channels.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/ic_action_chat.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/ic_action_collapsed.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/ic_action_comment.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/ic_action_delete_dark.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/ic_action_delete_light.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/ic_action_drag_handle.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/ic_action_edit_dark.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/ic_action_error.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/ic_action_expanded.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/ic_action_favourite_on.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/ic_action_fullscreen.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/ic_action_headphones.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/ic_action_info_dark.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/ic_action_match.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/ic_action_microphone.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/ic_action_microphone_dark.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/ic_action_microphone_muted.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/ic_action_move.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/ic_action_save.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/ic_action_search.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/ic_action_send.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/ic_action_settings.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/ic_action_sort.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/ic_action_user_dark.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/ic_carriage_return.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/ic_deafened.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/ic_drawer.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/ic_home.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/ic_launcher.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/ic_muted.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/ic_muted_local.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/ic_registered.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/ic_server_deafened.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/ic_server_light.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/ic_server_location.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/ic_server_muted.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/ic_stat_notify.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/ic_suppressed.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/ic_talking_off.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/ic_talking_on.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/ic_user_light.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/list_longpressed.9.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/list_pressed.9.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/list_selector_disabled.9.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/list_selector_focused.9.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xhdpi/server_card.9.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xxhdpi-v11/ic_stat_notify.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xxhdpi-v9/ic_stat_notify.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xxhdpi/ic_action_audio.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xxhdpi/ic_action_audio_muted.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xxhdpi/ic_action_chat.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xxhdpi/ic_action_collapsed.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xxhdpi/ic_action_drag_handle.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xxhdpi/ic_action_expanded.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xxhdpi/ic_action_headphones.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xxhdpi/ic_action_microphone.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xxhdpi/ic_action_microphone_dark.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xxhdpi/ic_action_microphone_muted.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xxhdpi/ic_action_move.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xxhdpi/ic_deafened.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xxhdpi/ic_home.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xxhdpi/ic_launcher.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xxhdpi/ic_muted.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xxhdpi/ic_muted_local.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xxhdpi/ic_server_deafened.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xxhdpi/ic_server_muted.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xxhdpi/ic_stat_notify.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xxhdpi/ic_suppressed.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xxhdpi/ic_talking_off.png
100755 → 100644
Empty file modified app/src/main/res/drawable-xxhdpi/ic_talking_on.png
100755 → 100644
Empty file modified app/src/main/res/drawable/ic_card_overflow.xml
100755 → 100644
Empty file.
Empty file modified app/src/main/res/drawable/ic_stat_notify.png
100755 → 100644
Empty file modified app/src/main/res/drawable/outline_circle.xml
100755 → 100644
Empty file.
Empty file modified app/src/main/res/drawable/outline_circle_deafened.xml
100755 → 100644
Empty file.
Empty file modified app/src/main/res/drawable/outline_circle_muted.xml
100755 → 100644
Empty file.
Empty file modified app/src/main/res/drawable/outline_circle_server_deafened.xml
100755 → 100644
Empty file.
Empty file modified app/src/main/res/drawable/outline_circle_server_muted.xml
100755 → 100644
Empty file.
Empty file modified app/src/main/res/drawable/outline_circle_suppressed.xml
100755 → 100644
Empty file.
Empty file modified app/src/main/res/drawable/outline_circle_talking_off.xml
100755 → 100644
Empty file.
Empty file modified app/src/main/res/drawable/outline_circle_talking_on.xml
100755 → 100644
Empty file.
Empty file modified app/src/main/res/drawable/overlay_background.xml
100755 → 100644
Empty file.
Empty file modified app/src/main/res/drawable/popup_menu_item_background.xml
100755 → 100644
Empty file.
Empty file modified app/src/main/res/drawable/ptt_indicator_background.xml
100755 → 100644
Empty file.
Empty file modified app/src/main/res/layout-sw600dp-v11/fragment_channel.xml
100755 → 100644
Empty file.
Empty file modified app/src/main/res/layout-sw720dp-v11/fragment_channel.xml
100755 → 100644
Empty file.
Empty file modified app/src/main/res/layout/activity_main.xml
100755 → 100644
Empty file.
Empty file modified app/src/main/res/layout/activity_wizard.xml
100755 → 100644
Empty file.
Empty file modified app/src/main/res/layout/channel_row.xml
100755 → 100644
Empty file.
5 changes: 3 additions & 2 deletions app/src/main/res/layout/channel_user_row.xml
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,9 @@
android:background="?attr/selectableItemBackground">

<FrameLayout
android:layout_width="32dp"
android:layout_height="32dp">
android:id="@+id/eikonitsa"
android:layout_width="28dp"
android:layout_height="28dp">

<!--<betaqrpttew.CircleImageView-->
<!--android:id="@+id/user_row_avatar"-->
Expand Down
Empty file modified app/src/main/res/layout/dialog_comment.xml
100755 → 100644
Empty file.
Empty file modified app/src/main/res/layout/dialog_server_edit.xml
100755 → 100644
Empty file.
Empty file modified app/src/main/res/layout/dialog_server_search.xml
100755 → 100644
Empty file.
Empty file modified app/src/main/res/layout/fragment_channel.xml
100755 → 100644
Empty file.
Empty file modified app/src/main/res/layout/fragment_channel_edit.xml
100755 → 100644
Empty file.
Empty file modified app/src/main/res/layout/fragment_channel_list.xml
100755 → 100644
Empty file.
Empty file modified app/src/main/res/layout/fragment_chat.xml
100755 → 100644
Empty file.
Empty file modified app/src/main/res/layout/fragment_public_server_list.xml
100755 → 100644
Empty file.
Empty file modified app/src/main/res/layout/fragment_server_info.xml
100755 → 100644
Empty file.
Empty file modified app/src/main/res/layout/fragment_server_list.xml
100755 → 100644
Empty file.
Empty file modified app/src/main/res/layout/fragment_tokens.xml
100755 → 100644
Empty file.
Empty file modified app/src/main/res/layout/fragment_wizard_audio.xml
100755 → 100644
Empty file.
Loading

0 comments on commit db3bbe8

Please sign in to comment.