From b89acc67dc9cb05c6184413c0491ad4fb18b6257 Mon Sep 17 00:00:00 2001 From: Floens Date: Mon, 25 Jul 2016 18:36:52 +0200 Subject: [PATCH] Add missing license headers --- .../core/exception/ChanLoaderException.java | 17 ++++++++++++ .../floens/chan/core/manager/FilterType.java | 17 ++++++++++++ .../org/floens/chan/core/model/FileItem.java | 17 ++++++++++++ .../org/floens/chan/core/model/FileItems.java | 17 ++++++++++++ .../floens/chan/core/saver/FileWatcher.java | 17 ++++++++++++ .../floens/chan/core/saver/StorageHelper.java | 17 ++++++++++++ .../floens/chan/ui/adapter/FilesAdapter.java | 17 ++++++++++++ .../ui/controller/SaveLocationController.java | 17 ++++++++++++ .../floens/chan/ui/layout/FilesLayout.java | 17 ++++++++++++ .../ic_chevron_left_black_24dp.xml | 27 +++++++++++++++---- .../drawable-xxhdpi/ic_folder_black_24dp.xml | 27 +++++++++++++++---- Clover/app/src/main/res/layout/cell_file.xml | 18 ++++++++++++- .../res/layout/controller_save_location.xml | 18 ++++++++++++- 13 files changed, 231 insertions(+), 12 deletions(-) diff --git a/Clover/app/src/main/java/org/floens/chan/core/exception/ChanLoaderException.java b/Clover/app/src/main/java/org/floens/chan/core/exception/ChanLoaderException.java index b01de92a..755a38e4 100644 --- a/Clover/app/src/main/java/org/floens/chan/core/exception/ChanLoaderException.java +++ b/Clover/app/src/main/java/org/floens/chan/core/exception/ChanLoaderException.java @@ -1,3 +1,20 @@ +/* + * Clover - 4chan browser https://github.com/Floens/Clover/ + * Copyright (C) 2014 Floens + * + * 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 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 . + */ package org.floens.chan.core.exception; import com.android.volley.AuthFailureError; diff --git a/Clover/app/src/main/java/org/floens/chan/core/manager/FilterType.java b/Clover/app/src/main/java/org/floens/chan/core/manager/FilterType.java index 9a1a2be7..11654975 100644 --- a/Clover/app/src/main/java/org/floens/chan/core/manager/FilterType.java +++ b/Clover/app/src/main/java/org/floens/chan/core/manager/FilterType.java @@ -1,3 +1,20 @@ +/* + * Clover - 4chan browser https://github.com/Floens/Clover/ + * Copyright (C) 2014 Floens + * + * 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 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 . + */ package org.floens.chan.core.manager; import java.util.ArrayList; diff --git a/Clover/app/src/main/java/org/floens/chan/core/model/FileItem.java b/Clover/app/src/main/java/org/floens/chan/core/model/FileItem.java index 519c68f6..b6498a42 100644 --- a/Clover/app/src/main/java/org/floens/chan/core/model/FileItem.java +++ b/Clover/app/src/main/java/org/floens/chan/core/model/FileItem.java @@ -1,3 +1,20 @@ +/* + * Clover - 4chan browser https://github.com/Floens/Clover/ + * Copyright (C) 2014 Floens + * + * 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 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 . + */ package org.floens.chan.core.model; import org.floens.chan.core.saver.StorageHelper; diff --git a/Clover/app/src/main/java/org/floens/chan/core/model/FileItems.java b/Clover/app/src/main/java/org/floens/chan/core/model/FileItems.java index 68440f08..45a97feb 100644 --- a/Clover/app/src/main/java/org/floens/chan/core/model/FileItems.java +++ b/Clover/app/src/main/java/org/floens/chan/core/model/FileItems.java @@ -1,3 +1,20 @@ +/* + * Clover - 4chan browser https://github.com/Floens/Clover/ + * Copyright (C) 2014 Floens + * + * 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 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 . + */ package org.floens.chan.core.model; import java.io.File; diff --git a/Clover/app/src/main/java/org/floens/chan/core/saver/FileWatcher.java b/Clover/app/src/main/java/org/floens/chan/core/saver/FileWatcher.java index 4ab84094..7b54a66d 100644 --- a/Clover/app/src/main/java/org/floens/chan/core/saver/FileWatcher.java +++ b/Clover/app/src/main/java/org/floens/chan/core/saver/FileWatcher.java @@ -1,3 +1,20 @@ +/* + * Clover - 4chan browser https://github.com/Floens/Clover/ + * Copyright (C) 2014 Floens + * + * 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 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 . + */ package org.floens.chan.core.saver; import android.os.FileObserver; diff --git a/Clover/app/src/main/java/org/floens/chan/core/saver/StorageHelper.java b/Clover/app/src/main/java/org/floens/chan/core/saver/StorageHelper.java index 4118a97a..7df95351 100644 --- a/Clover/app/src/main/java/org/floens/chan/core/saver/StorageHelper.java +++ b/Clover/app/src/main/java/org/floens/chan/core/saver/StorageHelper.java @@ -1,3 +1,20 @@ +/* + * Clover - 4chan browser https://github.com/Floens/Clover/ + * Copyright (C) 2014 Floens + * + * 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 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 . + */ package org.floens.chan.core.saver; import java.io.File; diff --git a/Clover/app/src/main/java/org/floens/chan/ui/adapter/FilesAdapter.java b/Clover/app/src/main/java/org/floens/chan/ui/adapter/FilesAdapter.java index 5c6cad11..fe0895ef 100644 --- a/Clover/app/src/main/java/org/floens/chan/ui/adapter/FilesAdapter.java +++ b/Clover/app/src/main/java/org/floens/chan/ui/adapter/FilesAdapter.java @@ -1,3 +1,20 @@ +/* + * Clover - 4chan browser https://github.com/Floens/Clover/ + * Copyright (C) 2014 Floens + * + * 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 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 . + */ package org.floens.chan.ui.adapter; import android.content.Context; diff --git a/Clover/app/src/main/java/org/floens/chan/ui/controller/SaveLocationController.java b/Clover/app/src/main/java/org/floens/chan/ui/controller/SaveLocationController.java index c4b8efb8..858165b5 100644 --- a/Clover/app/src/main/java/org/floens/chan/ui/controller/SaveLocationController.java +++ b/Clover/app/src/main/java/org/floens/chan/ui/controller/SaveLocationController.java @@ -1,3 +1,20 @@ +/* + * Clover - 4chan browser https://github.com/Floens/Clover/ + * Copyright (C) 2014 Floens + * + * 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 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 . + */ package org.floens.chan.ui.controller; import android.Manifest; diff --git a/Clover/app/src/main/java/org/floens/chan/ui/layout/FilesLayout.java b/Clover/app/src/main/java/org/floens/chan/ui/layout/FilesLayout.java index 9b679d6a..96dd8c28 100644 --- a/Clover/app/src/main/java/org/floens/chan/ui/layout/FilesLayout.java +++ b/Clover/app/src/main/java/org/floens/chan/ui/layout/FilesLayout.java @@ -1,3 +1,20 @@ +/* + * Clover - 4chan browser https://github.com/Floens/Clover/ + * Copyright (C) 2014 Floens + * + * 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 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 . + */ package org.floens.chan.ui.layout; import android.content.Context; diff --git a/Clover/app/src/main/res/drawable-mdpi/ic_chevron_left_black_24dp.xml b/Clover/app/src/main/res/drawable-mdpi/ic_chevron_left_black_24dp.xml index e6bb3ca9..08e55e31 100644 --- a/Clover/app/src/main/res/drawable-mdpi/ic_chevron_left_black_24dp.xml +++ b/Clover/app/src/main/res/drawable-mdpi/ic_chevron_left_black_24dp.xml @@ -1,9 +1,26 @@ + + android:width="24dp" + android:height="24dp" + android:viewportHeight="24.0" + android:viewportWidth="24.0"> + android:pathData="M15.41,7.41L14,6l-6,6 6,6 1.41,-1.41L10.83,12z" /> diff --git a/Clover/app/src/main/res/drawable-xxhdpi/ic_folder_black_24dp.xml b/Clover/app/src/main/res/drawable-xxhdpi/ic_folder_black_24dp.xml index d7c6145c..714360d0 100644 --- a/Clover/app/src/main/res/drawable-xxhdpi/ic_folder_black_24dp.xml +++ b/Clover/app/src/main/res/drawable-xxhdpi/ic_folder_black_24dp.xml @@ -1,9 +1,26 @@ + + android:width="24dp" + android:height="24dp" + android:viewportHeight="24.0" + android:viewportWidth="24.0"> + android:pathData="M10,4H4c-1.1,0 -1.99,0.9 -1.99,2L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V8c0,-1.1 -0.9,-2 -2,-2h-8l-2,-2z" /> diff --git a/Clover/app/src/main/res/layout/cell_file.xml b/Clover/app/src/main/res/layout/cell_file.xml index 91e1e278..a53b297f 100644 --- a/Clover/app/src/main/res/layout/cell_file.xml +++ b/Clover/app/src/main/res/layout/cell_file.xml @@ -1,4 +1,20 @@ - + +