Skip to content

Commit

Permalink
1.0.8 - Fixed unnecessary highlighting of brackets, as well as minor …
Browse files Browse the repository at this point in the history
…things.
  • Loading branch information
Lains committed Jun 5, 2017
1 parent be8bffd commit 89d66de
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# ![icon](data/icon.png) Notejot
###### Stupidly simple jotting pad.
## Stupidly simple jotting pad.

![Screenshot](data/shot.png)

Expand All @@ -20,6 +20,6 @@ Simply clone this repo, then:

```
$ meson build && cd build
$ ninja
$ mesonconf -Dprefix=/usr
$ sudo ninja install
```
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
com.github.lainsce.notejot (1.0.8) xenial; urgency=low

* Fixed the unnecessary higlighting of brackets.

-- Lains <[email protected]> Mon, 5 June 2017 02:25:00 -0300

com.github.lainsce.notejot (1.0.7) xenial; urgency=low

* Fixed a style bug in the GTK CSS.
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Name our project
project('com.github.lainsce.notejot', ['vala', 'c'],
version: '1.0.7'
version: '1.0.8'
)

# Import main lib files
Expand Down
Empty file added po/LINGUAS
Empty file.
2 changes: 1 addition & 1 deletion src/Application.vala
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ namespace Notejot {
app_years = "2017";
exec_name = "com.github.lainsce.notejot";
app_launcher = "com.github.lainsce.notejot";
build_version = "1.0.7";
build_version = "1.0.8";
app_icon = "com.github.lainsce.notejot";
main_url = "https://github.com/lainsce/notejot/";
bug_url = "https://github.com/lainsce/notejot/issues";
Expand Down
6 changes: 3 additions & 3 deletions src/Constants/Stylesheet.vala
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ namespace Notejot.Stylesheet {
@define-color textColorPrimary #656565;
.notejot-window {
background-color: #fff1b9;
background-color: #fff3ae;
}
.notejot-toolbar {
Expand All @@ -32,13 +32,13 @@ namespace Notejot.Stylesheet {
}
.notejot-note {
background-color: #fff1b9;
background-color: #fff3ae;
font-size: 11px;
}
.notejot-note:selected {
background-color: #93a1a1;
color: #fff1b9;
color: #fff3ae;
}
""";
}
1 change: 0 additions & 1 deletion src/MainWindow.vala
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ using Granite.Widgets;
namespace Notejot {
public class MainWindow : Gtk.Window {
private Gtk.ScrolledWindow scroll;
private AppSettings settings;

public Widgets.Toolbar toolbar;
public Widgets.SourceView view;
Expand Down
1 change: 1 addition & 0 deletions src/Widgets/SourceView.vala
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ namespace Notejot.Widgets {
this.top_margin = 12;
this.right_margin = 12;
this.expand = false;
this.set_highlight_matching_brackets (false);
}

public void on_text_modified () {
Expand Down

0 comments on commit 89d66de

Please sign in to comment.