Skip to content

Commit

Permalink
Use AGPLv3 License; adds copyright header to .cs files. We can weaken…
Browse files Browse the repository at this point in the history
… this

later if need be.
  • Loading branch information
Ilses committed Aug 12, 2016
1 parent 80f753e commit 67d9b95
Show file tree
Hide file tree
Showing 62 changed files with 1,805 additions and 108 deletions.
614 changes: 614 additions & 0 deletions LICENSE.md

Large diffs are not rendered by default.

22 changes: 20 additions & 2 deletions PogoLocationFeeder.API/PogoLocationFeederListener.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,22 @@
using System;
/*
PogoLocationFeeder gathers pokemon data from various sources and serves it to connected clients
Copyright (C) 2016 PogoLocationFeeder Development Team <[email protected]>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero 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 Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

using System;
using System.IO;
using System.Net.Sockets;
using System.Threading;
Expand Down Expand Up @@ -62,4 +80,4 @@ protected virtual void OnReceive(SniperInfoModel sniperInfo)
});
}
}
}
}
22 changes: 20 additions & 2 deletions PogoLocationFeeder.API/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,22 @@
using System.Reflection;
/*
PogoLocationFeeder gathers pokemon data from various sources and serves it to connected clients
Copyright (C) 2016 PogoLocationFeeder Development Team <[email protected]>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero 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 Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

using System.Reflection;
using System.Runtime.InteropServices;

// General Information about an assembly is controlled through the following
Expand Down Expand Up @@ -36,4 +54,4 @@
// [assembly: AssemblyVersion("1.0.*")]

[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
22 changes: 20 additions & 2 deletions PogoLocationFeeder.API/SniperInfoModel.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,22 @@
using System;
/*
PogoLocationFeeder gathers pokemon data from various sources and serves it to connected clients
Copyright (C) 2016 PogoLocationFeeder Development Team <[email protected]>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero 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 Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

using System;
using Newtonsoft.Json;
using POGOProtos.Enums;

Expand All @@ -21,4 +39,4 @@ public class SniperInfoModel
[JsonProperty("IV")]
public double IV { get; set; }
}
}
}
22 changes: 20 additions & 2 deletions PogoLocationFeeder.GUI/App.xaml.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,22 @@
using System.Threading;
/*
PogoLocationFeeder gathers pokemon data from various sources and serves it to connected clients
Copyright (C) 2016 PogoLocationFeeder Development Team <[email protected]>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero 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 Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

using System.Threading;
using System.Windows;
using PogoLocationFeeder.Config;
using PogoLocationFeeder.GUI.ViewModels;
Expand Down Expand Up @@ -31,4 +49,4 @@ private void AppStartup(object sender, StartupEventArgs args)
}
}
}
}
}
20 changes: 19 additions & 1 deletion PogoLocationFeeder.GUI/Common/CleanupThread.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,22 @@
using System;
/*
PogoLocationFeeder gathers pokemon data from various sources and serves it to connected clients
Copyright (C) 2016 PogoLocationFeeder Development Team <[email protected]>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero 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 Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
Expand Down
22 changes: 20 additions & 2 deletions PogoLocationFeeder.GUI/Common/Output.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,22 @@
using System;
/*
PogoLocationFeeder gathers pokemon data from various sources and serves it to connected clients
Copyright (C) 2016 PogoLocationFeeder Development Team <[email protected]>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero 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 Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

using System;
using System.IO;
using System.Linq;
using System.Windows;
Expand Down Expand Up @@ -84,4 +102,4 @@ protected override void Append(LoggingEvent loggingEvent)
}
}
}
}
}
20 changes: 19 additions & 1 deletion PogoLocationFeeder.GUI/Common/PokemonFilter.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,22 @@
using System;
/*
PogoLocationFeeder gathers pokemon data from various sources and serves it to connected clients
Copyright (C) 2016 PogoLocationFeeder Development Team <[email protected]>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero 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 Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
Expand Down
22 changes: 20 additions & 2 deletions PogoLocationFeeder.GUI/GlobalVariables.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,22 @@
using System.Collections.ObjectModel;
/*
PogoLocationFeeder gathers pokemon data from various sources and serves it to connected clients
Copyright (C) 2016 PogoLocationFeeder Development Team <[email protected]>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero 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 Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

using System.Collections.ObjectModel;
using PogoLocationFeeder.Config;
using PogoLocationFeeder.GUI.Common;
using PogoLocationFeeder.GUI.Models;
Expand All @@ -23,4 +41,4 @@ public static class GlobalVariables
public static ObservableCollection<PokemonFilterModel> PokemonToFeedFilterInternal =
new ObservableCollection<PokemonFilterModel>();
}
}
}
22 changes: 20 additions & 2 deletions PogoLocationFeeder.GUI/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,22 @@
using System;
/*
PogoLocationFeeder gathers pokemon data from various sources and serves it to connected clients
Copyright (C) 2016 PogoLocationFeeder Development Team <[email protected]>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero 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 Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

using System;
using MaterialDesignThemes.Wpf;
using PogoLocationFeeder.Config;

Expand Down Expand Up @@ -32,4 +50,4 @@ private void MetroWindow_Loaded(object sender, System.Windows.RoutedEventArgs e)
}
}
}
}
}
20 changes: 19 additions & 1 deletion PogoLocationFeeder.GUI/Models/PokemonFilterModel.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,22 @@
using System;
/*
PogoLocationFeeder gathers pokemon data from various sources and serves it to connected clients
Copyright (C) 2016 PogoLocationFeeder Development Team <[email protected]>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero 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 Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
Expand Down
20 changes: 19 additions & 1 deletion PogoLocationFeeder.GUI/Models/SniperInfoModel.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,22 @@
using System;
/*
PogoLocationFeeder gathers pokemon data from various sources and serves it to connected clients
Copyright (C) 2016 PogoLocationFeeder Development Team <[email protected]>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero 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 Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

using System;
using System.Diagnostics;
using System.Globalization;
using System.Threading;
Expand Down
22 changes: 20 additions & 2 deletions PogoLocationFeeder.GUI/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,22 @@
using System.Reflection;
/*
PogoLocationFeeder gathers pokemon data from various sources and serves it to connected clients
Copyright (C) 2016 PogoLocationFeeder Development Team <[email protected]>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero 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 Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

using System.Reflection;
using System.Runtime.InteropServices;
using System.Windows;

Expand Down Expand Up @@ -53,4 +71,4 @@
// [assembly: AssemblyVersion("1.0.*")]

[assembly: AssemblyVersion("0.1.6.0")]
[assembly: AssemblyFileVersion("0.1.6.0")]
[assembly: AssemblyFileVersion("0.1.6.0")]
20 changes: 19 additions & 1 deletion PogoLocationFeeder.GUI/Properties/Resources.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 19 additions & 1 deletion PogoLocationFeeder.GUI/Properties/Settings.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 67d9b95

Please sign in to comment.