Skip to content

Commit

Permalink
issues #27
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Chapchuk committed Jan 3, 2021
1 parent 109eded commit a2c75da
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group 'org.bigtows'
version '2.0.2.1'
version '2.0.2.2'

sourceCompatibility = 11

Expand Down Expand Up @@ -41,9 +41,9 @@ jar {

patchPluginXml {
changeNotes """
<h1>Release: 2.0.2.1</h1><br>
<h1>Release: 2.0.2.2</h1><br>
<ul>
<li>Edit description</li>
<li>Fix bug from report <a href="https://github.com/BigTows/PinNote/issues/27">#27 By yanchick</a></li>
</ul>
"""
//https://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html?search=build
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/bigtows/window/SettingsWindow.java
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ private List<NotebookSource> buildSources() {
final var urlEvernoteOAuth = pinNoteSettings.getStorage().getEvernote().getOAuth().getUrl() + "?port=" + httpServer.getPort();
try {
Desktop.getDesktop().browse(new URI(urlEvernoteOAuth));
} catch (IOException | URISyntaxException e) {
} catch (Exception e) {
JOptionPane.showInputDialog(null,
"<html>Follow this link manually: <a href='" + urlEvernoteOAuth + "'>Link</a>",
"Can't open link in your browser!",
Expand Down

0 comments on commit a2c75da

Please sign in to comment.