Skip to content

Commit

Permalink
Updates (II) for 1.9.0
Browse files Browse the repository at this point in the history
CHANGES
 - updated changelog & readme with security notice
 - cleaned up obsolete and no longer used files

Signed-off-by: x0b <[email protected]>
  • Loading branch information
x0b committed Oct 4, 2019
1 parent b5bb5a1 commit d22ced5
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 46 deletions.
18 changes: 11 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,22 @@
>**NOTE:**
>This is a modified build of rcloneExplorer because of little activity in the parent repo. For the parent repository, see [kaczmarkiewiczp/rcloneExplorer](https://github.com/kaczmarkiewiczp/rcloneExplorer).
>
>If you encounter an issue with a [version published here](https://github.com/x0b/rcloneExplorer/releases), [open an issue here](https://github.com/x0b/rcloneExplorer/issues/new).

# RcloneExplorer
[![license: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://github.com/x0b/rcloneExplorer/blob/master/LICENSE) [![Github Releases](https://img.shields.io/github/downloads/x0b/rcloneExplorer/total.svg)](https://github.com/x0b/rcloneExplorer/releases) [![GitHub release](https://img.shields.io/github/v/release/x0b/rcloneExplorer?include_prereleases)](https://github.com/x0b/rcloneExplorer/releases/latest)

rclone explorer for Android

>**Note:**
>This is a modified build of rcloneExplorer because of little activity in the parent repo. For the parent repository, see [kaczmarkiewiczp/rcloneExplorer](https://github.com/kaczmarkiewiczp/rcloneExplorer).
>
>If you encounter an issue with a [version published here](https://github.com/x0b/rcloneExplorer/releases), [open an issue here](https://github.com/x0b/rcloneExplorer/issues/new).
## SECURITY NOTICE
If you are running rcloneExplorer **1.3.5** to **1.8.2**, or AIS-synchro make sure that "Show thumbnails" in ```Settings``` > ```General``` is **disabled** and update to the latest version. If you have not enabled thumbnails, you are not affected.
More details in [Security Notice 201901: Remote contents readable from local network when browsing any remote with thumbnails enabled](https://github.com/x0b/rcloneExplorer/wiki/Security-Notice-201901-Remote-contents-readable-from-local-network-when-browsing-any-remote-with-thumbnails-enabled).

Features
--------
- File Management
- List and view files
- Dowload and upload files
- Download and upload files
- Move, rename, and delete files and folders
- Streaming & Integration
- Streaming media files
Expand Down Expand Up @@ -44,6 +47,7 @@ Note that these plans are subject to change and might not materialize completely
- Fix: Crash on LoadingDialog (#7)
- Fix: Crash on Android 5.1.1 for remotes with time zones (#10)
- Fix: Crash in hide remotes dialog (#13)
- Fix: Security issue when using thumbnails (#18)

#### Next Version
- New SAF implementation for much faster directory access
Expand Down
Binary file removed app/lib/x86_64/librclone.so
Binary file not shown.

This file was deleted.

5 changes: 0 additions & 5 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,6 @@
<action android:name="com.google.firebase.MESSAGING_EVENT"/>
</intent-filter>
</service>
<service android:name=".Services.FirebaseIdService">
<intent-filter>
<action android:name="com.google.firebase.INSTANCE_ID_EVENT"/>
</intent-filter>
</service>
<service android:name=".Services.ThumbnailsLoadingService" />
<service android:name=".Services.DeleteService" />
<service android:name=".Services.MoveService" />
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/assets/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* **Fix:** Crash on LoadingDialog
* **Fix:** Crash on Android 5.1.1 for remotes with time zones
* **Fix:** Crash in hide remotes dialog

* **Fix:** Security issue when using thumbnails (details see wiki)
***

### 1.8.2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,9 @@ public boolean onMenuItemClick(MenuItem item) {

private void refreshRemotes() {
remotes = filterRemotes();
recyclerViewAdapter.newData(remotes);
if (null != recyclerViewAdapter) {
recyclerViewAdapter.newData(remotes);
}
}

private List<RemoteItem> filterRemotes() {
Expand Down

This file was deleted.

0 comments on commit d22ced5

Please sign in to comment.