Skip to content

Commit

Permalink
added gpl license header to all code files that fall under the GPLv3
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Kammerath committed Nov 26, 2019
1 parent 6754bf8 commit 9e9c853
Show file tree
Hide file tree
Showing 26 changed files with 450 additions and 0 deletions.
Binary file modified build/Gophie.jar
Binary file not shown.
18 changes: 18 additions & 0 deletions src/org/gophie/config/ConfigFile.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
/*
This file is part of Gophie.
Gophie 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.
Gophie 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 Gophie. If not, see <https://www.gnu.org/licenses/>.
*/

package org.gophie.config;

import java.nio.charset.Charset;
Expand Down
18 changes: 18 additions & 0 deletions src/org/gophie/config/ConfigurationManager.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
/*
This file is part of Gophie.
Gophie 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.
Gophie 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 Gophie. If not, see <https://www.gnu.org/licenses/>.
*/

package org.gophie.config;

import java.awt.*;
Expand Down
18 changes: 18 additions & 0 deletions src/org/gophie/config/SystemUtility.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
/*
This file is part of Gophie.
Gophie 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.
Gophie 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 Gophie. If not, see <https://www.gnu.org/licenses/>.
*/

package org.gophie.config;

public class SystemUtility {
Expand Down
18 changes: 18 additions & 0 deletions src/org/gophie/net/DownloadItem.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
/*
This file is part of Gophie.
Gophie 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.
Gophie 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 Gophie. If not, see <https://www.gnu.org/licenses/>.
*/

package org.gophie.net;

import java.awt.*;
Expand Down
18 changes: 18 additions & 0 deletions src/org/gophie/net/DownloadList.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
/*
This file is part of Gophie.
Gophie 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.
Gophie 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 Gophie. If not, see <https://www.gnu.org/licenses/>.
*/

package org.gophie.net;

import java.util.ArrayList;
Expand Down
18 changes: 18 additions & 0 deletions src/org/gophie/net/GopherClient.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
/*
This file is part of Gophie.
Gophie 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.
Gophie 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 Gophie. If not, see <https://www.gnu.org/licenses/>.
*/

package org.gophie.net;

import java.io.*;
Expand Down
18 changes: 18 additions & 0 deletions src/org/gophie/net/GopherItem.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
/*
This file is part of Gophie.
Gophie 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.
Gophie 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 Gophie. If not, see <https://www.gnu.org/licenses/>.
*/

package org.gophie.net;

public class GopherItem{
Expand Down
18 changes: 18 additions & 0 deletions src/org/gophie/net/GopherNetworkException.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
/*
This file is part of Gophie.
Gophie 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.
Gophie 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 Gophie. If not, see <https://www.gnu.org/licenses/>.
*/

package org.gophie.net;

import org.gophie.net.event.*;
Expand Down
18 changes: 18 additions & 0 deletions src/org/gophie/net/GopherPage.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
/*
This file is part of Gophie.
Gophie 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.
Gophie 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 Gophie. If not, see <https://www.gnu.org/licenses/>.
*/

package org.gophie.net;

import java.util.ArrayList;
Expand Down
18 changes: 18 additions & 0 deletions src/org/gophie/net/GopherUrl.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
/*
This file is part of Gophie.
Gophie 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.
Gophie 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 Gophie. If not, see <https://www.gnu.org/licenses/>.
*/

package org.gophie.net;

public class GopherUrl {
Expand Down
18 changes: 18 additions & 0 deletions src/org/gophie/net/event/DownloadItemEventListener.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
/*
This file is part of Gophie.
Gophie 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.
Gophie 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 Gophie. If not, see <https://www.gnu.org/licenses/>.
*/

package org.gophie.net.event;

public interface DownloadItemEventListener{
Expand Down
18 changes: 18 additions & 0 deletions src/org/gophie/net/event/DownloadListEventListener.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
/*
This file is part of Gophie.
Gophie 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.
Gophie 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 Gophie. If not, see <https://www.gnu.org/licenses/>.
*/

package org.gophie.net.event;

public interface DownloadListEventListener{
Expand Down
18 changes: 18 additions & 0 deletions src/org/gophie/net/event/GopherClientEventListener.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
/*
This file is part of Gophie.
Gophie 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.
Gophie 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 Gophie. If not, see <https://www.gnu.org/licenses/>.
*/

package org.gophie.net.event;

import org.gophie.net.GopherPage;
Expand Down
18 changes: 18 additions & 0 deletions src/org/gophie/net/event/GopherError.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
/*
This file is part of Gophie.
Gophie 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.
Gophie 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 Gophie. If not, see <https://www.gnu.org/licenses/>.
*/

package org.gophie.net.event;

public enum GopherError {
Expand Down
18 changes: 18 additions & 0 deletions src/org/gophie/ui/ActionButton.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
/*
This file is part of Gophie.
Gophie 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.
Gophie 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 Gophie. If not, see <https://www.gnu.org/licenses/>.
*/

package org.gophie.ui;

import java.awt.*;
Expand Down
18 changes: 18 additions & 0 deletions src/org/gophie/ui/DownloadItemRenderer.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
/*
This file is part of Gophie.
Gophie 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.
Gophie 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 Gophie. If not, see <https://www.gnu.org/licenses/>.
*/

package org.gophie.ui;

import java.awt.*;
Expand Down
18 changes: 18 additions & 0 deletions src/org/gophie/ui/MainWindow.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
/*
This file is part of Gophie.
Gophie 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.
Gophie 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 Gophie. If not, see <https://www.gnu.org/licenses/>.
*/

package org.gophie.ui;

import java.awt.*;
Expand Down
18 changes: 18 additions & 0 deletions src/org/gophie/ui/MessageView.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
/*
This file is part of Gophie.
Gophie 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.
Gophie 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 Gophie. If not, see <https://www.gnu.org/licenses/>.
*/

package org.gophie.ui;

import java.awt.*;
Expand Down
Loading

0 comments on commit 9e9c853

Please sign in to comment.