Skip to content

Commit

Permalink
PULsE v1.98
Browse files Browse the repository at this point in the history
  • Loading branch information
kotik-coder committed Feb 13, 2023
1 parent 1eccdb2 commit 7b9b472
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
8 changes: 2 additions & 6 deletions src/main/java/pulse/ui/components/PulseMainMenu.java
Original file line number Diff line number Diff line change
Expand Up @@ -194,11 +194,9 @@ private void initComponents() {
serializeItem.addActionListener(e -> {
try {
Serializer.serialize();
} catch (IOException ex) {
Logger.getLogger(PulseMainMenu.class.getName()).log(Level.SEVERE, null, ex);
} catch (ClassNotFoundException ex) {
} catch (IOException | ClassNotFoundException ex) {
Logger.getLogger(PulseMainMenu.class.getName()).log(Level.SEVERE, null, ex);
}
}
});
var deserializeItem = new JMenuItem("Load Session...");

Expand All @@ -209,8 +207,6 @@ private void initComponents() {
Serializer.deserialize();
} catch (IOException ex) {
Logger.getLogger(PulseMainMenu.class.getName()).log(Level.SEVERE, null, ex);
} catch (ClassNotFoundException ex) {
Logger.getLogger(PulseMainMenu.class.getName()).log(Level.SEVERE, null, ex);
}

});
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/Version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.97c
1.98
2 changes: 1 addition & 1 deletion src/main/resources/messages.properties
Original file line number Diff line number Diff line change
Expand Up @@ -291,4 +291,4 @@ MixedScheme2.5=<html><b>Increased Accuracy Semi-implicit Scheme (NL)</b><ul styl
TextWrap.0=<html><body><p style='width: 300px;'>
TextWrap.1=</p></body></html>
TextWrap.2=<html><body><p style='width: 185px;'>
msg.running=An instance of PULsE appears to be running. Please switch back to the running version or delete the pulse.lock file found in the PULsE directory.
msg.running=An instance of PULsE appears to be running. Please switch back to the running version or delete the pulse.lock file in the user home directory.

0 comments on commit 7b9b472

Please sign in to comment.