Skip to content

Commit 55a849c

Browse files
committed
Consistency on App Naming
1 parent dacecd5 commit 55a849c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

data/com.github.philip-scott.notes-up.desktop

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[Desktop Entry]
2-
Name=Notes
2+
Name=Notes-Up
33
Comment=Your markdown notebook
44
Exec=/usr/bin/notes-up
55
Icon=com.github.philip-scott.notes-up

src/Application.vala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ namespace ENotes {
5959
}
6060

6161
public class ENotes.Application : Gtk.Application {
62-
public const string PROGRAM_NAME = N_("Notes-up");
62+
public const string PROGRAM_NAME = N_("Notes-Up");
6363
public const string COMMENT = N_("Your Markdown Notebook.");
6464
public const string ABOUT_STOCK = N_("About Notes");
6565

src/Widgets/Headerbar.vala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,9 +148,9 @@ public class ENotes.Headerbar : Gtk.HeaderBar {
148148

149149
public new void set_title (string? title) {
150150
if (title != null) {
151-
this.title = title + " - Notes-up";
151+
this.title = title + " - Notes-Up";
152152
} else {
153-
this.title = "Notes-up";
153+
this.title = "Notes-Up";
154154
}
155155
}
156156

0 commit comments

Comments
 (0)