[moserial] version bump, added copyright notices, added man page
- From: Michael J. Chudobiak <mjc src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [moserial] version bump, added copyright notices, added man page
- Date: Wed, 3 Feb 2010 19:03:14 +0000 (UTC)
commit 8d8fe4cf2acf4e77ff0cf4740b3a4445e176f107
Author: Michael J. Chudobiak <mjc avtechpulse com>
Date: Wed Feb 3 14:02:43 2010 -0500
version bump, added copyright notices, added man page
NEWS | 9 +++++++++
configure.ac | 2 +-
data/Makefile.am | 6 +++++-
src/AutoScroll.vala | 18 ++++++++++++++++++
src/DefaultPaths.vala | 18 ++++++++++++++++++
src/HexTextBuffer.vala | 18 ++++++++++++++++++
src/InputParser.vala | 18 ++++++++++++++++++
src/Main.vala | 18 ++++++++++++++++++
src/MainWindow.vala | 20 +++++++++++++++++++-
src/MoUtils.vala | 18 ++++++++++++++++++
src/Preferences.vala | 18 ++++++++++++++++++
src/PreferencesDialog.vala | 18 ++++++++++++++++++
src/Profile.vala | 18 ++++++++++++++++++
src/ReceiveChooserDialog.vala | 18 ++++++++++++++++++
src/ReceiveProgressDialog.vala | 18 ++++++++++++++++++
src/RecordDialog.vala | 18 ++++++++++++++++++
src/Rzwrapper.vala | 18 ++++++++++++++++++
src/SendChooserDialog.vala | 18 ++++++++++++++++++
src/SendProgressDialog.vala | 18 ++++++++++++++++++
src/SerialConnection.vala | 18 ++++++++++++++++++
src/SerialStreamRecorder.vala | 18 ++++++++++++++++++
src/Settings.vala | 18 ++++++++++++++++++
src/SettingsDialog.vala | 18 ++++++++++++++++++
src/Szwrapper.vala | 18 ++++++++++++++++++
src/XmodemFilenameDialog.vala | 18 ++++++++++++++++++
25 files changed, 412 insertions(+), 3 deletions(-)
---
diff --git a/NEWS b/NEWS
index 9a12bda..e7dee4f 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,12 @@
+Version 2.28.1
+--------------
+ * Added copyright notices
+ * Added a man page
+ * Updated translations:
+ - Czech (cs)
+ - German (de)
+ - Slovenian (sl)
+
Version 2.28.0
--------------
diff --git a/configure.ac b/configure.ac
index 88d3502..48adbde 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-AC_INIT(moserial, 2.28.0, http://bugzilla.gnome.org/enter_bug.cgi?product=moserial)
+AC_INIT(moserial, 2.28.1, http://bugzilla.gnome.org/enter_bug.cgi?product=moserial)
AC_CONFIG_SRCDIR([Makefile.am])
AC_CONFIG_HEADERS(config.h)
AM_INIT_AUTOMAKE([dist-bzip2])
diff --git a/data/Makefile.am b/data/Makefile.am
index 1c736f3..316e1ad 100644
--- a/data/Makefile.am
+++ b/data/Makefile.am
@@ -6,9 +6,13 @@ desktopdir = $(datadir)/applications
desktop_in_files=moserial.desktop.in
desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
+man_MANS = moserial.1
+
EXTRA_DIST = \
$(desktop_in_files) \
- $(desktop_DATA)
+ $(desktop_DATA) \
+ $(man_MANS)
+
DISTCLEANFILES = \
$(desktop_DATA)
diff --git a/src/AutoScroll.vala b/src/AutoScroll.vala
index 081d029..93c9b21 100644
--- a/src/AutoScroll.vala
+++ b/src/AutoScroll.vala
@@ -1,3 +1,21 @@
+/*
+ * Copyright (C) 2009-2010 Michael J. Chudobiak.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA.
+ */
+
using Gtk;
public class moserial.AutoScroll : GLib.Object
{
diff --git a/src/DefaultPaths.vala b/src/DefaultPaths.vala
index 2f3c9c0..81d604e 100644
--- a/src/DefaultPaths.vala
+++ b/src/DefaultPaths.vala
@@ -1,3 +1,21 @@
+/*
+ * Copyright (C) 2009-2010 Michael J. Chudobiak.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA.
+ */
+
using GLib;
public class DefaultPaths : GLib.Object
{
diff --git a/src/HexTextBuffer.vala b/src/HexTextBuffer.vala
index 5a9f798..a082d86 100644
--- a/src/HexTextBuffer.vala
+++ b/src/HexTextBuffer.vala
@@ -1,3 +1,21 @@
+/*
+ * Copyright (C) 2009-2010 Michael J. Chudobiak.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA.
+ */
+
using Gtk;
using GLib;
diff --git a/src/InputParser.vala b/src/InputParser.vala
index ffac1fc..295e72c 100644
--- a/src/InputParser.vala
+++ b/src/InputParser.vala
@@ -1,3 +1,21 @@
+/*
+ * Copyright (C) 2009-2010 Michael J. Chudobiak.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA.
+ */
+
errordomain HexParseError {
INVALID_INPUT;
}
diff --git a/src/Main.vala b/src/Main.vala
index 93e2f74..04a5b13 100644
--- a/src/Main.vala
+++ b/src/Main.vala
@@ -1,3 +1,21 @@
+/*
+ * Copyright (C) 2009-2010 Michael J. Chudobiak.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA.
+ */
+
using Gtk;
class moserial.Main : GLib.Object
diff --git a/src/MainWindow.vala b/src/MainWindow.vala
index 85ed7bb..a701682 100644
--- a/src/MainWindow.vala
+++ b/src/MainWindow.vala
@@ -1,3 +1,21 @@
+/*
+ * Copyright (C) 2009-2010 Michael J. Chudobiak.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA.
+ */
+
using Gtk;
using Gdk;
@@ -716,7 +734,7 @@ public class moserial.MainWindow : Gtk.Window //Have to extend Gtk.Winow to get
AboutDialog.set_url_hook (url_hook);
show_about_dialog (gtkWindow,
"version", Config.VERSION,
- "copyright", "Copyright © 2009\nMichael J. Chudobiak\n<mjc svn gnome org>",
+ "copyright", "Copyright © 2009-2010\nMichael J. Chudobiak\n<mjc svn gnome org>",
"comments", _("A serial terminal for the GNOME desktop, optimized for logging and file capture."),
"authors", authors,
"translator-credits", translators,
diff --git a/src/MoUtils.vala b/src/MoUtils.vala
index 4b73b38..0a8ac0c 100644
--- a/src/MoUtils.vala
+++ b/src/MoUtils.vala
@@ -1,3 +1,21 @@
+/*
+ * Copyright (C) 2009-2010 Michael J. Chudobiak.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA.
+ */
+
using GLib;
public class MoUtils : GLib.Object
{
diff --git a/src/Preferences.vala b/src/Preferences.vala
index 5440783..262fd59 100644
--- a/src/Preferences.vala
+++ b/src/Preferences.vala
@@ -1,3 +1,21 @@
+/*
+ * Copyright (C) 2009-2010 Michael J. Chudobiak.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA.
+ */
+
using GLib;
public class Preferences : GLib.Object
{
diff --git a/src/PreferencesDialog.vala b/src/PreferencesDialog.vala
index 886ecca..54a9f28 100644
--- a/src/PreferencesDialog.vala
+++ b/src/PreferencesDialog.vala
@@ -1,3 +1,21 @@
+/*
+ * Copyright (C) 2009-2010 Michael J. Chudobiak.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA.
+ */
+
using Gtk;
public class moserial.PreferencesDialog : GLib.Object
{
diff --git a/src/Profile.vala b/src/Profile.vala
index f7dd2fb..f05b9e2 100644
--- a/src/Profile.vala
+++ b/src/Profile.vala
@@ -1,3 +1,21 @@
+/*
+ * Copyright (C) 2009-2010 Michael J. Chudobiak.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA.
+ */
+
using Gtk;
public class Profile : GLib.Object
diff --git a/src/ReceiveChooserDialog.vala b/src/ReceiveChooserDialog.vala
index 53f7cb4..6911035 100644
--- a/src/ReceiveChooserDialog.vala
+++ b/src/ReceiveChooserDialog.vala
@@ -1,3 +1,21 @@
+/*
+ * Copyright (C) 2009-2010 Michael J. Chudobiak.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA.
+ */
+
using Gtk;
public class moserial.ReceiveChooserDialog : GLib.Object
{
diff --git a/src/ReceiveProgressDialog.vala b/src/ReceiveProgressDialog.vala
index b16531c..8260c6e 100644
--- a/src/ReceiveProgressDialog.vala
+++ b/src/ReceiveProgressDialog.vala
@@ -1,3 +1,21 @@
+/*
+ * Copyright (C) 2009-2010 Michael J. Chudobiak.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA.
+ */
+
using Gtk;
public class moserial.ReceiveProgressDialog : GLib.Object
{
diff --git a/src/RecordDialog.vala b/src/RecordDialog.vala
index 2aefc0d..a19a5a3 100644
--- a/src/RecordDialog.vala
+++ b/src/RecordDialog.vala
@@ -1,3 +1,21 @@
+/*
+ * Copyright (C) 2009-2010 Michael J. Chudobiak.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA.
+ */
+
using Gtk;
public class moserial.RecordDialog : GLib.Object
{
diff --git a/src/Rzwrapper.vala b/src/Rzwrapper.vala
index 837c7bb..bca39eb 100644
--- a/src/Rzwrapper.vala
+++ b/src/Rzwrapper.vala
@@ -1,3 +1,21 @@
+/*
+ * Copyright (C) 2009-2010 Michael J. Chudobiak.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA.
+ */
+
//Class for communicating with the rz program
public class moserial.Rzwrapper: GLib.Object
{
diff --git a/src/SendChooserDialog.vala b/src/SendChooserDialog.vala
index 898c570..bde070d 100644
--- a/src/SendChooserDialog.vala
+++ b/src/SendChooserDialog.vala
@@ -1,3 +1,21 @@
+/*
+ * Copyright (C) 2009-2010 Michael J. Chudobiak.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA.
+ */
+
using Gtk;
public class moserial.SendChooserDialog : GLib.Object
{
diff --git a/src/SendProgressDialog.vala b/src/SendProgressDialog.vala
index fab875b..4b4c24c 100644
--- a/src/SendProgressDialog.vala
+++ b/src/SendProgressDialog.vala
@@ -1,3 +1,21 @@
+/*
+ * Copyright (C) 2009-2010 Michael J. Chudobiak.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA.
+ */
+
using Gtk;
public class moserial.SendProgressDialog : GLib.Object
{
diff --git a/src/SerialConnection.vala b/src/SerialConnection.vala
index 0980e00..6342902 100644
--- a/src/SerialConnection.vala
+++ b/src/SerialConnection.vala
@@ -1,3 +1,21 @@
+/*
+ * Copyright (C) 2009-2010 Michael J. Chudobiak.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA.
+ */
+
public class moserial.SerialConnection : GLib.Object
{
private bool connected;
diff --git a/src/SerialStreamRecorder.vala b/src/SerialStreamRecorder.vala
index 6efeb8b..c512b75 100644
--- a/src/SerialStreamRecorder.vala
+++ b/src/SerialStreamRecorder.vala
@@ -1,3 +1,21 @@
+/*
+ * Copyright (C) 2009-2010 Michael J. Chudobiak.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA.
+ */
+
using Gtk;
public class moserial.SerialStreamRecorder {
diff --git a/src/Settings.vala b/src/Settings.vala
index 2000526..9e7808c 100644
--- a/src/Settings.vala
+++ b/src/Settings.vala
@@ -1,3 +1,21 @@
+/*
+ * Copyright (C) 2009-2010 Michael J. Chudobiak.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA.
+ */
+
using GLib;
public class Settings : GLib.Object
diff --git a/src/SettingsDialog.vala b/src/SettingsDialog.vala
index aa52e3c..f380fa5 100644
--- a/src/SettingsDialog.vala
+++ b/src/SettingsDialog.vala
@@ -1,3 +1,21 @@
+/*
+ * Copyright (C) 2009-2010 Michael J. Chudobiak.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA.
+ */
+
using Gtk;
using GLib;
diff --git a/src/Szwrapper.vala b/src/Szwrapper.vala
index f0717d3..23f5bd9 100644
--- a/src/Szwrapper.vala
+++ b/src/Szwrapper.vala
@@ -1,3 +1,21 @@
+/*
+ * Copyright (C) 2009-2010 Michael J. Chudobiak.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA.
+ */
+
//Class for communicating with the sz program
public class moserial.Szwrapper: GLib.Object
{
diff --git a/src/XmodemFilenameDialog.vala b/src/XmodemFilenameDialog.vala
index 1c16005..3ec4b16 100644
--- a/src/XmodemFilenameDialog.vala
+++ b/src/XmodemFilenameDialog.vala
@@ -1,3 +1,21 @@
+/*
+ * Copyright (C) 2009-2010 Michael J. Chudobiak.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA.
+ */
+
using Gtk;
public class moserial.XmodemFilenameDialog : GLib.Object
{
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]