Skip to content

Releases: Sp0k/GSLib

v1.2-beta

29 Jul 17:55

Choose a tag to compare

V1.2-Beta

V1.2-beta only brings a few refactoring. The update just added Javadoc comments
for the methods and classes.

Screenshot_gslib_v1 2_1

Screenshot_gslib_v1 2_2

V1.1-beta

26 Jul 20:58

Choose a tag to compare

V1.1-beta brings new copy methods for directory and file managers.

To copy a file, you can use the copyFile() method. This method takes in a
String src and a String dest to know what file to copy where.

import GSLib.Utilities.FileManager;

public class Example {
  void main() {
    String src = "path/to/original/file";
    String dest = "path/to/copy/destination";
    FileManager.copyFile(src, dest);
  }
}

To copy a directory, you can use the copyDirectory() method. This method takes in a
String src and a String dest to know what file to copy where.

import GSLib.Utilities.DirectoryManager;

public class Example {
  void main() {
    String src = "path/to/original/file";
    String dest = "path/to/copy/destination";
    DirectoryManager.copyDirectory(src, dest);
  }
}

V1.0-beta

26 Jul 04:45

Choose a tag to compare

This release only contains the utilities package. I released it after finishing the first version of the package, which only includes the File Manager and Directory Manager.

More info on how to use the package can be found here