Skip to content

Commit

Permalink
Add GPL3 license
Browse files Browse the repository at this point in the history
  • Loading branch information
Sector14 committed Apr 11, 2018
1 parent 17efaec commit 3d7e8a5
Show file tree
Hide file tree
Showing 7 changed files with 777 additions and 8 deletions.
674 changes: 674 additions & 0 deletions COPYING

Large diffs are not rendered by default.

2 changes: 0 additions & 2 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -299,5 +299,3 @@ Please let me know if you encounter any bugs and as always monetary support is
appreciated. Donations can be made via https://www.paypal.me/GPreston42

Gary Preston <[email protected]>


24 changes: 21 additions & 3 deletions src/cougardevice.cpp
Original file line number Diff line number Diff line change
@@ -1,10 +1,28 @@
/*
Cougar-Util
Copyright © 2018 Gary Preston ([email protected])
This file is part of cougar-util.
cougar-util 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, see <http://www.gnu.org/licenses/>.
*/

#include <fstream>
#include <iostream>
#include <type_traits>

#include <chrono>
#include <thread>

#include "cougardevice.h"
#include "usbdevice.h"

Expand Down
20 changes: 20 additions & 0 deletions src/cougardevice.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
/*
Cougar-Util
Copyright © 2018 Gary Preston ([email protected])
This file is part of cougar-util.
cougar-util 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, see <http://www.gnu.org/licenses/>.
*/
#ifndef COUGARDEVICE_H
#define COUGARDEVICE_H

Expand Down
23 changes: 20 additions & 3 deletions src/main.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,23 @@
// Supports uploading tmc user profile to connected Cougar HOTAS
// as well as activating a pre-existing profile and setting
// button emulation on/off.
/*
Cougar-Util
Copyright © 2018 Gary Preston ([email protected])
This file is part of cougar-util.
cougar-util 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, see <http://www.gnu.org/licenses/>.
*/

#include <iostream>
#include <unistd.h>
Expand Down
21 changes: 21 additions & 0 deletions src/usbdevice.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
/*
Cougar-Util
Copyright © 2018 Gary Preston ([email protected])
This file is part of cougar-util.
cougar-util 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, see <http://www.gnu.org/licenses/>.
*/

#include "usbdevice.h"

#include <cassert>
Expand Down
21 changes: 21 additions & 0 deletions src/usbdevice.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
/*
Cougar-Util
Copyright © 2018 Gary Preston ([email protected])
This file is part of cougar-util.
cougar-util 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, see <http://www.gnu.org/licenses/>.
*/

#ifndef USBDEVICE_H
#define USBDEVICE_H

Expand Down

0 comments on commit 3d7e8a5

Please sign in to comment.