Skip to content

Commit

Permalink
V4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vanvught committed Sep 23, 2024
1 parent fcb205b commit fd7b149
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
2 changes: 2 additions & 0 deletions FirmwareUpdateUI/.settings/org.eclipse.core.resources.prefs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
eclipse.preferences.version=1
encoding/<project>=UTF-8
4 changes: 2 additions & 2 deletions FirmwareUpdateUI/build.num
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#Build Number for ANT. Do not edit!
#Mon Jul 31 15:46:39 CEST 2023
build.number=4
#Mon Sep 23 22:25:44 CEST 2024
build.number=5
4 changes: 2 additions & 2 deletions FirmwareUpdateUI/src/org/gd32/dmx/About.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @file About.java
*
*/
/* Copyright (C) 2022 by Arjan van Vught mailto:info@gd32-dmx.org
/* Copyright (C) 2022-2024 by Arjan van Vught mailto:info@gd32-dmx.org
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand Down Expand Up @@ -122,7 +122,7 @@ public void hyperlinkUpdate(HyperlinkEvent e) {
txtArjan = new JTextField();
txtArjan.setBorder(null);
txtArjan.setHorizontalAlignment(SwingConstants.CENTER);
txtArjan.setText("(C) 2022 Arjan van Vught");
txtArjan.setText("(C) 2022-2024 Arjan van Vught");
txtArjan.setEditable(false);
txtArjan.setColumns(10);

Expand Down
2 changes: 1 addition & 1 deletion FirmwareUpdateUI/src/org/gd32/dmx/NetworkInterfaces.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (C) 2019-2023 by Arjan van Vught mailto:info@orangepi-dmx.nl
/* Copyright (C) 2019-2024 by Arjan van Vught mailto:info@gd32-dmx.org
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand Down
5 changes: 4 additions & 1 deletion FirmwareUpdateUI/src/org/gd32/dmx/TFTPClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @file TFTPClient.java
*
*/
/* Copyright (C) 2022-2023 by Arjan van Vught mailto:info@gd32-dmx.org
/* Copyright (C) 2022-2024 by Arjan van Vught mailto:info@gd32-dmx.org
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand Down Expand Up @@ -192,6 +192,9 @@ public boolean accept(File f) {
if (f.getName().equals("gd32f4xx.bin")) {
return true;
}
if (f.getName().equals("gd32h7xx.bin")) {
return true;
}
if (f.getName().equals("gd32.bin")) {
return true;
}
Expand Down

0 comments on commit fd7b149

Please sign in to comment.