Skip to content

Commit

Permalink
Updated it manifest (#272)
Browse files Browse the repository at this point in the history
a couple objectives
  • Loading branch information
Alse72 authored Jan 3, 2024
1 parent 28536b2 commit 57a90d1
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 8 deletions.
11 changes: 8 additions & 3 deletions cleanFiles/src/Definition.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import java.nio.file.FileSystems;
import java.nio.file.Path;
import java.nio.file.PathMatcher;
import java.nio.file.Paths;
import java.util.ArrayList;
import java.util.LinkedHashMap;
import java.util.List;
Expand Down Expand Up @@ -31,9 +32,9 @@ public Definition(String lang, String fileName, final Map<String, Property> prop
this.properties = properties;
}

public Definition(Path defPath, final Map<String, Property> properties) {
this(defPath.getParent().getFileName().toString(),
defPath.getFileName().toString(),
public Definition(Path path, final Map<String, Property> properties) {
this(path.getParent().getFileName().toString(),
path.getFileName().toString(),
properties);
}

Expand All @@ -57,6 +58,10 @@ public Map<String, Property> getProperties() {
return properties;
}

public Path getPath() {
return Paths.get(lang, fileName);
}

public void replacePropertiesFrom(final Definition def) {
properties.entrySet().parallelStream()
.forEach(entry -> {
Expand Down
2 changes: 1 addition & 1 deletion cleanFiles/src/FileUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public static Definition loadDef(Path fullPath) {
}

public static void saveDef(final Definition def) {
Path toFile = Paths.get(def.getLang(), def.getFileName());
Path toFile = def.getPath();
Path fullPath = TO_REPO.resolve(toFile).normalize();
if (!def.isEmpty()) {
saveJson(fullPath, def.getProperties());
Expand Down
14 changes: 10 additions & 4 deletions it/DestinyObjectiveDefinition.json
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,9 @@
},
"progressDescription": "Segreta \"Spettri del Profondo\" completata"
},
"3950614370": {
"progressDescription": "Segreta \"Rovina della Signora della Guerra\" completata"
},
"2258905201": {
"progressDescription": "Partite dello Stendardo di Ferro completate"
},
Expand All @@ -156,16 +159,16 @@
"progressDescription": "Partite dello Stendardo di Ferro completate"
},
"1166685245": {
"progressDescription": "Partite dello Stendardo di Ferro completate con sottoclassi [Arco] Arco, [Vuoto] Vuoto, [Solare] Solare o [Telascura] Telascura"
"progressDescription": "Partite dello Stendardo di Ferro completate con sottoclassi [Stasi] Stasi, [Solare] Solare o [Telascura] Telascura"
},
"2457555059": {
"progressDescription": "Partite dello Stendardo di Ferro completate con sottoclassi [Arco] Arco, [Vuoto] Vuoto, [Solare] Solare o [Telascura] Telascura"
"progressDescription": "Partite dello Stendardo di Ferro completate con sottoclassi [Stasi] Stasi, [Solare] Solare o [Telascura] Telascura"
},
"3304988490": {
"progressDescription": "Partite dello Stendardo di Ferro completate con sottoclassi [Arco] Arco, [Vuoto] Vuoto, [Solare] Solare o [Telascura] Telascura"
"progressDescription": "Partite dello Stendardo di Ferro completate con sottoclassi [Stasi] Stasi, [Solare] Solare o [Telascura] Telascura"
},
"3652736024": {
"progressDescription": "Partite dello Stendardo di Ferro completate con sottoclassi [Arco] Arco, [Vuoto] Vuoto, [Solare] Solare o [Telascura] Telascura"
"progressDescription": "Partite dello Stendardo di Ferro completate con sottoclassi [Stasi] Stasi, [Solare] Solare o [Telascura] Telascura"
},
"275339596": {
"progressDescription": "Taglie del Solcanuvole completate"
Expand All @@ -179,6 +182,9 @@
"2177999971": {
"progressDescription": "Parla con Quinn Laghari"
},
"3447791523": {
"progressDescription": "Percorsi liberati nella \"Tana di Riven\" o nella \"Spira\""
},
"625886847": {
"progressDescription": "Colpi di grazia con  o [Falcione]"
},
Expand Down

0 comments on commit 57a90d1

Please sign in to comment.