[moserial] Fixed GPLv3 license text, added Config.vapi to distro tar files
- From: Michael J. Chudobiak <mjc src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [moserial] Fixed GPLv3 license text, added Config.vapi to distro tar files
- Date: Thu, 4 Feb 2010 13:37:57 +0000 (UTC)
commit 4a8ef619d84e014f1ed05914720267b35bba6633
Author: Michael J. Chudobiak <mjc avtechpulse com>
Date: Thu Feb 4 08:31:39 2010 -0500
Fixed GPLv3 license text, added Config.vapi to distro tar files
Makefile.am | 1 +
NEWS | 5 +++++
src/AutoScroll.vala | 11 ++++++-----
src/DefaultPaths.vala | 11 ++++++-----
src/HexTextBuffer.vala | 11 ++++++-----
src/InputParser.vala | 11 ++++++-----
src/Main.vala | 11 ++++++-----
src/MainWindow.vala | 11 ++++++-----
src/MoUtils.vala | 11 ++++++-----
src/Preferences.vala | 11 ++++++-----
src/PreferencesDialog.vala | 11 ++++++-----
src/Profile.vala | 11 ++++++-----
src/ReceiveChooserDialog.vala | 11 ++++++-----
src/ReceiveProgressDialog.vala | 11 ++++++-----
src/RecordDialog.vala | 11 ++++++-----
src/Rzwrapper.vala | 11 ++++++-----
src/SendChooserDialog.vala | 11 ++++++-----
src/SendProgressDialog.vala | 11 ++++++-----
src/SerialConnection.vala | 11 ++++++-----
src/SerialStreamRecorder.vala | 11 ++++++-----
src/Settings.vala | 11 ++++++-----
src/SettingsDialog.vala | 11 ++++++-----
src/Szwrapper.vala | 11 ++++++-----
src/XmodemFilenameDialog.vala | 11 ++++++-----
24 files changed, 138 insertions(+), 110 deletions(-)
---
diff --git a/Makefile.am b/Makefile.am
index 1cb4102..9e2437f 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -66,6 +66,7 @@ EXTRA_DIST = \
intltool-update.in \
intltool-merge.in \
$(moserial_VALASOURCES) \
+ src/Config.vapi \
src/moserial.vala.stamp \
omf.make \
xmldocs.make \
diff --git a/NEWS b/NEWS
index e7dee4f..73283fa 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,8 @@
+Version 2.28.2
+--------------
+ * Config.vapi was missing from the tar files
+ * Updated GPLv3 boilerplate text
+
Version 2.28.1
--------------
* Added copyright notices
diff --git a/src/AutoScroll.vala b/src/AutoScroll.vala
index 93c9b21..d05fb1d 100644
--- a/src/AutoScroll.vala
+++ b/src/AutoScroll.vala
@@ -1,19 +1,20 @@
/*
* Copyright (C) 2009-2010 Michael J. Chudobiak.
*
- * This program is free software; you can redistribute it and/or modify
+ * This file is part of moserial.
+ *
+ * moserial 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
+ * 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,
+ * moserial 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.
+ * along with moserial. If not, see <http://www.gnu.org/licenses/>.
*/
using Gtk;
diff --git a/src/DefaultPaths.vala b/src/DefaultPaths.vala
index 81d604e..9c3cfb0 100644
--- a/src/DefaultPaths.vala
+++ b/src/DefaultPaths.vala
@@ -1,19 +1,20 @@
/*
* Copyright (C) 2009-2010 Michael J. Chudobiak.
*
- * This program is free software; you can redistribute it and/or modify
+ * This file is part of moserial.
+ *
+ * moserial 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
+ * 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,
+ * moserial 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.
+ * along with moserial. If not, see <http://www.gnu.org/licenses/>.
*/
using GLib;
diff --git a/src/HexTextBuffer.vala b/src/HexTextBuffer.vala
index a082d86..940fbbf 100644
--- a/src/HexTextBuffer.vala
+++ b/src/HexTextBuffer.vala
@@ -1,19 +1,20 @@
/*
* Copyright (C) 2009-2010 Michael J. Chudobiak.
*
- * This program is free software; you can redistribute it and/or modify
+ * This file is part of moserial.
+ *
+ * moserial 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
+ * 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,
+ * moserial 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.
+ * along with moserial. If not, see <http://www.gnu.org/licenses/>.
*/
using Gtk;
diff --git a/src/InputParser.vala b/src/InputParser.vala
index 295e72c..48ae4ab 100644
--- a/src/InputParser.vala
+++ b/src/InputParser.vala
@@ -1,19 +1,20 @@
/*
* Copyright (C) 2009-2010 Michael J. Chudobiak.
*
- * This program is free software; you can redistribute it and/or modify
+ * This file is part of moserial.
+ *
+ * moserial 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
+ * 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,
+ * moserial 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.
+ * along with moserial. If not, see <http://www.gnu.org/licenses/>.
*/
errordomain HexParseError {
diff --git a/src/Main.vala b/src/Main.vala
index 04a5b13..601c355 100644
--- a/src/Main.vala
+++ b/src/Main.vala
@@ -1,19 +1,20 @@
/*
* Copyright (C) 2009-2010 Michael J. Chudobiak.
*
- * This program is free software; you can redistribute it and/or modify
+ * This file is part of moserial.
+ *
+ * moserial 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
+ * 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,
+ * moserial 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.
+ * along with moserial. If not, see <http://www.gnu.org/licenses/>.
*/
using Gtk;
diff --git a/src/MainWindow.vala b/src/MainWindow.vala
index a701682..ab4701b 100644
--- a/src/MainWindow.vala
+++ b/src/MainWindow.vala
@@ -1,19 +1,20 @@
/*
* Copyright (C) 2009-2010 Michael J. Chudobiak.
*
- * This program is free software; you can redistribute it and/or modify
+ * This file is part of moserial.
+ *
+ * moserial 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
+ * 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,
+ * moserial 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.
+ * along with moserial. If not, see <http://www.gnu.org/licenses/>.
*/
using Gtk;
diff --git a/src/MoUtils.vala b/src/MoUtils.vala
index 0a8ac0c..74ddb16 100644
--- a/src/MoUtils.vala
+++ b/src/MoUtils.vala
@@ -1,19 +1,20 @@
/*
* Copyright (C) 2009-2010 Michael J. Chudobiak.
*
- * This program is free software; you can redistribute it and/or modify
+ * This file is part of moserial.
+ *
+ * moserial 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
+ * 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,
+ * moserial 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.
+ * along with moserial. If not, see <http://www.gnu.org/licenses/>.
*/
using GLib;
diff --git a/src/Preferences.vala b/src/Preferences.vala
index 262fd59..477d670 100644
--- a/src/Preferences.vala
+++ b/src/Preferences.vala
@@ -1,19 +1,20 @@
/*
* Copyright (C) 2009-2010 Michael J. Chudobiak.
*
- * This program is free software; you can redistribute it and/or modify
+ * This file is part of moserial.
+ *
+ * moserial 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
+ * 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,
+ * moserial 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.
+ * along with moserial. If not, see <http://www.gnu.org/licenses/>.
*/
using GLib;
diff --git a/src/PreferencesDialog.vala b/src/PreferencesDialog.vala
index 54a9f28..b833cba 100644
--- a/src/PreferencesDialog.vala
+++ b/src/PreferencesDialog.vala
@@ -1,19 +1,20 @@
/*
* Copyright (C) 2009-2010 Michael J. Chudobiak.
*
- * This program is free software; you can redistribute it and/or modify
+ * This file is part of moserial.
+ *
+ * moserial 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
+ * 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,
+ * moserial 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.
+ * along with moserial. If not, see <http://www.gnu.org/licenses/>.
*/
using Gtk;
diff --git a/src/Profile.vala b/src/Profile.vala
index f05b9e2..18125dd 100644
--- a/src/Profile.vala
+++ b/src/Profile.vala
@@ -1,19 +1,20 @@
/*
* Copyright (C) 2009-2010 Michael J. Chudobiak.
*
- * This program is free software; you can redistribute it and/or modify
+ * This file is part of moserial.
+ *
+ * moserial 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
+ * 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,
+ * moserial 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.
+ * along with moserial. If not, see <http://www.gnu.org/licenses/>.
*/
using Gtk;
diff --git a/src/ReceiveChooserDialog.vala b/src/ReceiveChooserDialog.vala
index 6911035..2575882 100644
--- a/src/ReceiveChooserDialog.vala
+++ b/src/ReceiveChooserDialog.vala
@@ -1,19 +1,20 @@
/*
* Copyright (C) 2009-2010 Michael J. Chudobiak.
*
- * This program is free software; you can redistribute it and/or modify
+ * This file is part of moserial.
+ *
+ * moserial 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
+ * 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,
+ * moserial 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.
+ * along with moserial. If not, see <http://www.gnu.org/licenses/>.
*/
using Gtk;
diff --git a/src/ReceiveProgressDialog.vala b/src/ReceiveProgressDialog.vala
index 8260c6e..f716d53 100644
--- a/src/ReceiveProgressDialog.vala
+++ b/src/ReceiveProgressDialog.vala
@@ -1,19 +1,20 @@
/*
* Copyright (C) 2009-2010 Michael J. Chudobiak.
*
- * This program is free software; you can redistribute it and/or modify
+ * This file is part of moserial.
+ *
+ * moserial 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
+ * 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,
+ * moserial 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.
+ * along with moserial. If not, see <http://www.gnu.org/licenses/>.
*/
using Gtk;
diff --git a/src/RecordDialog.vala b/src/RecordDialog.vala
index a19a5a3..0c3397f 100644
--- a/src/RecordDialog.vala
+++ b/src/RecordDialog.vala
@@ -1,19 +1,20 @@
/*
* Copyright (C) 2009-2010 Michael J. Chudobiak.
*
- * This program is free software; you can redistribute it and/or modify
+ * This file is part of moserial.
+ *
+ * moserial 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
+ * 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,
+ * moserial 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.
+ * along with moserial. If not, see <http://www.gnu.org/licenses/>.
*/
using Gtk;
diff --git a/src/Rzwrapper.vala b/src/Rzwrapper.vala
index bca39eb..02bb4f9 100644
--- a/src/Rzwrapper.vala
+++ b/src/Rzwrapper.vala
@@ -1,19 +1,20 @@
/*
* Copyright (C) 2009-2010 Michael J. Chudobiak.
*
- * This program is free software; you can redistribute it and/or modify
+ * This file is part of moserial.
+ *
+ * moserial 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
+ * 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,
+ * moserial 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.
+ * along with moserial. If not, see <http://www.gnu.org/licenses/>.
*/
//Class for communicating with the rz program
diff --git a/src/SendChooserDialog.vala b/src/SendChooserDialog.vala
index bde070d..37b8107 100644
--- a/src/SendChooserDialog.vala
+++ b/src/SendChooserDialog.vala
@@ -1,19 +1,20 @@
/*
* Copyright (C) 2009-2010 Michael J. Chudobiak.
*
- * This program is free software; you can redistribute it and/or modify
+ * This file is part of moserial.
+ *
+ * moserial 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
+ * 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,
+ * moserial 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.
+ * along with moserial. If not, see <http://www.gnu.org/licenses/>.
*/
using Gtk;
diff --git a/src/SendProgressDialog.vala b/src/SendProgressDialog.vala
index 4b4c24c..78fd8fa 100644
--- a/src/SendProgressDialog.vala
+++ b/src/SendProgressDialog.vala
@@ -1,19 +1,20 @@
/*
* Copyright (C) 2009-2010 Michael J. Chudobiak.
*
- * This program is free software; you can redistribute it and/or modify
+ * This file is part of moserial.
+ *
+ * moserial 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
+ * 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,
+ * moserial 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.
+ * along with moserial. If not, see <http://www.gnu.org/licenses/>.
*/
using Gtk;
diff --git a/src/SerialConnection.vala b/src/SerialConnection.vala
index 6342902..a6dd363 100644
--- a/src/SerialConnection.vala
+++ b/src/SerialConnection.vala
@@ -1,19 +1,20 @@
/*
* Copyright (C) 2009-2010 Michael J. Chudobiak.
*
- * This program is free software; you can redistribute it and/or modify
+ * This file is part of moserial.
+ *
+ * moserial 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
+ * 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,
+ * moserial 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.
+ * along with moserial. If not, see <http://www.gnu.org/licenses/>.
*/
public class moserial.SerialConnection : GLib.Object
diff --git a/src/SerialStreamRecorder.vala b/src/SerialStreamRecorder.vala
index c512b75..8738ab9 100644
--- a/src/SerialStreamRecorder.vala
+++ b/src/SerialStreamRecorder.vala
@@ -1,19 +1,20 @@
/*
* Copyright (C) 2009-2010 Michael J. Chudobiak.
*
- * This program is free software; you can redistribute it and/or modify
+ * This file is part of moserial.
+ *
+ * moserial 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
+ * 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,
+ * moserial 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.
+ * along with moserial. If not, see <http://www.gnu.org/licenses/>.
*/
using Gtk;
diff --git a/src/Settings.vala b/src/Settings.vala
index 9e7808c..33da9fb 100644
--- a/src/Settings.vala
+++ b/src/Settings.vala
@@ -1,19 +1,20 @@
/*
* Copyright (C) 2009-2010 Michael J. Chudobiak.
*
- * This program is free software; you can redistribute it and/or modify
+ * This file is part of moserial.
+ *
+ * moserial 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
+ * 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,
+ * moserial 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.
+ * along with moserial. If not, see <http://www.gnu.org/licenses/>.
*/
using GLib;
diff --git a/src/SettingsDialog.vala b/src/SettingsDialog.vala
index f380fa5..0fcee57 100644
--- a/src/SettingsDialog.vala
+++ b/src/SettingsDialog.vala
@@ -1,19 +1,20 @@
/*
* Copyright (C) 2009-2010 Michael J. Chudobiak.
*
- * This program is free software; you can redistribute it and/or modify
+ * This file is part of moserial.
+ *
+ * moserial 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
+ * 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,
+ * moserial 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.
+ * along with moserial. If not, see <http://www.gnu.org/licenses/>.
*/
using Gtk;
diff --git a/src/Szwrapper.vala b/src/Szwrapper.vala
index 23f5bd9..e504766 100644
--- a/src/Szwrapper.vala
+++ b/src/Szwrapper.vala
@@ -1,19 +1,20 @@
/*
* Copyright (C) 2009-2010 Michael J. Chudobiak.
*
- * This program is free software; you can redistribute it and/or modify
+ * This file is part of moserial.
+ *
+ * moserial 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
+ * 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,
+ * moserial 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.
+ * along with moserial. If not, see <http://www.gnu.org/licenses/>.
*/
//Class for communicating with the sz program
diff --git a/src/XmodemFilenameDialog.vala b/src/XmodemFilenameDialog.vala
index 3ec4b16..cd59e21 100644
--- a/src/XmodemFilenameDialog.vala
+++ b/src/XmodemFilenameDialog.vala
@@ -1,19 +1,20 @@
/*
* Copyright (C) 2009-2010 Michael J. Chudobiak.
*
- * This program is free software; you can redistribute it and/or modify
+ * This file is part of moserial.
+ *
+ * moserial 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
+ * 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,
+ * moserial 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.
+ * along with moserial. If not, see <http://www.gnu.org/licenses/>.
*/
using Gtk;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]