]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
added release directory
authorJohn Melton g0orx/n6lyt <john.d.melton@googlemail.com>
Wed, 6 Apr 2016 09:59:41 +0000 (09:59 +0000)
committerJohn Melton g0orx/n6lyt <john.d.melton@googlemail.com>
Wed, 6 Apr 2016 09:59:41 +0000 (09:59 +0000)
release/pihpsdr.tar [new file with mode: 0644]
release/pihpsdr/calculus [new file with mode: 0644]
release/pihpsdr/hpsdr.png [new file with mode: 0644]
release/pihpsdr/hpsdr_icon.png [new file with mode: 0644]
release/pihpsdr/libwdsp.so [new file with mode: 0755]
release/pihpsdr/pihpsdr [new file with mode: 0755]
release/pihpsdr/pihpsdr.desktop [new file with mode: 0755]
release/pihpsdr/splash.png [new file with mode: 0644]
release/pihpsdr/start_pihpsdr.sh [new file with mode: 0755]
toolbar.c

diff --git a/release/pihpsdr.tar b/release/pihpsdr.tar
new file mode 100644 (file)
index 0000000..22c46e8
Binary files /dev/null and b/release/pihpsdr.tar differ
diff --git a/release/pihpsdr/calculus b/release/pihpsdr/calculus
new file mode 100644 (file)
index 0000000..7b51e4f
Binary files /dev/null and b/release/pihpsdr/calculus differ
diff --git a/release/pihpsdr/hpsdr.png b/release/pihpsdr/hpsdr.png
new file mode 100644 (file)
index 0000000..ea96fd7
Binary files /dev/null and b/release/pihpsdr/hpsdr.png differ
diff --git a/release/pihpsdr/hpsdr_icon.png b/release/pihpsdr/hpsdr_icon.png
new file mode 100644 (file)
index 0000000..d23e122
Binary files /dev/null and b/release/pihpsdr/hpsdr_icon.png differ
diff --git a/release/pihpsdr/libwdsp.so b/release/pihpsdr/libwdsp.so
new file mode 100755 (executable)
index 0000000..e085ec5
Binary files /dev/null and b/release/pihpsdr/libwdsp.so differ
diff --git a/release/pihpsdr/pihpsdr b/release/pihpsdr/pihpsdr
new file mode 100755 (executable)
index 0000000..58d70fc
Binary files /dev/null and b/release/pihpsdr/pihpsdr differ
diff --git a/release/pihpsdr/pihpsdr.desktop b/release/pihpsdr/pihpsdr.desktop
new file mode 100755 (executable)
index 0000000..62f6418
--- /dev/null
@@ -0,0 +1,10 @@
+#!/usr/bin/env xdg-open
+
+[Desktop Entry]
+Version=1.0
+Type=Application
+Terminal=false
+Name[en_GB]=pihpsdr
+Exec=/home/pi/pihpsdr/start_pihpsdr.sh
+Name=pihpsdr
+Icon=/home/pi/pihpsdr/hpsdr_icon.png
diff --git a/release/pihpsdr/splash.png b/release/pihpsdr/splash.png
new file mode 100644 (file)
index 0000000..4b249eb
Binary files /dev/null and b/release/pihpsdr/splash.png differ
diff --git a/release/pihpsdr/start_pihpsdr.sh b/release/pihpsdr/start_pihpsdr.sh
new file mode 100755 (executable)
index 0000000..98af331
--- /dev/null
@@ -0,0 +1,2 @@
+cd ~/pihpsdr
+sudo ~/pihpsdr/pihpsdr
index 95688c3925cc9110e38bad52c206e49885537548..b3ca9a48260b870cd9cca1648e9bb309c66d2d06 100644 (file)
--- a/toolbar.c
+++ b/toolbar.c
@@ -1017,6 +1017,11 @@ GtkWidget *toolbar_init(int my_width, int my_height, GtkWidget* parent) {
     g_signal_connect(G_OBJECT(filter),"clicked",G_CALLBACK(filter_cb),NULL);
     gtk_grid_attach(GTK_GRID(toolbar),filter,8,0,4,1);
 
+    GtkWidget *audio=gtk_button_new_with_label("Audio");
+    //gtk_widget_override_font(audio, pango_font_description_from_string("Arial 16"));
+    g_signal_connect(G_OBJECT(audio),"clicked",G_CALLBACK(audio_cb),NULL);
+    gtk_grid_attach(GTK_GRID(toolbar),audio,12,0,4,1);
+
     GtkWidget *lock=gtk_button_new_with_label("Lock");
     //gtk_widget_override_font(lock, pango_font_description_from_string("Arial 16"));
     g_signal_connect(G_OBJECT(lock),"clicked",G_CALLBACK(lock_cb),NULL);