Skip to content

Commit fd7b149

Browse files
committed
V4.0
1 parent fcb205b commit fd7b149

File tree

5 files changed

+11
-6
lines changed

5 files changed

+11
-6
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
eclipse.preferences.version=1
2+
encoding/<project>=UTF-8

FirmwareUpdateUI/build.num

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#Build Number for ANT. Do not edit!
2-
#Mon Jul 31 15:46:39 CEST 2023
3-
build.number=4
2+
#Mon Sep 23 22:25:44 CEST 2024
3+
build.number=5

FirmwareUpdateUI/src/org/gd32/dmx/About.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* @file About.java
33
*
44
*/
5-
/* Copyright (C) 2022 by Arjan van Vught mailto:[email protected]
5+
/* Copyright (C) 2022-2024 by Arjan van Vught mailto:[email protected]
66
*
77
* Permission is hereby granted, free of charge, to any person obtaining a copy
88
* of this software and associated documentation files (the "Software"), to deal
@@ -122,7 +122,7 @@ public void hyperlinkUpdate(HyperlinkEvent e) {
122122
txtArjan = new JTextField();
123123
txtArjan.setBorder(null);
124124
txtArjan.setHorizontalAlignment(SwingConstants.CENTER);
125-
txtArjan.setText("(C) 2022 Arjan van Vught");
125+
txtArjan.setText("(C) 2022-2024 Arjan van Vught");
126126
txtArjan.setEditable(false);
127127
txtArjan.setColumns(10);
128128

FirmwareUpdateUI/src/org/gd32/dmx/NetworkInterfaces.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (C) 2019-2023 by Arjan van Vught mailto:info@orangepi-dmx.nl
1+
/* Copyright (C) 2019-2024 by Arjan van Vught mailto:info@gd32-dmx.org
22
*
33
* Permission is hereby granted, free of charge, to any person obtaining a copy
44
* of this software and associated documentation files (the "Software"), to deal

FirmwareUpdateUI/src/org/gd32/dmx/TFTPClient.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* @file TFTPClient.java
33
*
44
*/
5-
/* Copyright (C) 2022-2023 by Arjan van Vught mailto:[email protected]
5+
/* Copyright (C) 2022-2024 by Arjan van Vught mailto:[email protected]
66
*
77
* Permission is hereby granted, free of charge, to any person obtaining a copy
88
* of this software and associated documentation files (the "Software"), to deal
@@ -192,6 +192,9 @@ public boolean accept(File f) {
192192
if (f.getName().equals("gd32f4xx.bin")) {
193193
return true;
194194
}
195+
if (f.getName().equals("gd32h7xx.bin")) {
196+
return true;
197+
}
195198
if (f.getName().equals("gd32.bin")) {
196199
return true;
197200
}

0 commit comments

Comments
 (0)