mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-27 22:04:46 +00:00
set font creation and modification time to the modification time of the swf file
This commit is contained in:
@@ -29,6 +29,7 @@ package fontastic;
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
import org.doubletype.ossa.Engine;
|
||||
import org.doubletype.ossa.OutOfRangeException;
|
||||
@@ -201,6 +202,14 @@ public class Fontastic {
|
||||
m_engine.setCopyrightYear(copyrightYear);
|
||||
}
|
||||
|
||||
public void setCreationDate(Date date) {
|
||||
m_engine.setCreationDate(date);
|
||||
}
|
||||
|
||||
public void setModificationDate(Date date) {
|
||||
m_engine.setModificationDate(date);
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the version of the font (default is "0.1").
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user