[lightsoff] Add license headers
- From: Robert Ancell <rancell src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [lightsoff] Add license headers
- Date: Sun, 18 Aug 2013 21:16:39 +0000 (UTC)
commit 6b4ec73e994aa44a52029ed5bebea00368cc4806
Author: Robert Ancell <robert ancell canonical com>
Date: Mon Aug 19 09:16:32 2013 +1200
Add license headers
src/board-view.vala | 10 ++++++++++
src/config.vapi | 10 ++++++++++
src/fixes.vapi | 10 ++++++++++
src/game-view.vala | 10 ++++++++++
src/led-array.vala | 10 ++++++++++
src/lightsoff.vala | 10 ++++++++++
src/puzzle-generator.vala | 10 ++++++++++
7 files changed, 70 insertions(+), 0 deletions(-)
---
diff --git a/src/board-view.vala b/src/board-view.vala
index 9a0eedb..1237d64 100644
--- a/src/board-view.vala
+++ b/src/board-view.vala
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2010-2013 Robert Ancell
+ *
+ * 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 2 of the License, or (at your option) any later
+ * version. See http://www.gnu.org/copyleft/gpl.html the full text of the
+ * license.
+ */
+
private class Light : Clutter.Group
{
private Clutter.Actor off;
diff --git a/src/config.vapi b/src/config.vapi
index caae220..978a7f7 100644
--- a/src/config.vapi
+++ b/src/config.vapi
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2010-2013 Robert Ancell
+ *
+ * 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 2 of the License, or (at your option) any later
+ * version. See http://www.gnu.org/copyleft/gpl.html the full text of the
+ * license.
+ */
+
public const string DATADIR;
public const string GETTEXT_PACKAGE;
public const string VERSION;
diff --git a/src/fixes.vapi b/src/fixes.vapi
index 7f05acb..1e563a0 100644
--- a/src/fixes.vapi
+++ b/src/fixes.vapi
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2010-2013 Robert Ancell
+ *
+ * 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 2 of the License, or (at your option) any later
+ * version. See http://www.gnu.org/copyleft/gpl.html the full text of the
+ * license.
+ */
+
namespace Clutter
{
public const int KEY_Up;
diff --git a/src/game-view.vala b/src/game-view.vala
index 2a38c19..98b3896 100644
--- a/src/game-view.vala
+++ b/src/game-view.vala
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2010-2013 Robert Ancell
+ *
+ * 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 2 of the License, or (at your option) any later
+ * version. See http://www.gnu.org/copyleft/gpl.html the full text of the
+ * license.
+ */
+
public class GameView : Clutter.Group
{
private Clutter.Texture backing_texture;
diff --git a/src/led-array.vala b/src/led-array.vala
index e9050e1..a0a1110 100644
--- a/src/led-array.vala
+++ b/src/led-array.vala
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2010-2013 Robert Ancell
+ *
+ * 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 2 of the License, or (at your option) any later
+ * version. See http://www.gnu.org/copyleft/gpl.html the full text of the
+ * license.
+ */
+
public class LEDDigit : Clutter.CairoTexture
{
private const int scale = 23;
diff --git a/src/lightsoff.vala b/src/lightsoff.vala
index 1f65b96..7748af3 100644
--- a/src/lightsoff.vala
+++ b/src/lightsoff.vala
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2010-2013 Robert Ancell
+ *
+ * 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 2 of the License, or (at your option) any later
+ * version. See http://www.gnu.org/copyleft/gpl.html the full text of the
+ * license.
+ */
+
public class LightsOff : Gtk.Application
{
private Settings settings;
diff --git a/src/puzzle-generator.vala b/src/puzzle-generator.vala
index 6103d59..c19ea0e 100644
--- a/src/puzzle-generator.vala
+++ b/src/puzzle-generator.vala
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2010-2013 Robert Ancell
+ *
+ * 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 2 of the License, or (at your option) any later
+ * version. See http://www.gnu.org/copyleft/gpl.html the full text of the
+ * license.
+ */
+
// Puzzle generation logic:
// We want to measure a puzzle's difficulty by the number of button presses
// needed to solve it, and have that increase in a controlled manner.
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]