Skip to content

Commit

Permalink
Enhance JKSView with UI improvements and functionality updates
Browse files Browse the repository at this point in the history
Added a final `DefaultListModel` for certificate alias management and `Map` for X509 certificates. Modified UI elements for improved user interaction, including updated panel borders and more efficient toolbar layout. Introduced a file chooser dialog for importing certificates, along with robust logging for tracking selected file details.
  • Loading branch information
cortiz committed Sep 6, 2024
1 parent 022c18e commit 73dba7c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
18 changes: 13 additions & 5 deletions .idea/workspace.xml

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

1 change: 1 addition & 0 deletions src/main/java/com/jmpeax/ssltoolbox/jks/JKSView.java
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,7 @@ private JPanel buildToolBar() {
if (file != null) {
var str = Messages.showInputDialog("Enter Alias for " + file.getName(), "Alias for Imported Certificate", null);
LoggerFactory.getLogger(JKSView.class).info("Selected file: alias {} {}", str, file.getPath());
this.listModel.addElement(str);
}
});
gbc.gridx = 0;
Expand Down

0 comments on commit 73dba7c

Please sign in to comment.