Skip to content

Commit

Permalink
1.1.0 - rendering bug fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
AIP21 committed Jun 16, 2022
1 parent ce38aef commit 4933c55
Show file tree
Hide file tree
Showing 15 changed files with 28 additions and 65 deletions.
39 changes: 16 additions & 23 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion config.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/// Player Tracker Decoder v1.0.3-FR - CONFIG \\\
/// Player Tracker Decoder v1.0.4-FR - CONFIG \\\
/// Delete this config file to reset values to their default settings \\\

theme: 0 // Change the UI theme (Light = 0, Dark = 1)
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
19 changes: 0 additions & 19 deletions out/artifacts/TrackerDecoderApp/config.txt

This file was deleted.

19 changes: 3 additions & 16 deletions out/production/TrackerDecoderApp/.idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions out/production/TrackerDecoderApp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ Now you are good to go, just run the .jar file and import your data using the bu
9. Option to show lines hidden by the threshold (To view nether travel or deaths).
11. Import a background image of the data's world so that you can see where players are.
12. **Extensive** configuration for almost everything
13. Ability to export a view of all the data in one image. (Still kinda buggy, gotta fix it)
14. And some other stuff I forgot to write here.
13. Ability to export a view of all the data in one image or take a screenshot of the current view.
15. And some other stuff I forgot to write here.

# Data Format
The log data is formatted in a specific way, and can only be read in that way (I might change that in the future). Here is an example line of data:
Expand Down Expand Up @@ -74,4 +74,4 @@ Here are some screenshots from the program, using made-up data and data from my
![image](https://user-images.githubusercontent.com/44927160/168450297-2415fe3d-f164-484f-827b-37ea82d28cd3.png)

**Exported image:**
![image](https://user-images.githubusercontent.com/44927160/168449213-2c6daaca-a47b-45af-bd96-4a779d8fa759.png)
![image](https://user-images.githubusercontent.com/44927160/171914953-4ca2684b-328a-4a4e-928e-016d6bf0b025.png)
2 changes: 1 addition & 1 deletion out/production/TrackerDecoderApp/config.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/// Player Tracker Decoder v1.0.3-FR - CONFIG \\\
/// Player Tracker Decoder v1.0.4-FR - CONFIG \\\
/// Delete this config file to reset values to their default settings \\\

theme: 0 // Change the UI theme (Light = 0, Dark = 1)
Expand Down
Binary file modified out/production/TrackerDecoderApp/src/Panel.class
Binary file not shown.
Binary file modified out/production/TrackerDecoderApp/src/PlayerTrackerDecoder.class
Binary file not shown.
Binary file modified out/production/TrackerDecoderApp/src/Settings.class
Binary file not shown.
2 changes: 2 additions & 0 deletions src/Panel.java
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,8 @@ public void run() {
public void paintComponent(Graphics g) {
last = System.nanoTime();

super.paintComponent(g);

if (!shouldDraw)
return;

Expand Down
4 changes: 2 additions & 2 deletions src/PlayerTrackerDecoder.java
Original file line number Diff line number Diff line change
Expand Up @@ -115,9 +115,9 @@ public class PlayerTrackerDecoder extends JFrame {
public ImageIcon darkThemeIcon;
//endregion

public static final String version = "1.0.4-FR";
public static boolean debugMode = false;
public static final String version = "1.1.0-FR";

public static boolean debugMode = false;
public PlayerTrackerDecoder(boolean debug) {
debugMode = debug;

Expand Down

0 comments on commit 4933c55

Please sign in to comment.