Skip to content

Commit

Permalink
123
Browse files Browse the repository at this point in the history
  • Loading branch information
ThIsLinked committed Jun 11, 2023
0 parents commit aa55e73
Show file tree
Hide file tree
Showing 862 changed files with 7,549 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
gradle-8.1.1-bin.zip filter=lfs diff=lfs merge=lfs -text
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
*.iml
.gradle
.idea
/fourpda.keystore
/local.properties
/.idea/workspace.xml
/.idea/libraries
.DS_Store
/build
/captures
3 changes: 3 additions & 0 deletions app/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/build
/release

32 changes: 32 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 28

defaultConfig {
applicationId 'ru.fourpda.skins.sample'
minSdkVersion 10
targetSdkVersion 28
versionCode 10940
versionName '1.9.40'
proguardFiles
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
applicationVariants.all { variant ->
variant.outputs.all { output ->
outputFileName = defaultConfig.applicationId + "-" + defaultConfig.versionName + ".apk"
}
}
}
}
namespace 'ru.fourpda.skins.dark'
buildToolsVersion '33.0.2'
}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
testImplementation 'junit:junit:4.13.2'
}
17 changes: 17 additions & 0 deletions app/proguard-rules.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Add project specific ProGuard rules here.
# By default, the flags in this file are appended to flags specified
# in C:\ADT\sdk_new/tools/proguard/proguard-android.txt
# You can edit the include path and order by changing the proguardFiles
# directive in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html

# Add any project specific keep options here:

# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}
15 changes: 15 additions & 0 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8" ?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
android:installLocation="auto">
<application
android:label="@string/app_name"
android:icon="@mipmap/ic_launcher">
<receiver
android:name=".BindReceiver"
android:exported="true">
<intent-filter>
<action android:name="ru.fourpda.skin" />
</intent-filter>
</receiver>
</application>
</manifest>
13 changes: 13 additions & 0 deletions app/src/main/java/ru/fourpda/skins/BindReceiver.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package ru.fourpda.skins.sample;

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;

