fixed the issue of resetting market plugins for genuine users

Signed-off-by: pengzhile <pengzhile@gmail.com>
pull/8/head
pengzhile 2020-12-01 13:54:37 +08:00
parent 7f72608696
commit d9703f90db
3 changed files with 8 additions and 2 deletions

View File

@ -1,6 +1,6 @@
# Reset Your IDE Eval Information # Reset Your IDE Eval Information
1. Download and install plugin from [Download Link](https://plugins.zhile.io/files/ide-eval-resetter-2.1.6.zip). 1. Download and install plugin from [Download Link](https://plugins.zhile.io/files/ide-eval-resetter-2.1.8.zip).
* Alternative installation method: * Alternative installation method:
* Add "Custom Plugin Repository": `https://plugins.zhile.io` manually (`Settings/Preferences` -> `Plugins`) * Add "Custom Plugin Repository": `https://plugins.zhile.io` manually (`Settings/Preferences` -> `Plugins`)
* Search and install plugin: `IDE Eval Reset` * Search and install plugin: `IDE Eval Reset`

View File

@ -4,7 +4,7 @@ plugins {
} }
group 'io.zhile.research.intellij' group 'io.zhile.research.intellij'
version '2.1.7' version '2.1.8'
sourceCompatibility = 1.7 sourceCompatibility = 1.7
targetCompatibility = 1.7 targetCompatibility = 1.7
@ -29,6 +29,8 @@ intellij {
patchPluginXml { patchPluginXml {
changeNotes """<pre> changeNotes """<pre>
Release v2.1.8
1. fixed the issue of resetting market plugins for genuine users
Release v2.1.7 Release v2.1.7
1. add help page link 1. add help page link
Release v2.1.6 Release v2.1.6

View File

@ -60,6 +60,10 @@ public class Resetter {
continue; continue;
} }
if (file.length() > 0x400) {
continue;
}
list.add(new NormalFileRecord(file)); list.add(new NormalFileRecord(file));
} }
} }