-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
11 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
eclipse.preferences.version=1 | ||
encoding/<project>=UTF-8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* @file About.java | ||
* | ||
*/ | ||
/* Copyright (C) 2022 by Arjan van Vught mailto:[email protected] | ||
/* Copyright (C) 2022-2024 by Arjan van Vught mailto:[email protected] | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
|
@@ -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); | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* @file TFTPClient.java | ||
* | ||
*/ | ||
/* Copyright (C) 2022-2023 by Arjan van Vught mailto:[email protected] | ||
/* Copyright (C) 2022-2024 by Arjan van Vught mailto:[email protected] | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
|
@@ -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; | ||
} | ||
|