Skip to content

Commit 78f132c

Browse files
committed
making some administrivia changes to support github workflows, getting ready for release
1 parent da4df64 commit 78f132c

File tree

4 files changed

+24
-10
lines changed

4 files changed

+24
-10
lines changed

.editorconfig

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
root = true
2+
3+
[*]
4+
end_of_line = lf
5+
insert_final_newline = true
6+
indent_style = tab
7+
trim_trailing_whitespace = true
8+
charset = utf-8
9+
indent_size = 4
10+
11+
[*.{build,build.in,yml,yaml,xml,xml.in}]
12+
indent_style = space
13+
indent_size = 2

data/com.k0vcz.artemis.desktop.in

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
[Desktop Entry]
2-
Name=artemis
3-
Exec=artemis
4-
Icon=com.k0vcz.artemis
5-
Terminal=false
62
Type=Application
7-
Categories=Utility;
8-
Keywords=GTK;
3+
Name=Artemis
4+
Exec=com.k0vcz.Artemis
5+
Icon=com.k0vcz.Artemis
6+
Comment=A Parks on the Air Spotting Tool
7+
Terminal=false
8+
Categories=GNOME;GTK;Utility;
9+
Keywords=hamradio;amateurradio;ham;radio;pota;
910
StartupNotify=true
1011
DBusActivatable=true
11-
X-GNOME-UsesNotifications=true
12+
X-GNOME-UsesNotifications=true
13+
X-GNOME-Gettext-Domain=com.k0vcz.Artemis

data/com.k0vcz.artemis.service.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[D-BUS Service]
22
Name=com.k0vcz.artemis
3-
Exec=@bindir@/artemis-vala --gapplication-service
3+
Exec=@bindir@/com.k0vcz.artemis --gapplication-service

src/map_window.vala

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,7 @@ public class BoundingBox : Object {
123123
return lon;
124124
}
125125

126-
private static double lon_distance (double a, double b)
127-
{
126+
private static double lon_distance (double a, double b) {
128127
double d = Math.fabs (a - b);
129128
return d > 180.0 ? 360.0 - d : d;
130129
}

0 commit comments

Comments
 (0)