fixed the issue of resetting market plugins for genuine users

Signed-off-by: pengzhile <pengzhile@gmail.com>
pull/8/head
pengzhile 4 years ago
parent 7f72608696
commit d9703f90db

@ -1,6 +1,6 @@
# 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:
* Add "Custom Plugin Repository": `https://plugins.zhile.io` manually (`Settings/Preferences` -> `Plugins`)
* Search and install plugin: `IDE Eval Reset`

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

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

Loading…
Cancel
Save