Skip to content

Commit

Permalink
Filter Menu修正
Browse files Browse the repository at this point in the history
  • Loading branch information
isayan committed Jul 25, 2024
1 parent e776700 commit b4bf0a1
Show file tree
Hide file tree
Showing 7 changed files with 59 additions and 31 deletions.
35 changes: 24 additions & 11 deletions Readme-ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,31 +52,44 @@ Disallowed Application と Allowed Application の2つのモードがありま

### Settings 検索

![Menu Settings](images/Menu-Settings-Search.png) / ![Menu Settings](images/Menu-Settings-SortBy.png)
![Menu Settings](images/Menu-Settings-Search.png) / ![Menu Settings](images/Menu-Settings-Menu.png)

画面上部の検索アイコン(![Menu](images/Search.png))から、アプリケーションを絞り込めます。
アプリケーション名または、パッケージ名に指定したキーワードを含むアプリケーションのみが表示されます。

プリケーションリストは、画面上部のメニューアイコン(![Menu](images/Menu.png))からソートできます。

* order by asc
* 昇順にソートします
### Settings Menu

* order by desc
* 降順にソートします
アプリ一覧の表示方法を変更します。

* filter by app name
* アプリケーション名に指定したキーワードを含むものを検索します
* show system app
* システムアプリを表示します

* filter by package name
* パッケージ名に指定したキーワードを含むものを検索します。
#### sort by

* sort by app name
* app name
* アプリケーション名でアプリケーションリストを並べ替えます。

* sort by package name
* package name
* パッケージ名でアプリケーションリストを並べ替えます。

#### order by

* ascending
* 昇順にソートします

* descending
* 降順にソートします

#### filter by

* app name
* アプリケーション名に指定したキーワードを含むものを検索します。

* package name
* パッケージ名に指定したキーワードを含むものを検索します。

### MITM (SSL 復号化)

TunProxyはSSL復号化を実行しません。TunProxyは透過プロキシのように機能します。
Expand Down
35 changes: 24 additions & 11 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,31 +50,44 @@ The default is **Disallowed Application** selected.

### Settings Search

![Menu Settings](images/Menu-Settings-Search.png) / ![Menu Settings](images/Menu-Settings-SortBy.png)
![Menu Settings](images/Menu-Settings-Search.png) / ![Menu Settings](images/Menu-Settings-Menu.png)

You can narrow down the applications from the search icon.(![Menu](images/Search.png))
Only applications that contain the keyword specified in the application name or package name will be displayed.

The application list can be sorted from the menu icon (![Menu](images/Menu.png)) at the top of the screen.

* order by asc
* Sorting in ascending order
### Settings Menu

* order by desc
* Sorting in descending order
Changed the way the application list is displayed.

* filter by app name
* Search for the application name that contains the keyword you specified.
* show system app
* show system application

* filter by package name
* Search for the package name that contains the keyword you specified.
### sort by

* sort by app name
* app name
* Sort application list by application name

* sort by package name
* package name
* Sort application list by package name

### order by

* ascending
* Sorting in ascending order

* descending
* Sorting in descending order

### filter by

* app name
* Search for the application name that contains the keyword you specified.

* package name
* Search for the package name that contains the keyword you specified.

### MITM (SSL decrypt)

TunProxy does not perform SSL decryption. TunProxy acts like a transparent proxy.
Expand Down
15 changes: 8 additions & 7 deletions android_app/app/src/main/res/menu/menu_search.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@
<!-- show app -->
<item
android:id="@+id/menu_filter_app_system"
android:checkable="true"
android:title="show system app"
android:checkable="true"
android:enabled="true"
app:showAsAction="never" />
<!-- sort by -->
<item
Expand All @@ -31,12 +32,12 @@
<item
android:id="@+id/menu_sort_app_name"
android:checked="true"
android:title="sort by app name"
android:title="app name"
android:orderInCategory="111"
app:showAsAction="never" />
<item
android:id="@+id/menu_sort_pkg_name"
android:title="sort by package name"
android:title="package name"
android:orderInCategory="112"
app:showAsAction="never" />
</group>
Expand All @@ -59,12 +60,12 @@
<item
android:id="@+id/menu_sort_order_asc"
android:checked="true"
android:title="Asc"
android:title="ascending"
android:orderInCategory="211"
app:showAsAction="never" />
<item
android:id="@+id/menu_sort_order_desc"
android:title="Desc"
android:title="descending"
android:orderInCategory="212"
app:showAsAction="never" />
</group>
Expand All @@ -87,12 +88,12 @@
<item
android:id="@+id/menu_filter_app_name"
android:checked="true"
android:title="filter by app name"
android:title="app name"
android:orderInCategory="211"
app:showAsAction="never" />
<item
android:id="@+id/menu_filter_pkg_name"
android:title="filter by package name"
android:title="package name"
android:orderInCategory="212"
app:showAsAction="never" />
</group>
Expand Down
Binary file modified android_app/gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
5 changes: 3 additions & 2 deletions android_app/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#Wed Mar 25 19:17:46 JST 2020
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.4-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-all.zip
Binary file added images/Menu-Settings-Menu.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 removed images/Menu-Settings-SortBy.png
Binary file not shown.

0 comments on commit b4bf0a1

Please sign in to comment.