arc.util.Http migration
This commit is contained in:
@@ -1,7 +1,6 @@
|
|||||||
package mindustry.net;
|
package mindustry.net;
|
||||||
|
|
||||||
import arc.*;
|
import arc.*;
|
||||||
import arc.Net.*;
|
|
||||||
import arc.files.*;
|
import arc.files.*;
|
||||||
import arc.func.*;
|
import arc.func.*;
|
||||||
import arc.util.*;
|
import arc.util.*;
|
||||||
@@ -62,27 +61,25 @@ public class BeControl{
|
|||||||
|
|
||||||
/** asynchronously checks for updates. */
|
/** asynchronously checks for updates. */
|
||||||
public void checkUpdate(Boolc done){
|
public void checkUpdate(Boolc done){
|
||||||
Core.net.httpGet("https://api.github.com/repos/Anuken/MindustryBuilds/releases/latest", res -> {
|
Http.get("https://api.github.com/repos/Anuken/MindustryBuilds/releases/latest")
|
||||||
if(res.getStatus() == HttpStatus.OK){
|
.error(e -> {}) //ignore errors
|
||||||
Jval val = Jval.read(res.getResultAsString());
|
.submit(res -> {
|
||||||
int newBuild = Strings.parseInt(val.getString("tag_name", "0"));
|
Jval val = Jval.read(res.getResultAsString());
|
||||||
if(newBuild > Version.build){
|
int newBuild = Strings.parseInt(val.getString("tag_name", "0"));
|
||||||
Jval asset = val.get("assets").asArray().find(v -> v.getString("name", "").startsWith(headless ? "Mindustry-BE-Server" : "Mindustry-BE-Desktop"));
|
if(newBuild > Version.build){
|
||||||
String url = asset.getString("browser_download_url", "");
|
Jval asset = val.get("assets").asArray().find(v -> v.getString("name", "").startsWith(headless ? "Mindustry-BE-Server" : "Mindustry-BE-Desktop"));
|
||||||
updateAvailable = true;
|
String url = asset.getString("browser_download_url", "");
|
||||||
updateBuild = newBuild;
|
updateAvailable = true;
|
||||||
updateUrl = url;
|
updateBuild = newBuild;
|
||||||
Core.app.post(() -> {
|
updateUrl = url;
|
||||||
showUpdateDialog();
|
Core.app.post(() -> {
|
||||||
done.get(true);
|
showUpdateDialog();
|
||||||
});
|
done.get(true);
|
||||||
}else{
|
});
|
||||||
Core.app.post(() -> done.get(false));
|
|
||||||
}
|
|
||||||
}else{
|
}else{
|
||||||
Core.app.post(() -> done.get(false));
|
Core.app.post(() -> done.get(false));
|
||||||
}
|
}
|
||||||
}, error -> {}); //ignore errors
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/** @return whether a new update is available */
|
/** @return whether a new update is available */
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
package mindustry.net;
|
package mindustry.net;
|
||||||
|
|
||||||
import arc.*;
|
import arc.*;
|
||||||
import arc.Net.*;
|
|
||||||
import arc.files.*;
|
import arc.files.*;
|
||||||
import arc.func.*;
|
import arc.func.*;
|
||||||
import arc.struct.*;
|
import arc.struct.*;
|
||||||
@@ -150,12 +149,12 @@ public class CrashSender{
|
|||||||
Log.info("Sending crash report.");
|
Log.info("Sending crash report.");
|
||||||
|
|
||||||
//post to crash report URL, exit code indicates send success
|
//post to crash report URL, exit code indicates send success
|
||||||
new arc.Net().http(new HttpRequest().block(true).method(HttpMethod.POST).content(value.toJson(OutputType.json)).url(Vars.crashReportURL), r -> {
|
Http.post(Vars.crashReportURL, value.toJson(OutputType.json)).error(t -> {
|
||||||
Log.info("Crash sent successfully.");
|
|
||||||
System.exit(1);
|
|
||||||
}, t -> {
|
|
||||||
Log.info("Crash report not sent.");
|
Log.info("Crash report not sent.");
|
||||||
System.exit(-1);
|
System.exit(-1);
|
||||||
|
}).block(r -> {
|
||||||
|
Log.info("Crash sent successfully.");
|
||||||
|
System.exit(1);
|
||||||
});
|
});
|
||||||
|
|
||||||
ret();
|
ret();
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
package mindustry.ui.dialogs;
|
package mindustry.ui.dialogs;
|
||||||
|
|
||||||
import arc.*;
|
import arc.*;
|
||||||
import arc.Net.*;
|
|
||||||
import arc.graphics.*;
|
import arc.graphics.*;
|
||||||
import arc.input.*;
|
import arc.input.*;
|
||||||
import arc.math.*;
|
import arc.math.*;
|
||||||
@@ -533,38 +532,27 @@ public class JoinDialog extends BaseDialog{
|
|||||||
Log.info("Fetching community servers at @", url);
|
Log.info("Fetching community servers at @", url);
|
||||||
|
|
||||||
//get servers
|
//get servers
|
||||||
Core.net.httpGet(url, result -> {
|
Http.get(url)
|
||||||
try{
|
.error(t -> Log.err("Failed to fetch community servers", t))
|
||||||
if(result.getStatus() != HttpStatus.OK){
|
.submit(result -> {
|
||||||
Log.warn("Failed to fetch community servers: @", result.getStatus());
|
Jval val = Jval.read(result.getResultAsString());
|
||||||
return;
|
Seq<ServerGroup> servers = new Seq<>();
|
||||||
|
val.asArray().each(child -> {
|
||||||
|
String name = child.getString("name", "");
|
||||||
|
String[] addresses;
|
||||||
|
if(child.has("addresses") || (child.has("address") && child.get("address").isArray())){
|
||||||
|
addresses = (child.has("addresses") ? child.get("addresses") : child.get("address")).asArray().map(Jval::asString).toArray(String.class);
|
||||||
|
}else{
|
||||||
|
addresses = new String[]{child.getString("address", "<invalid>")};
|
||||||
}
|
}
|
||||||
|
servers.add(new ServerGroup(name, addresses));
|
||||||
Jval val = Jval.read(result.getResultAsString());
|
});
|
||||||
Core.app.post(() -> {
|
//modify default servers on main thread
|
||||||
try{
|
Core.app.post(() -> {
|
||||||
defaultServers.clear();
|
defaultServers.addAll(servers);
|
||||||
val.asArray().each(child -> {
|
Log.info("Fetched @ community servers.", defaultServers.size);
|
||||||
String name = child.getString("name", "");
|
});
|
||||||
String[] addresses;
|
});
|
||||||
if(child.has("addresses") || (child.has("address") && child.get("address").isArray())){
|
|
||||||
addresses = (child.has("addresses") ? child.get("addresses") : child.get("address")).asArray().map(Jval::asString).toArray(String.class);
|
|
||||||
}else{
|
|
||||||
addresses = new String[]{child.getString("address", "<invalid>")};
|
|
||||||
}
|
|
||||||
defaultServers.add(new ServerGroup(name, addresses));
|
|
||||||
});
|
|
||||||
Log.info("Fetched @ community servers.", defaultServers.size);
|
|
||||||
}catch(Throwable e){
|
|
||||||
Log.err("Failed to parse community servers.");
|
|
||||||
Log.err(e);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}catch(Throwable e){
|
|
||||||
Log.err("Failed to fetch community servers.");
|
|
||||||
Log.err(e);
|
|
||||||
}
|
|
||||||
}, Log::err);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void saveServers(){
|
private void saveServers(){
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
package mindustry.ui.dialogs;
|
package mindustry.ui.dialogs;
|
||||||
|
|
||||||
import arc.*;
|
import arc.*;
|
||||||
import arc.Net.*;
|
import arc.util.Http.*;
|
||||||
import arc.files.*;
|
import arc.files.*;
|
||||||
import arc.func.*;
|
import arc.func.*;
|
||||||
import arc.graphics.*;
|
import arc.graphics.*;
|
||||||
@@ -104,6 +104,8 @@ public class ModsDialog extends BaseDialog{
|
|||||||
|
|
||||||
if(Strings.getCauses(error).contains(t -> t.getMessage() != null && (t.getMessage().contains("trust anchor") || t.getMessage().contains("SSL") || t.getMessage().contains("protocol")))){
|
if(Strings.getCauses(error).contains(t -> t.getMessage() != null && (t.getMessage().contains("trust anchor") || t.getMessage().contains("SSL") || t.getMessage().contains("protocol")))){
|
||||||
ui.showErrorMessage("@feature.unsupported");
|
ui.showErrorMessage("@feature.unsupported");
|
||||||
|
}else if(error instanceof HttpStatusException st){
|
||||||
|
ui.showErrorMessage(Core.bundle.format("connectfail", Strings.capitalize(st.status.toString().toLowerCase())));
|
||||||
}else{
|
}else{
|
||||||
ui.showException(error);
|
ui.showException(error);
|
||||||
}
|
}
|
||||||
@@ -111,33 +113,27 @@ public class ModsDialog extends BaseDialog{
|
|||||||
|
|
||||||
void getModList(Cons<Seq<ModListing>> listener){
|
void getModList(Cons<Seq<ModListing>> listener){
|
||||||
if(modList == null){
|
if(modList == null){
|
||||||
Core.net.httpGet("https://raw.githubusercontent.com/Anuken/MindustryMods/master/mods.json", response -> {
|
Http.get("https://raw.githubusercontent.com/Anuken/MindustryMods/master/mods.json", response -> {
|
||||||
String strResult = response.getResultAsString();
|
String strResult = response.getResultAsString();
|
||||||
var status = response.getStatus();
|
|
||||||
|
|
||||||
Core.app.post(() -> {
|
Core.app.post(() -> {
|
||||||
if(status != HttpStatus.OK){
|
try{
|
||||||
ui.showErrorMessage(Core.bundle.format("connectfail", status));
|
modList = JsonIO.json.fromJson(Seq.class, ModListing.class, strResult);
|
||||||
}else{
|
|
||||||
try{
|
|
||||||
modList = JsonIO.json.fromJson(Seq.class, ModListing.class, strResult);
|
|
||||||
|
|
||||||
var d = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'");
|
var d = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'");
|
||||||
Func<String, Date> parser = text -> {
|
Func<String, Date> parser = text -> {
|
||||||
try{
|
try{
|
||||||
return d.parse(text);
|
return d.parse(text);
|
||||||
}catch(Exception e){
|
}catch(Exception e){
|
||||||
return new Date();
|
return new Date();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
modList.sortComparing(m -> parser.get(m.lastUpdated)).reverse();
|
|
||||||
listener.get(modList);
|
|
||||||
}catch(Exception e){
|
|
||||||
e.printStackTrace();
|
|
||||||
ui.showException(e);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
modList.sortComparing(m -> parser.get(m.lastUpdated)).reverse();
|
||||||
|
listener.get(modList);
|
||||||
|
}catch(Exception e){
|
||||||
|
e.printStackTrace();
|
||||||
|
ui.showException(e);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}, error -> Core.app.post(() -> modError(error)));
|
}, error -> Core.app.post(() -> modError(error)));
|
||||||
@@ -424,20 +420,18 @@ public class ModsDialog extends BaseDialog{
|
|||||||
//textures are only requested when the rendering happens; this assists with culling
|
//textures are only requested when the rendering happens; this assists with culling
|
||||||
if(!textureCache.containsKey(repo)){
|
if(!textureCache.containsKey(repo)){
|
||||||
textureCache.put(repo, last = Core.atlas.find("nomap"));
|
textureCache.put(repo, last = Core.atlas.find("nomap"));
|
||||||
Core.net.httpGet("https://raw.githubusercontent.com/Anuken/MindustryMods/master/icons/" + repo.replace("/", "_"), res -> {
|
Http.get("https://raw.githubusercontent.com/Anuken/MindustryMods/master/icons/" + repo.replace("/", "_"), res -> {
|
||||||
if(res.getStatus() == HttpStatus.OK){
|
Pixmap pix = new Pixmap(res.getResult());
|
||||||
Pixmap pix = new Pixmap(res.getResult());
|
Core.app.post(() -> {
|
||||||
Core.app.post(() -> {
|
try{
|
||||||
try{
|
var tex = new Texture(pix);
|
||||||
var tex = new Texture(pix);
|
tex.setFilter(TextureFilter.linear);
|
||||||
tex.setFilter(TextureFilter.linear);
|
textureCache.put(repo, new TextureRegion(tex));
|
||||||
textureCache.put(repo, new TextureRegion(tex));
|
pix.dispose();
|
||||||
pix.dispose();
|
}catch(Exception e){
|
||||||
}catch(Exception e){
|
Log.err(e);
|
||||||
Log.err(e);
|
}
|
||||||
}
|
});
|
||||||
});
|
|
||||||
}
|
|
||||||
}, err -> {});
|
}, err -> {});
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -522,19 +516,17 @@ public class ModsDialog extends BaseDialog{
|
|||||||
githubImportJavaMod(repo);
|
githubImportJavaMod(repo);
|
||||||
}else{
|
}else{
|
||||||
ui.loadfrag.show();
|
ui.loadfrag.show();
|
||||||
Core.net.httpGet(ghApi + "/repos/" + repo, res -> {
|
Http.get(ghApi + "/repos/" + repo, res -> {
|
||||||
if(checkError(res)){
|
var json = Jval.read(res.getResultAsString());
|
||||||
var json = Jval.read(res.getResultAsString());
|
String mainBranch = json.getString("default_branch");
|
||||||
String mainBranch = json.getString("default_branch");
|
String language = json.getString("language", "<none>");
|
||||||
String language = json.getString("language", "<none>");
|
|
||||||
|
|
||||||
//this is a crude heuristic for class mods; only required for direct github import
|
//this is a crude heuristic for class mods; only required for direct github import
|
||||||
//TODO make a more reliable way to distinguish java mod repos
|
//TODO make a more reliable way to distinguish java mod repos
|
||||||
if(language.equals("Java") || language.equals("Kotlin")){
|
if(language.equals("Java") || language.equals("Kotlin")){
|
||||||
githubImportJavaMod(repo);
|
githubImportJavaMod(repo);
|
||||||
}else{
|
}else{
|
||||||
githubImportBranch(mainBranch, repo, this::showStatus);
|
githubImportBranch(mainBranch, repo);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}, this::importFail);
|
}, this::importFail);
|
||||||
}
|
}
|
||||||
@@ -542,62 +534,33 @@ public class ModsDialog extends BaseDialog{
|
|||||||
|
|
||||||
private void githubImportJavaMod(String repo){
|
private void githubImportJavaMod(String repo){
|
||||||
//grab latest release
|
//grab latest release
|
||||||
Core.net.httpGet(ghApi + "/repos/" + repo + "/releases/latest", res -> {
|
Http.get(ghApi + "/repos/" + repo + "/releases/latest", res -> {
|
||||||
if(checkError(res)){
|
var json = Jval.read(res.getResultAsString());
|
||||||
var json = Jval.read(res.getResultAsString());
|
var assets = json.get("assets").asArray();
|
||||||
var assets = json.get("assets").asArray();
|
|
||||||
|
|
||||||
//prioritize dexed jar, as that's what Sonnicon's mod template outputs
|
//prioritize dexed jar, as that's what Sonnicon's mod template outputs
|
||||||
var dexedAsset = assets.find(j -> j.getString("name").startsWith("dexed") && j.getString("name").endsWith(".jar"));
|
var dexedAsset = assets.find(j -> j.getString("name").startsWith("dexed") && j.getString("name").endsWith(".jar"));
|
||||||
var asset = dexedAsset == null ? assets.find(j -> j.getString("name").endsWith(".jar")) : dexedAsset;
|
var asset = dexedAsset == null ? assets.find(j -> j.getString("name").endsWith(".jar")) : dexedAsset;
|
||||||
|
|
||||||
if(asset != null){
|
if(asset != null){
|
||||||
//grab actual file
|
//grab actual file
|
||||||
var url = asset.getString("browser_download_url");
|
var url = asset.getString("browser_download_url");
|
||||||
Core.net.httpGet(url, result -> {
|
|
||||||
if(checkError(result)){
|
Http.get(url, result -> handleMod(repo, result), this::importFail);
|
||||||
handleMod(repo, result);
|
}else{
|
||||||
}
|
throw new ArcRuntimeException("No JAR file found in releases. Make sure you have a valid jar file in the mod's latest Github Release.");
|
||||||
}, this::importFail);
|
|
||||||
}else{
|
|
||||||
throw new ArcRuntimeException("No JAR file found in releases. Make sure you have a valid jar file in the mod's latest Github Release.");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}, this::importFail);
|
}, this::importFail);
|
||||||
}
|
}
|
||||||
|
|
||||||
private boolean checkError(HttpResponse res){
|
private void githubImportBranch(String branch, String repo){
|
||||||
if(res.getStatus() == HttpStatus.OK){
|
Http.get(ghApi + "/repos/" + repo + "/zipball/" + branch, loc -> {
|
||||||
return true;
|
if(loc.getHeader("Location") != null){
|
||||||
}else{
|
Http.get(loc.getHeader("Location"), result -> {
|
||||||
showStatus(res.getStatus());
|
handleMod(repo, result);
|
||||||
return false;
|
}, this::importFail);
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private void showStatus(HttpStatus status){
|
|
||||||
Core.app.post(() -> {
|
|
||||||
ui.showErrorMessage(Core.bundle.format("connectfail", Strings.capitalize(status.toString().toLowerCase())));
|
|
||||||
ui.loadfrag.hide();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
private void githubImportBranch(String branch, String repo, Cons<HttpStatus> err){
|
|
||||||
Core.net.httpGet(ghApi + "/repos/" + repo + "/zipball/" + branch, loc -> {
|
|
||||||
if(loc.getStatus() == HttpStatus.OK){
|
|
||||||
if(loc.getHeader("Location") != null){
|
|
||||||
Core.net.httpGet(loc.getHeader("Location"), result -> {
|
|
||||||
if(result.getStatus() != HttpStatus.OK){
|
|
||||||
err.get(result.getStatus());
|
|
||||||
}else{
|
|
||||||
handleMod(repo, result);
|
|
||||||
}
|
|
||||||
}, this::importFail);
|
|
||||||
}else{
|
|
||||||
handleMod(repo, loc);
|
|
||||||
}
|
|
||||||
}else{
|
}else{
|
||||||
err.get(loc.getStatus());
|
handleMod(repo, loc);
|
||||||
}
|
}
|
||||||
}, this::importFail);
|
}, this::importFail);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,4 +10,4 @@ kapt.include.compile.classpath=false
|
|||||||
kotlin.stdlib.default.dependency=false
|
kotlin.stdlib.default.dependency=false
|
||||||
#needed for android compilation
|
#needed for android compilation
|
||||||
android.useAndroidX=true
|
android.useAndroidX=true
|
||||||
archash=33c4976f8084fbb6fc26cfdcca2dda3442711d17
|
archash=3db4ede06f14022cb9e709218271e8e3df33a587
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
import arc.*;
|
import arc.util.*;
|
||||||
import arc.Net.*;
|
|
||||||
import arc.util.io.*;
|
import arc.util.io.*;
|
||||||
import mindustry.*;
|
import mindustry.*;
|
||||||
import org.junit.jupiter.api.*;
|
import org.junit.jupiter.api.*;
|
||||||
@@ -14,13 +13,13 @@ public class GenericModTest{
|
|||||||
static void grabMod(String url){
|
static void grabMod(String url){
|
||||||
//clear older mods
|
//clear older mods
|
||||||
ApplicationTests.testDataFolder.deleteDirectory();
|
ApplicationTests.testDataFolder.deleteDirectory();
|
||||||
new Net().http(new HttpRequest().block(true).url(url).method(HttpMethod.GET), httpResponse -> {
|
Http.get(url).error(Assertions::fail).block(httpResponse -> {
|
||||||
try{
|
try{
|
||||||
ApplicationTests.testDataFolder.child("mods").child("test_mod." + (url.endsWith("jar") ? "jar" : "zip")).writeBytes(Streams.copyBytes(httpResponse.getResultAsStream()));
|
ApplicationTests.testDataFolder.child("mods").child("test_mod." + (url.endsWith("jar") ? "jar" : "zip")).writeBytes(Streams.copyBytes(httpResponse.getResultAsStream()));
|
||||||
}catch(IOException e){
|
}catch(IOException e){
|
||||||
Assertions.fail(e);
|
Assertions.fail(e);
|
||||||
}
|
}
|
||||||
}, Assertions::fail);
|
});
|
||||||
|
|
||||||
ApplicationTests.launchApplication(false);
|
ApplicationTests.launchApplication(false);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,13 +1,9 @@
|
|||||||
package mindustry.tools;
|
package mindustry.tools;
|
||||||
|
|
||||||
import arc.*;
|
|
||||||
import arc.Net.*;
|
|
||||||
import arc.files.*;
|
import arc.files.*;
|
||||||
import arc.util.*;
|
import arc.util.*;
|
||||||
import arc.util.io.*;
|
import arc.util.io.*;
|
||||||
|
|
||||||
import java.io.*;
|
|
||||||
|
|
||||||
/* icon font pipeline:
|
/* icon font pipeline:
|
||||||
1. take set of pre-defined icons and SVGs
|
1. take set of pre-defined icons and SVGs
|
||||||
2. use Fontello API to get a font with these
|
2. use Fontello API to get a font with these
|
||||||
@@ -18,7 +14,6 @@ public class FontGenerator{
|
|||||||
|
|
||||||
//E000 to F8FF
|
//E000 to F8FF
|
||||||
public static void main(String[] args){
|
public static void main(String[] args){
|
||||||
Net net = Core.net = new Net();
|
|
||||||
Fi folder = Fi.get("core/assets-raw/fontgen/out/");
|
Fi folder = Fi.get("core/assets-raw/fontgen/out/");
|
||||||
folder.mkdirs();
|
folder.mkdirs();
|
||||||
|
|
||||||
@@ -29,13 +24,10 @@ public class FontGenerator{
|
|||||||
Log.info("Zip...");
|
Log.info("Zip...");
|
||||||
|
|
||||||
String session = folder.child("session").readString();
|
String session = folder.child("session").readString();
|
||||||
net.http(new HttpRequest().method(HttpMethod.GET).url("https://fontello.com/" + session + "/get").block(true), result -> {
|
|
||||||
try{
|
Http.get("https://fontello.com/" + session + "/get").block(result -> {
|
||||||
Streams.copy(result.getResultAsStream(), folder.child("font.zip").write());
|
Streams.copy(result.getResultAsStream(), folder.child("font.zip").write());
|
||||||
}catch(IOException e){
|
});
|
||||||
throw new RuntimeException(e);
|
|
||||||
}
|
|
||||||
}, Log::err);
|
|
||||||
|
|
||||||
Log.info("Icon font...");
|
Log.info("Icon font...");
|
||||||
|
|
||||||
@@ -49,9 +41,9 @@ public class FontGenerator{
|
|||||||
//TODO this is broken
|
//TODO this is broken
|
||||||
|
|
||||||
Log.info(OS.exec("fontforge", "-script",
|
Log.info(OS.exec("fontforge", "-script",
|
||||||
Fi.get("core/assets-raw/fontgen/merge.pe").absolutePath(),
|
Fi.get("core/assets-raw/fontgen/merge.pe").absolutePath(),
|
||||||
Fi.get("core/assets/fonts/font.woff").absolutePath(),
|
Fi.get("core/assets/fonts/font.woff").absolutePath(),
|
||||||
Fi.get("core/assets-raw/fontgen/out/font.woff").absolutePath())
|
Fi.get("core/assets-raw/fontgen/out/font.woff").absolutePath())
|
||||||
);
|
);
|
||||||
|
|
||||||
Log.info("Done.");
|
Log.info("Done.");
|
||||||
|
|||||||
Reference in New Issue
Block a user