File tree 3 files changed +10
-18
lines changed
src/main/java/fr/totetmatt/blueskygephi
3 files changed +10
-18
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,11 @@ Keep in mind current atproto access point from bluesky is quite permissive and m
19
19
You can fetch network from user from multiple way :
20
20
- Put one or multiple (separated by line return) handles or dids inside the plugin textarea and click on "Go!"
21
21
- You can right click on a node and select contextual menu item related to the plugin
22
- - * Bluesky Fetch default data* , will fetch network based on the current configuration on the plugin panel
23
- - * Fetch followers only data* , will fetch only the followers of the node
24
- - * Fetch follows only data* , will fetch only the follows of the node
22
+ - ** Bluesky Fetch default data** , will fetch network based on the current configuration on the plugin panel
23
+ - ** Fetch followers only data** , will fetch only the followers of the node
24
+ - ** Fetch follows only data** , will fetch only the follows of the node
25
+
26
+ ## Deep Search
27
+ By activating ** Fetch also n+1** , the plugin will fetch the selected handles network ** and also** the network of the handles found.
28
+
29
+ /!\ Keep in mind that this can be very long as some users has a long list of followers or follows. /!\
Original file line number Diff line number Diff line change @@ -147,6 +147,7 @@ private void process(String actor, boolean isDeepSearch) {
147
147
for (var response : responses ) {
148
148
Identity subject = response .getSubject ();
149
149
Node source = createNode (subject );
150
+ source .setColor (Color .GREEN );
150
151
for (var follow : response .getFollows ()) {
151
152
if (isDeepSearch ) {
152
153
foaf .add (follow .getDid ());
@@ -166,6 +167,7 @@ private void process(String actor, boolean isDeepSearch) {
166
167
for (var response : responses ) {
167
168
Identity subject = response .getSubject ();
168
169
Node target = createNode (subject );
170
+ target .setColor (Color .GREEN );
169
171
for (var follower : response .getFollowers ()) {
170
172
if (isDeepSearch ) {
171
173
foaf .add (follower .getDid ());
Original file line number Diff line number Diff line change 26
26
<goal >package</goal >
27
27
</goals >
28
28
</action >
29
- <action >
30
- <actionName >CUSTOM-org.gephi:gephi-maven-plugin:run</actionName >
31
- <displayName >org.gephi:gephi-maven-plugin:run</displayName >
32
- <goals >
33
- <goal >org.gephi:gephi-maven-plugin:run</goal >
34
- </goals >
35
- </action >
36
- <action >
37
- <actionName >CUSTOM-package org.gephi:gephi-maven-plugin:run</actionName >
38
- <displayName >package org.gephi:gephi-maven-plugin:run</displayName >
39
- <goals >
40
- <goal >package</goal >
41
- <goal >org.gephi:gephi-maven-plugin:run</goal >
42
- </goals >
43
- </action >
44
29
</actions >
You can’t perform that action at this time.
0 commit comments