Skip to content

Commit 7658e02

Browse files
committed
Fixed Logger substring
1 parent cd8881a commit 7658e02

File tree

13 files changed

+11
-6
lines changed

13 files changed

+11
-6
lines changed

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.i-comit</groupId>
5-
<version>1.4.3</version>
5+
<version>1.4.4</version>
66
<packaging>jar</packaging>
77
<properties>
88
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

src/main/java/com/i_comit/windows/GUI.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ public void run() {
243243

244244
public static void logger_T(File outputFile) throws InterruptedException {
245245
Thread.sleep(150);
246-
Main.jTextArea1.append(outputFile.getPath().substring(11, outputFile.getPath().toString().length()) + "\n");
246+
Main.jTextArea1.append(outputFile.getAbsolutePath().substring(12, outputFile.getPath().toString().length()) + "\n");
247247
// for(int i =0; i<5;i++){
248248
//
249249
// }

src/main/java/com/i_comit/windows/Main.java

+1-3
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,8 @@ public Main() {
2424
initComponents();
2525
Path currentRelativePath = Paths.get("");
2626
String s = currentRelativePath.toAbsolutePath().toString();
27-
// Statics.root = s.substring(0, 3);
27+
Statics.root = s.substring(0, 3);
2828
GUI.getGB();
29-
// KeyListener_C keyListener = new KeyListener_C();
30-
// jPasswordField1.addKeyListener(keyListener);
3129

3230
jLabel3.setText(root.substring(0, 2) + " | " + GB);
3331
System.out.println("Your available Memory Heap is " + Heap.humanReadableByteCountBin(Heap.heapSize));

src/main/java/com/i_comit/windows/Statics.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*/
1515
public class Statics {
1616

17-
public static String root = "E:\\";
17+
public static String root = "";
1818
public static String folderName = "i-ncript";
1919
public static String rootFolder = root + folderName;
2020
public static String keyName = "\\i-ncript.key";
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

target/maven-archiver/pom.properties

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#Generated by Maven
2+
#Fri Oct 21 22:07:30 PDT 2022
3+
groupId=com.i-comit
4+
artifactId=i-ncript
5+
version=1.4.4

target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ com\i_comit\linux\Main$2.class
33
com\i_comit\linux\Main.class
44
com\i_comit\windows\Main$5.class
55
com\i_comit\windows\Main.class
6+
com\i_comit\windows\Main$9.class
67
com\i_comit\windows\AES.class
78
com\i_comit\linux\progressBar_T.class
89
com\i_comit\linux\FileHider_T.class
@@ -17,6 +18,7 @@ com\i_comit\linux\AES$CryptoException.class
1718
com\i_comit\linux\Login.class
1819
com\i_comit\windows\Main$1.class
1920
com\i_comit\windows\labelCutter_T.class
21+
com\i_comit\windows\Main$8.class
2022
com\i_comit\linux\GUI.class
2123
com\i_comit\linux\labelCutter_T.class
2224
com\i_comit\linux\Main$6.class

target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst

Whitespace-only changes.

0 commit comments

Comments
 (0)