public class BindReceiver extends BroadcastReceiver
{
@Override
public void onReceive(Context context, Intent intent)
{
}
}
7 changes: 7 additions & 0 deletions app/src/main/res/color/bookmarks_header_csl.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:state_pressed="true"
android:color="@color/pressed" />
<item android:color="@color/label_text" />
</selector>
9 changes: 9 additions & 0 deletions app/src/main/res/color/btn_text_color.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:state_enabled="true"
android:color="@color/button_text" />
<item
android:state_enabled="false"
android:color="@color/disable_text" />
</selector>
7 changes: 7 additions & 0 deletions app/src/main/res/color/label_text_csl.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:state_pressed="true"
android:color="@color/pressed" />
<item android:color="@color/label_text" />
</selector>
19 changes: 19 additions & 0 deletions app/src/main/res/color/link_color.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?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/pressed" />
<item
android:state_enabled="true"
android:state_pressed="false"
android:color="@color/main_text" />
<item
android:state_enabled="false"
android:state_pressed="true"
android:color="@color/pressed" />
<item
android:state_enabled="false"
android:state_pressed="false"
android:color="@color/disable_text" />
</selector>
7 changes: 7 additions & 0 deletions app/src/main/res/color/zn_bookmarks_header_csl.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:state_pressed="true"
android:color="@color/zn_pressed" />
<item android:color="@color/zn_label_text" />
</selector>
9 changes: 9 additions & 0 deletions app/src/main/res/color/zn_btn_text_color.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:state_enabled="true"
android:color="@color/zn_button_text" />
<item
android:state_enabled="false"
android:color="@color/zn_disable_text" />
</selector>
7 changes: 7 additions & 0 deletions app/src/main/res/color/zn_label_text_csl.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:state_pressed="true"
android:color="@color/zn_pressed" />
<item android:color="@color/zn_label_text" />
</selector>
19 changes: 19 additions & 0 deletions app/src/main/res/color/zn_link_color.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?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/zn_pressed" />
<item
android:state_enabled="true"
android:state_pressed="false"
android:color="@color/zn_main_text" />
<item
android:state_enabled="false"
android:state_pressed="true"
android:color="@color/zn_pressed" />
<item
android:state_enabled="false"
android:state_pressed="false"
android:color="@color/zn_disable_text" />
</selector>
Binary file added app/src/main/res/drawable-hdpi/b_editor_clear.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/res/drawable-hdpi/b_tag_b.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/res/drawable-hdpi/b_tag_center.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/res/drawable-hdpi/b_tag_code.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/res/drawable-hdpi/b_tag_color.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/res/drawable-hdpi/b_tag_hide.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/res/drawable-hdpi/b_tag_i.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/res/drawable-hdpi/b_tag_left.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/res/drawable-hdpi/b_tag_link.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/res/drawable-hdpi/b_tag_list.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/res/drawable-hdpi/b_tag_list_number.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/res/drawable-hdpi/b_tag_mod_admin.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/res/drawable-hdpi/b_tag_mod_kur.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/res/drawable-hdpi/b_tag_mod_mod.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/res/drawable-hdpi/b_tag_offtop.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/res/drawable-hdpi/b_tag_quote.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/res/drawable-hdpi/b_tag_right.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/res/drawable-hdpi/b_tag_size.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/res/drawable-hdpi/b_tag_spoiler.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/res/drawable-hdpi/b_tag_strike.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/res/drawable-hdpi/b_tag_sub.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/res/drawable-hdpi/b_tag_sup.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/res/drawable-hdpi/b_tag_u.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/res/drawable-hdpi/bc_tree_b.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/res/drawable-hdpi/bc_tree_bs.png
Binary file added app/src/main/res/drawable-hdpi/bc_tree_c.png
Binary file added app/src/main/res/drawable-hdpi/bc_tree_m.png
Binary file added app/src/main/res/drawable-hdpi/bc_tree_ms.png
Binary file added app/src/main/res/drawable-hdpi/bc_tree_msc.png
Binary file added app/src/main/res/drawable-hdpi/bc_tree_t.png
Binary file added app/src/main/res/drawable-hdpi/bc_tree_tsc.png
Binary file added app/src/main/res/drawable-hdpi/ic_add_attach.png
Binary file added app/src/main/res/drawable-hdpi/ic_addbox.png
Binary file added app/src/main/res/drawable-hdpi/ic_attach.png
Binary file added app/src/main/res/drawable-hdpi/ic_attach_qms.png
Binary file added app/src/main/res/drawable-hdpi/ic_bar_logo.png
Binary file added app/src/main/res/drawable-hdpi/ic_bar_menu.png
Binary file added app/src/main/res/drawable-hdpi/ic_bar_nav.png
Binary file added app/src/main/res/drawable-hdpi/ic_bar_search.png
Binary file added app/src/main/res/drawable-hdpi/ic_bar_up.png
Binary file added app/src/main/res/drawable-hdpi/ic_checkbox_off.png
Binary file added app/src/main/res/drawable-hdpi/ic_checkbox_on.png
Binary file added app/src/main/res/drawable-hdpi/ic_delete.png
Binary file added app/src/main/res/drawable-hdpi/ic_drop_down.png
Binary file added app/src/main/res/drawable-hdpi/ic_exit.png
Binary file added app/src/main/res/drawable-hdpi/ic_expand_close.png
Binary file added app/src/main/res/drawable-hdpi/ic_expand_open.png
Binary file added app/src/main/res/drawable-hdpi/ic_expander_close.png
Binary file added app/src/main/res/drawable-hdpi/ic_expander_open.png
Binary file added app/src/main/res/drawable-hdpi/ic_logo.png
Binary file added app/src/main/res/drawable-hdpi/ic_nav_about.png
Binary file added app/src/main/res/drawable-hdpi/ic_nav_edit.png
Binary file added app/src/main/res/drawable-hdpi/ic_nav_fav.png
Binary file added app/src/main/res/drawable-hdpi/ic_nav_forum.png
Binary file added app/src/main/res/drawable-hdpi/ic_nav_home.png
Binary file added app/src/main/res/drawable-hdpi/ic_nav_key.png
Binary file added app/src/main/res/drawable-hdpi/ic_nav_options.png
Binary file added app/src/main/res/drawable-hdpi/ic_nav_profile.png
Binary file added app/src/main/res/drawable-hdpi/ic_nav_qms.png
Binary file added app/src/main/res/drawable-hdpi/ic_nav_site.png
Binary file added app/src/main/res/drawable-hdpi/ic_next.png
Binary file added app/src/main/res/drawable-hdpi/ic_night.png
Binary file added app/src/main/res/drawable-hdpi/ic_prev.png
Binary file added app/src/main/res/drawable-hdpi/ic_preview.png
Binary file added app/src/main/res/drawable-hdpi/ic_radiobutton_on.png
Binary file added app/src/main/res/drawable-hdpi/ic_removebox.png
Binary file added app/src/main/res/drawable-hdpi/ic_scroll_down.png
Binary file added app/src/main/res/drawable-hdpi/ic_scroll_up.png
Binary file added app/src/main/res/drawable-hdpi/ic_send.png
Binary file added app/src/main/res/drawable-hdpi/ic_send_disable.png
Binary file added app/src/main/res/drawable-hdpi/ic_send_qms.png
Binary file added app/src/main/res/drawable-hdpi/ic_share.png
Binary file added app/src/main/res/drawable-hdpi/ic_smiles.png
Binary file added app/src/main/res/drawable-hdpi/ic_smiles_qms.png
Binary file added app/src/main/res/drawable-hdpi/ic_snapback.png
Binary file added app/src/main/res/drawable-hdpi/ic_thumb_c_down.png
Binary file added app/src/main/res/drawable-hdpi/ic_thumb_c_up.png
Binary file added app/src/main/res/drawable-hdpi/ic_thumb_down.png
Binary file added app/src/main/res/drawable-hdpi/ic_thumb_up.png
Binary file added app/src/main/res/drawable-hdpi/ic_user.png
Binary file added app/src/main/res/drawable-hdpi/ic_zero.png
Binary file added app/src/main/res/drawable-hdpi/np_dialog.9.png
Binary file added app/src/main/res/drawable-hdpi/np_menu.9.png
Binary file added app/src/main/res/drawable-hdpi/np_nav_bg.9.png
Binary file added app/src/main/res/drawable-hdpi/np_popup.9.png
Binary file added app/src/main/res/drawable-hdpi/zn_b_editor_clear.png
Binary file added app/src/main/res/drawable-hdpi/zn_b_tag_b.png
Binary file added app/src/main/res/drawable-hdpi/zn_b_tag_center.png
Binary file added app/src/main/res/drawable-hdpi/zn_b_tag_code.png
Binary file added app/src/main/res/drawable-hdpi/zn_b_tag_color.png
Binary file added app/src/main/res/drawable-hdpi/zn_b_tag_hide.png
Binary file added app/src/main/res/drawable-hdpi/zn_b_tag_i.png
Binary file added app/src/main/res/drawable-hdpi/zn_b_tag_left.png
Binary file added app/src/main/res/drawable-hdpi/zn_b_tag_link.png
Binary file added app/src/main/res/drawable-hdpi/zn_b_tag_list.png
Binary file added app/src/main/res/drawable-hdpi/zn_b_tag_mod_kur.png
Binary file added app/src/main/res/drawable-hdpi/zn_b_tag_mod_mod.png
Binary file added app/src/main/res/drawable-hdpi/zn_b_tag_offtop.png
Binary file added app/src/main/res/drawable-hdpi/zn_b_tag_quote.png
Binary file added app/src/main/res/drawable-hdpi/zn_b_tag_right.png
Binary file added app/src/main/res/drawable-hdpi/zn_b_tag_size.png
Binary file added app/src/main/res/drawable-hdpi/zn_b_tag_spoiler.png
Binary file added app/src/main/res/drawable-hdpi/zn_b_tag_strike.png
Binary file added app/src/main/res/drawable-hdpi/zn_b_tag_sub.png
Binary file added app/src/main/res/drawable-hdpi/zn_b_tag_sup.png
Binary file added app/src/main/res/drawable-hdpi/zn_b_tag_u.png
Binary file added app/src/main/res/drawable-hdpi/zn_bc_tree_b.png
Binary file added app/src/main/res/drawable-hdpi/zn_bc_tree_bs.png
Binary file added app/src/main/res/drawable-hdpi/zn_bc_tree_c.png
Binary file added app/src/main/res/drawable-hdpi/zn_bc_tree_m.png
Binary file added app/src/main/res/drawable-hdpi/zn_bc_tree_ms.png
Binary file added app/src/main/res/drawable-hdpi/zn_bc_tree_msc.png
Binary file added app/src/main/res/drawable-hdpi/zn_bc_tree_t.png
Binary file added app/src/main/res/drawable-hdpi/zn_bc_tree_tsc.png
Binary file added app/src/main/res/drawable-hdpi/zn_ic_add_attach.png
Binary file added app/src/main/res/drawable-hdpi/zn_ic_addbox.png
Binary file added app/src/main/res/drawable-hdpi/zn_ic_attach.png
Binary file added app/src/main/res/drawable-hdpi/zn_ic_attach_qms.png
Binary file added app/src/main/res/drawable-hdpi/zn_ic_bar_logo.png
Binary file added app/src/main/res/drawable-hdpi/zn_ic_bar_menu.png
Binary file added app/src/main/res/drawable-hdpi/zn_ic_bar_nav.png
Binary file added app/src/main/res/drawable-hdpi/zn_ic_bar_search.png
Binary file added app/src/main/res/drawable-hdpi/zn_ic_bar_up.png
Binary file added app/src/main/res/drawable-hdpi/zn_ic_checkbox_on.png
Binary file added app/src/main/res/drawable-hdpi/zn_ic_delete.png
Binary file added app/src/main/res/drawable-hdpi/zn_ic_drop_down.png
Binary file added app/src/main/res/drawable-hdpi/zn_ic_exit.png
Binary file added app/src/main/res/drawable-hdpi/zn_ic_expand_open.png
Binary file added app/src/main/res/drawable-hdpi/zn_ic_nav_about.png
Binary file added app/src/main/res/drawable-hdpi/zn_ic_nav_edit.png
Binary file added app/src/main/res/drawable-hdpi/zn_ic_nav_fav.png
Binary file added app/src/main/res/drawable-hdpi/zn_ic_nav_forum.png
Binary file added app/src/main/res/drawable-hdpi/zn_ic_nav_home.png
Binary file added app/src/main/res/drawable-hdpi/zn_ic_nav_key.png
Binary file added app/src/main/res/drawable-hdpi/zn_ic_nav_options.png
Binary file added app/src/main/res/drawable-hdpi/zn_ic_nav_profile.png
Binary file added app/src/main/res/drawable-hdpi/zn_ic_nav_qms.png
Binary file added app/src/main/res/drawable-hdpi/zn_ic_nav_site.png
Binary file added app/src/main/res/drawable-hdpi/zn_ic_next.png
Binary file added app/src/main/res/drawable-hdpi/zn_ic_night.png
Binary file added app/src/main/res/drawable-hdpi/zn_ic_prev.png
Binary file added app/src/main/res/drawable-hdpi/zn_ic_preview.png
Binary file added app/src/main/res/drawable-hdpi/zn_ic_removebox.png
Binary file added app/src/main/res/drawable-hdpi/zn_ic_scroll_down.png
Binary file added app/src/main/res/drawable-hdpi/zn_ic_scroll_up.png
Binary file added app/src/main/res/drawable-hdpi/zn_ic_send.png
Binary file added app/src/main/res/drawable-hdpi/zn_ic_send_qms.png
Binary file added app/src/main/res/drawable-hdpi/zn_ic_share.png
Binary file added app/src/main/res/drawable-hdpi/zn_ic_smiles.png
Binary file added app/src/main/res/drawable-hdpi/zn_ic_smiles_qms.png
Binary file added app/src/main/res/drawable-hdpi/zn_ic_snapback.png
Binary file added app/src/main/res/drawable-hdpi/zn_ic_thumb_c_up.png
Binary file added app/src/main/res/drawable-hdpi/zn_ic_thumb_down.png
Binary file added app/src/main/res/drawable-hdpi/zn_ic_thumb_up.png
Binary file added app/src/main/res/drawable-hdpi/zn_ic_user.png
Binary file added app/src/main/res/drawable-hdpi/zn_ic_zero.png
Binary file added app/src/main/res/drawable-hdpi/zn_np_dialog.9.png
Binary file added app/src/main/res/drawable-hdpi/zn_np_menu.9.png
Binary file added app/src/main/res/drawable-hdpi/zn_np_nav_bg.9.png
Binary file added app/src/main/res/drawable-hdpi/zn_np_popup.9.png
Binary file added app/src/main/res/drawable-xhdpi/b_editor_clear.png
Binary file added app/src/main/res/drawable-xhdpi/b_tag_b.png
Binary file added app/src/main/res/drawable-xhdpi/b_tag_center.png
Binary file added app/src/main/res/drawable-xhdpi/b_tag_code.png
Binary file added app/src/main/res/drawable-xhdpi/b_tag_color.png
Binary file added app/src/main/res/drawable-xhdpi/b_tag_hide.png
Binary file added app/src/main/res/drawable-xhdpi/b_tag_i.png
Binary file added app/src/main/res/drawable-xhdpi/b_tag_left.png
Binary file added app/src/main/res/drawable-xhdpi/b_tag_link.png
Binary file added app/src/main/res/drawable-xhdpi/b_tag_list.png
Binary file added app/src/main/res/drawable-xhdpi/b_tag_mod_admin.png
Binary file added app/src/main/res/drawable-xhdpi/b_tag_mod_kur.png
Binary file added app/src/main/res/drawable-xhdpi/b_tag_mod_mod.png
Binary file added app/src/main/res/drawable-xhdpi/b_tag_offtop.png
Binary file added app/src/main/res/drawable-xhdpi/b_tag_quote.png
Binary file added app/src/main/res/drawable-xhdpi/b_tag_right.png
Binary file added app/src/main/res/drawable-xhdpi/b_tag_size.png
Binary file added app/src/main/res/drawable-xhdpi/b_tag_spoiler.png
Binary file added app/src/main/res/drawable-xhdpi/b_tag_strike.png
Binary file added app/src/main/res/drawable-xhdpi/b_tag_sub.png
Binary file added app/src/main/res/drawable-xhdpi/b_tag_sup.png
Binary file added app/src/main/res/drawable-xhdpi/b_tag_u.png
Binary file added app/src/main/res/drawable-xhdpi/bc_tree_b.png
Binary file added app/src/main/res/drawable-xhdpi/bc_tree_bs.png
Binary file added app/src/main/res/drawable-xhdpi/bc_tree_c.png
Binary file added app/src/main/res/drawable-xhdpi/bc_tree_m.png
Binary file added app/src/main/res/drawable-xhdpi/bc_tree_ms.png
Binary file added app/src/main/res/drawable-xhdpi/bc_tree_msc.png
Binary file added app/src/main/res/drawable-xhdpi/bc_tree_t.png
Binary file added app/src/main/res/drawable-xhdpi/bc_tree_tsc.png
Binary file added app/src/main/res/drawable-xhdpi/ic_add_attach.png
Binary file added app/src/main/res/drawable-xhdpi/ic_add_folder.png
Binary file added app/src/main/res/drawable-xhdpi/ic_addbox.png
Binary file added app/src/main/res/drawable-xhdpi/ic_attach.png
Binary file added app/src/main/res/drawable-xhdpi/ic_attach_qms.png
Binary file added app/src/main/res/drawable-xhdpi/ic_baloon.png
Binary file added app/src/main/res/drawable-xhdpi/ic_bar_logo.png
Binary file added app/src/main/res/drawable-xhdpi/ic_bar_menu.png
Binary file added app/src/main/res/drawable-xhdpi/ic_bar_nav.png
Binary file added app/src/main/res/drawable-xhdpi/ic_bar_search.png
Binary file added app/src/main/res/drawable-xhdpi/ic_bar_up.png
Binary file added app/src/main/res/drawable-xhdpi/ic_checkbox_off.png
Binary file added app/src/main/res/drawable-xhdpi/ic_checkbox_on.png
Binary file added app/src/main/res/drawable-xhdpi/ic_delete.png
Binary file added app/src/main/res/drawable-xhdpi/ic_drop_down.png
Binary file added app/src/main/res/drawable-xhdpi/ic_exit.png
Binary file added app/src/main/res/drawable-xhdpi/ic_expand_close.png
Binary file added app/src/main/res/drawable-xhdpi/ic_expand_open.png
Binary file added app/src/main/res/drawable-xhdpi/ic_expander_open.png
Binary file added app/src/main/res/drawable-xhdpi/ic_nav_about.png
Binary file added app/src/main/res/drawable-xhdpi/ic_nav_edit.png
Binary file added app/src/main/res/drawable-xhdpi/ic_nav_fav.png
Binary file added app/src/main/res/drawable-xhdpi/ic_nav_forum.png
Binary file added app/src/main/res/drawable-xhdpi/ic_nav_home.png
Binary file added app/src/main/res/drawable-xhdpi/ic_nav_key.png
Binary file added app/src/main/res/drawable-xhdpi/ic_nav_options.png
Binary file added app/src/main/res/drawable-xhdpi/ic_nav_profile.png
Binary file added app/src/main/res/drawable-xhdpi/ic_nav_qms.png
Binary file added app/src/main/res/drawable-xhdpi/ic_nav_site.png
Binary file added app/src/main/res/drawable-xhdpi/ic_next.png
Binary file added app/src/main/res/drawable-xhdpi/ic_offline.png
Binary file added app/src/main/res/drawable-xhdpi/ic_online.png
Binary file added app/src/main/res/drawable-xhdpi/ic_prev.png
Binary file added app/src/main/res/drawable-xhdpi/ic_preview.png
Binary file added app/src/main/res/drawable-xhdpi/ic_protected.png
Binary file added app/src/main/res/drawable-xhdpi/ic_qms_unread.png
Binary file added app/src/main/res/drawable-xhdpi/ic_removebox.png
Binary file added app/src/main/res/drawable-xhdpi/ic_scroll_down.png
Binary file added app/src/main/res/drawable-xhdpi/ic_scroll_up.png
Binary file added app/src/main/res/drawable-xhdpi/ic_send.png
Binary file added app/src/main/res/drawable-xhdpi/ic_send_disable.png
Binary file added app/src/main/res/drawable-xhdpi/ic_send_qms.png
Binary file added app/src/main/res/drawable-xhdpi/ic_share.png
Binary file added app/src/main/res/drawable-xhdpi/ic_smiles.png
Binary file added app/src/main/res/drawable-xhdpi/ic_smiles_qms.png
Binary file added app/src/main/res/drawable-xhdpi/ic_snapback.png
Binary file added app/src/main/res/drawable-xhdpi/ic_thumb_c_down.png
Binary file added app/src/main/res/drawable-xhdpi/ic_thumb_c_up.png
Binary file added app/src/main/res/drawable-xhdpi/ic_thumb_down.png
Binary file added app/src/main/res/drawable-xhdpi/ic_thumb_up.png
Binary file added app/src/main/res/drawable-xhdpi/ic_unread.png
Loading

0 comments on commit aa55e73

Please sign in to comment.