From b610afdf93a57a0b78bd2f589f440690dc5684cb Mon Sep 17 00:00:00 2001 From: Jakob Nixdorf Date: Tue, 27 Feb 2018 13:26:54 +0100 Subject: [PATCH] Update license headers (add 2018) --- LICENSE.txt | 2 +- README.md | 2 +- .../flocke/andotp/ApplicationTest.java | 1 + .../flocke/andotp/Utilities/ToolsTest.java | 23 ++++++++++++++++++ .../andotp/Activities/AboutActivity.java | 2 +- .../Activities/AuthenticateActivity.java | 2 +- .../andotp/Activities/BackupActivity.java | 2 +- .../andotp/Activities/BaseActivity.java | 2 +- .../andotp/Activities/MainActivity.java | 2 +- .../Activities/PanicResponderActivity.java | 1 + .../andotp/Activities/SettingsActivity.java | 2 +- .../andotp/Activities/ThemedActivity.java | 2 +- .../flocke/andotp/Database/Entry.java | 2 +- .../Preferences/CredentialsPreference.java | 2 +- .../PasswordEncryptedPreference.java | 2 +- .../Receivers/BackupBroadcastReceiver.java | 24 ++++++++++++++++++- .../EncryptedBackupBroadcastReceiver.java | 23 ++++++++++++++++++ .../PlainTextBackupBroadcastReceiver.java | 23 ++++++++++++++++++ .../flocke/andotp/Utilities/BackupAgent.java | 23 ++++++++++++++++++ .../flocke/andotp/Utilities/Constants.java | 2 +- .../andotp/Utilities/DatabaseHelper.java | 2 +- .../andotp/Utilities/DimensionConverter.java | 23 ++++++++++++++++++ .../andotp/Utilities/EncryptionHelper.java | 2 +- .../andotp/Utilities/EntryThumbnail.java | 23 ++++++++++++++++++ .../flocke/andotp/Utilities/FileHelper.java | 2 +- .../andotp/Utilities/KeyStoreHelper.java | 2 +- .../flocke/andotp/Utilities/LetterBitmap.java | 23 ++++++++++++++++++ .../andotp/Utilities/NotificationHelper.java | 23 ++++++++++++++++++ .../andotp/Utilities/SecretKeyWrapper.java | 1 + .../flocke/andotp/Utilities/Settings.java | 2 +- .../andotp/Utilities/TokenCalculator.java | 2 +- .../flocke/andotp/Utilities/Tools.java | 2 +- .../flocke/andotp/Utilities/UIHelper.java | 2 +- .../andotp/View/EntriesCardAdapter.java | 2 +- .../flocke/andotp/View/EntryViewHolder.java | 2 +- .../andotp/View/FloatingActionMenu.java | 2 +- .../flocke/andotp/View/ManualEntryDialog.java | 2 +- .../flocke/andotp/View/TagsAdapter.java | 4 ++-- .../flocke/andotp/View/TagsDialog.java | 4 ++-- .../View/ThumbnailSelectionAdapter.java | 23 ++++++++++++++++++ 40 files changed, 262 insertions(+), 30 deletions(-) diff --git a/LICENSE.txt b/LICENSE.txt index bc2737b2..9701c5df 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,4 +1,4 @@ -Copyright (C) 2017 Jakob Nixdorf +Copyright (C) 2017-2018 Jakob Nixdorf Copyright (C) 2015 Bruno Bierbaumer Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/README.md b/README.md index ad791c7b..a68b053d 100644 --- a/README.md +++ b/README.md @@ -143,7 +143,7 @@ So make sure you have a **current backup** before switching! ## License: ``` -Copyright (C) 2017 Jakob Nixdorf +Copyright (C) 2017-2018 Jakob Nixdorf Copyright (C) 2015 Bruno Bierbaumer Permission is hereby granted, free of charge, to any person obtaining a copy of diff --git a/app/src/androidTest/java/org/shadowice/flocke/andotp/ApplicationTest.java b/app/src/androidTest/java/org/shadowice/flocke/andotp/ApplicationTest.java index 07398d2c..7c9e0b8a 100644 --- a/app/src/androidTest/java/org/shadowice/flocke/andotp/ApplicationTest.java +++ b/app/src/androidTest/java/org/shadowice/flocke/andotp/ApplicationTest.java @@ -1,4 +1,5 @@ /* + * Copyright (C) 2017-2018 Jakob Nixdorf * Copyright (C) 2015 Bruno Bierbaumer * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/src/androidTest/java/org/shadowice/flocke/andotp/Utilities/ToolsTest.java b/app/src/androidTest/java/org/shadowice/flocke/andotp/Utilities/ToolsTest.java index 355e15c9..08debff2 100644 --- a/app/src/androidTest/java/org/shadowice/flocke/andotp/Utilities/ToolsTest.java +++ b/app/src/androidTest/java/org/shadowice/flocke/andotp/Utilities/ToolsTest.java @@ -1,3 +1,26 @@ +/* + * Copyright (C) 2018 Jakob Nixdorf + * Copyright (C) 2018 Daniel Weigl + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ + package org.shadowice.flocke.andotp.Utilities; import junit.framework.TestCase; diff --git a/app/src/main/java/org/shadowice/flocke/andotp/Activities/AboutActivity.java b/app/src/main/java/org/shadowice/flocke/andotp/Activities/AboutActivity.java index 2d34136f..7afd764d 100644 --- a/app/src/main/java/org/shadowice/flocke/andotp/Activities/AboutActivity.java +++ b/app/src/main/java/org/shadowice/flocke/andotp/Activities/AboutActivity.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2017 Jakob Nixdorf + * Copyright (C) 2017-2018 Jakob Nixdorf * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/app/src/main/java/org/shadowice/flocke/andotp/Activities/AuthenticateActivity.java b/app/src/main/java/org/shadowice/flocke/andotp/Activities/AuthenticateActivity.java index 577d11bc..6f89dc6a 100644 --- a/app/src/main/java/org/shadowice/flocke/andotp/Activities/AuthenticateActivity.java +++ b/app/src/main/java/org/shadowice/flocke/andotp/Activities/AuthenticateActivity.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2017 Jakob Nixdorf + * Copyright (C) 2017-2018 Jakob Nixdorf * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/app/src/main/java/org/shadowice/flocke/andotp/Activities/BackupActivity.java b/app/src/main/java/org/shadowice/flocke/andotp/Activities/BackupActivity.java index bf71b861..6b7e8444 100644 --- a/app/src/main/java/org/shadowice/flocke/andotp/Activities/BackupActivity.java +++ b/app/src/main/java/org/shadowice/flocke/andotp/Activities/BackupActivity.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2017 Jakob Nixdorf + * Copyright (C) 2017-2018 Jakob Nixdorf * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/app/src/main/java/org/shadowice/flocke/andotp/Activities/BaseActivity.java b/app/src/main/java/org/shadowice/flocke/andotp/Activities/BaseActivity.java index 77b1c7ee..30d11540 100644 --- a/app/src/main/java/org/shadowice/flocke/andotp/Activities/BaseActivity.java +++ b/app/src/main/java/org/shadowice/flocke/andotp/Activities/BaseActivity.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2017 Jakob Nixdorf + * Copyright (C) 2017-2018 Jakob Nixdorf * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/app/src/main/java/org/shadowice/flocke/andotp/Activities/MainActivity.java b/app/src/main/java/org/shadowice/flocke/andotp/Activities/MainActivity.java index 4549f81e..45b2c3bc 100644 --- a/app/src/main/java/org/shadowice/flocke/andotp/Activities/MainActivity.java +++ b/app/src/main/java/org/shadowice/flocke/andotp/Activities/MainActivity.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2017 Jakob Nixdorf + * Copyright (C) 2017-2018 Jakob Nixdorf * Copyright (C) 2015 Bruno Bierbaumer * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/src/main/java/org/shadowice/flocke/andotp/Activities/PanicResponderActivity.java b/app/src/main/java/org/shadowice/flocke/andotp/Activities/PanicResponderActivity.java index 9b999c11..37d3063d 100644 --- a/app/src/main/java/org/shadowice/flocke/andotp/Activities/PanicResponderActivity.java +++ b/app/src/main/java/org/shadowice/flocke/andotp/Activities/PanicResponderActivity.java @@ -1,4 +1,5 @@ /* + * Copyright (C) 2017-2018 Jakob Nixdorf * Copyright (C) 2017 Carlos Melero * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/src/main/java/org/shadowice/flocke/andotp/Activities/SettingsActivity.java b/app/src/main/java/org/shadowice/flocke/andotp/Activities/SettingsActivity.java index 0dab5cef..5f503514 100644 --- a/app/src/main/java/org/shadowice/flocke/andotp/Activities/SettingsActivity.java +++ b/app/src/main/java/org/shadowice/flocke/andotp/Activities/SettingsActivity.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2017 Jakob Nixdorf + * Copyright (C) 2017-2018 Jakob Nixdorf * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/app/src/main/java/org/shadowice/flocke/andotp/Activities/ThemedActivity.java b/app/src/main/java/org/shadowice/flocke/andotp/Activities/ThemedActivity.java index f02bddb7..09c2e9c0 100644 --- a/app/src/main/java/org/shadowice/flocke/andotp/Activities/ThemedActivity.java +++ b/app/src/main/java/org/shadowice/flocke/andotp/Activities/ThemedActivity.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2017 Jakob Nixdorf + * Copyright (C) 2017-2018 Jakob Nixdorf * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/app/src/main/java/org/shadowice/flocke/andotp/Database/Entry.java b/app/src/main/java/org/shadowice/flocke/andotp/Database/Entry.java index 51fe31e8..8080c226 100644 --- a/app/src/main/java/org/shadowice/flocke/andotp/Database/Entry.java +++ b/app/src/main/java/org/shadowice/flocke/andotp/Database/Entry.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2017 Jakob Nixdorf + * Copyright (C) 2017-2018 Jakob Nixdorf * Copyright (C) 2015 Bruno Bierbaumer * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/src/main/java/org/shadowice/flocke/andotp/Preferences/CredentialsPreference.java b/app/src/main/java/org/shadowice/flocke/andotp/Preferences/CredentialsPreference.java index 51b718a0..0b61bc44 100644 --- a/app/src/main/java/org/shadowice/flocke/andotp/Preferences/CredentialsPreference.java +++ b/app/src/main/java/org/shadowice/flocke/andotp/Preferences/CredentialsPreference.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2017 Jakob Nixdorf + * Copyright (C) 2017-2018 Jakob Nixdorf * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/app/src/main/java/org/shadowice/flocke/andotp/Preferences/PasswordEncryptedPreference.java b/app/src/main/java/org/shadowice/flocke/andotp/Preferences/PasswordEncryptedPreference.java index b287e39a..db5cb2cd 100644 --- a/app/src/main/java/org/shadowice/flocke/andotp/Preferences/PasswordEncryptedPreference.java +++ b/app/src/main/java/org/shadowice/flocke/andotp/Preferences/PasswordEncryptedPreference.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2017 Jakob Nixdorf + * Copyright (C) 2017-2018 Jakob Nixdorf * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/app/src/main/java/org/shadowice/flocke/andotp/Receivers/BackupBroadcastReceiver.java b/app/src/main/java/org/shadowice/flocke/andotp/Receivers/BackupBroadcastReceiver.java index d3683a59..3c80b6e4 100644 --- a/app/src/main/java/org/shadowice/flocke/andotp/Receivers/BackupBroadcastReceiver.java +++ b/app/src/main/java/org/shadowice/flocke/andotp/Receivers/BackupBroadcastReceiver.java @@ -1,5 +1,27 @@ -package org.shadowice.flocke.andotp.Receivers; +/* + * Copyright (C) 2018 Jakob Nixdorf + * Copyright (C) 2018 Richy HBM + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ +package org.shadowice.flocke.andotp.Receivers; import android.Manifest; import android.app.NotificationChannel; diff --git a/app/src/main/java/org/shadowice/flocke/andotp/Receivers/EncryptedBackupBroadcastReceiver.java b/app/src/main/java/org/shadowice/flocke/andotp/Receivers/EncryptedBackupBroadcastReceiver.java index 1c55e263..e6232dc8 100644 --- a/app/src/main/java/org/shadowice/flocke/andotp/Receivers/EncryptedBackupBroadcastReceiver.java +++ b/app/src/main/java/org/shadowice/flocke/andotp/Receivers/EncryptedBackupBroadcastReceiver.java @@ -1,3 +1,26 @@ +/* + * Copyright (C) 2018 Jakob Nixdorf + * Copyright (C) 2018 Richy HBM + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ + package org.shadowice.flocke.andotp.Receivers; import android.content.Context; diff --git a/app/src/main/java/org/shadowice/flocke/andotp/Receivers/PlainTextBackupBroadcastReceiver.java b/app/src/main/java/org/shadowice/flocke/andotp/Receivers/PlainTextBackupBroadcastReceiver.java index 87bfc827..765a3025 100644 --- a/app/src/main/java/org/shadowice/flocke/andotp/Receivers/PlainTextBackupBroadcastReceiver.java +++ b/app/src/main/java/org/shadowice/flocke/andotp/Receivers/PlainTextBackupBroadcastReceiver.java @@ -1,3 +1,26 @@ +/* + * Copyright (C) 2018 Jakob Nixdorf + * Copyright (C) 2018 Richy HBM + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ + package org.shadowice.flocke.andotp.Receivers; import android.content.Context; diff --git a/app/src/main/java/org/shadowice/flocke/andotp/Utilities/BackupAgent.java b/app/src/main/java/org/shadowice/flocke/andotp/Utilities/BackupAgent.java index 0ce60fb9..ead9e95f 100644 --- a/app/src/main/java/org/shadowice/flocke/andotp/Utilities/BackupAgent.java +++ b/app/src/main/java/org/shadowice/flocke/andotp/Utilities/BackupAgent.java @@ -1,3 +1,26 @@ +/* + * Copyright (C) 2018 Jakob Nixdorf + * Copyright (C) 2018 Richy HBM + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ + package org.shadowice.flocke.andotp.Utilities; import android.app.backup.BackupAgentHelper; diff --git a/app/src/main/java/org/shadowice/flocke/andotp/Utilities/Constants.java b/app/src/main/java/org/shadowice/flocke/andotp/Utilities/Constants.java index 3d114f38..8d5b142b 100644 --- a/app/src/main/java/org/shadowice/flocke/andotp/Utilities/Constants.java +++ b/app/src/main/java/org/shadowice/flocke/andotp/Utilities/Constants.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2017 Jakob Nixdorf + * Copyright (C) 2017-2018 Jakob Nixdorf * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/app/src/main/java/org/shadowice/flocke/andotp/Utilities/DatabaseHelper.java b/app/src/main/java/org/shadowice/flocke/andotp/Utilities/DatabaseHelper.java index 3cdab73a..05db3379 100644 --- a/app/src/main/java/org/shadowice/flocke/andotp/Utilities/DatabaseHelper.java +++ b/app/src/main/java/org/shadowice/flocke/andotp/Utilities/DatabaseHelper.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2017 Jakob Nixdorf + * Copyright (C) 2017-2018 Jakob Nixdorf * Copyright (C) 2015 Bruno Bierbaumer * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/src/main/java/org/shadowice/flocke/andotp/Utilities/DimensionConverter.java b/app/src/main/java/org/shadowice/flocke/andotp/Utilities/DimensionConverter.java index 3a22639f..07b24711 100644 --- a/app/src/main/java/org/shadowice/flocke/andotp/Utilities/DimensionConverter.java +++ b/app/src/main/java/org/shadowice/flocke/andotp/Utilities/DimensionConverter.java @@ -1,3 +1,26 @@ +/* + * Copyright (C) 2017-2018 Jakob Nixdorf + * Copyright (C) 2017-2018 Richy HBM + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ + package org.shadowice.flocke.andotp.Utilities; import android.util.DisplayMetrics; diff --git a/app/src/main/java/org/shadowice/flocke/andotp/Utilities/EncryptionHelper.java b/app/src/main/java/org/shadowice/flocke/andotp/Utilities/EncryptionHelper.java index fa6628ec..81c3209c 100644 --- a/app/src/main/java/org/shadowice/flocke/andotp/Utilities/EncryptionHelper.java +++ b/app/src/main/java/org/shadowice/flocke/andotp/Utilities/EncryptionHelper.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2017 Jakob Nixdorf + * Copyright (C) 2017-2018 Jakob Nixdorf * Copyright (C) 2015 Bruno Bierbaumer * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/src/main/java/org/shadowice/flocke/andotp/Utilities/EntryThumbnail.java b/app/src/main/java/org/shadowice/flocke/andotp/Utilities/EntryThumbnail.java index 4fa162d6..ad8a0e80 100644 --- a/app/src/main/java/org/shadowice/flocke/andotp/Utilities/EntryThumbnail.java +++ b/app/src/main/java/org/shadowice/flocke/andotp/Utilities/EntryThumbnail.java @@ -1,3 +1,26 @@ +/* + * Copyright (C) 2017-2018 Jakob Nixdorf + * Copyright (C) 2017-2018 Richy HBM + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ + package org.shadowice.flocke.andotp.Utilities; import android.content.Context; diff --git a/app/src/main/java/org/shadowice/flocke/andotp/Utilities/FileHelper.java b/app/src/main/java/org/shadowice/flocke/andotp/Utilities/FileHelper.java index 4b9e053c..369b0000 100644 --- a/app/src/main/java/org/shadowice/flocke/andotp/Utilities/FileHelper.java +++ b/app/src/main/java/org/shadowice/flocke/andotp/Utilities/FileHelper.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2017 Jakob Nixdorf + * Copyright (C) 2017-2018 Jakob Nixdorf * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/app/src/main/java/org/shadowice/flocke/andotp/Utilities/KeyStoreHelper.java b/app/src/main/java/org/shadowice/flocke/andotp/Utilities/KeyStoreHelper.java index 05b275e3..e2a13dfe 100644 --- a/app/src/main/java/org/shadowice/flocke/andotp/Utilities/KeyStoreHelper.java +++ b/app/src/main/java/org/shadowice/flocke/andotp/Utilities/KeyStoreHelper.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2017 Jakob Nixdorf + * Copyright (C) 2017-2018 Jakob Nixdorf * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/app/src/main/java/org/shadowice/flocke/andotp/Utilities/LetterBitmap.java b/app/src/main/java/org/shadowice/flocke/andotp/Utilities/LetterBitmap.java index 50fefb6d..8cb64565 100644 --- a/app/src/main/java/org/shadowice/flocke/andotp/Utilities/LetterBitmap.java +++ b/app/src/main/java/org/shadowice/flocke/andotp/Utilities/LetterBitmap.java @@ -1,3 +1,26 @@ +/* + * Copyright (C) 2017-2018 Jakob Nixdorf + * Copyright (C) 2017-2018 Richy HBM + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ + package org.shadowice.flocke.andotp.Utilities; import android.content.Context; diff --git a/app/src/main/java/org/shadowice/flocke/andotp/Utilities/NotificationHelper.java b/app/src/main/java/org/shadowice/flocke/andotp/Utilities/NotificationHelper.java index cb9c37d2..f4bdbf14 100644 --- a/app/src/main/java/org/shadowice/flocke/andotp/Utilities/NotificationHelper.java +++ b/app/src/main/java/org/shadowice/flocke/andotp/Utilities/NotificationHelper.java @@ -1,3 +1,26 @@ +/* + * Copyright (C) 2018 Jakob Nixdorf + * Copyright (C) 2018 Richy HBM + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ + package org.shadowice.flocke.andotp.Utilities; import android.app.NotificationChannel; diff --git a/app/src/main/java/org/shadowice/flocke/andotp/Utilities/SecretKeyWrapper.java b/app/src/main/java/org/shadowice/flocke/andotp/Utilities/SecretKeyWrapper.java index bf0b3c4b..78eed38f 100644 --- a/app/src/main/java/org/shadowice/flocke/andotp/Utilities/SecretKeyWrapper.java +++ b/app/src/main/java/org/shadowice/flocke/andotp/Utilities/SecretKeyWrapper.java @@ -1,4 +1,5 @@ /* + * Copyright (C) 2017-2018 Jakob Nixdorf * Copyright (C) 2013 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/app/src/main/java/org/shadowice/flocke/andotp/Utilities/Settings.java b/app/src/main/java/org/shadowice/flocke/andotp/Utilities/Settings.java index 2413b15c..7b8f47dc 100644 --- a/app/src/main/java/org/shadowice/flocke/andotp/Utilities/Settings.java +++ b/app/src/main/java/org/shadowice/flocke/andotp/Utilities/Settings.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2017 Jakob Nixdorf + * Copyright (C) 2017-2018 Jakob Nixdorf * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/app/src/main/java/org/shadowice/flocke/andotp/Utilities/TokenCalculator.java b/app/src/main/java/org/shadowice/flocke/andotp/Utilities/TokenCalculator.java index 9940f20b..95000848 100644 --- a/app/src/main/java/org/shadowice/flocke/andotp/Utilities/TokenCalculator.java +++ b/app/src/main/java/org/shadowice/flocke/andotp/Utilities/TokenCalculator.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2017 Jakob Nixdorf + * Copyright (C) 2017-2018 Jakob Nixdorf * Copyright (C) 2015 Bruno Bierbaumer * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/app/src/main/java/org/shadowice/flocke/andotp/Utilities/Tools.java b/app/src/main/java/org/shadowice/flocke/andotp/Utilities/Tools.java index ec5a7ba9..6680aea0 100644 --- a/app/src/main/java/org/shadowice/flocke/andotp/Utilities/Tools.java +++ b/app/src/main/java/org/shadowice/flocke/andotp/Utilities/Tools.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2017 Jakob Nixdorf + * Copyright (C) 2017-2018 Jakob Nixdorf * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/app/src/main/java/org/shadowice/flocke/andotp/Utilities/UIHelper.java b/app/src/main/java/org/shadowice/flocke/andotp/Utilities/UIHelper.java index 89fa0407..6f8ee9b5 100644 --- a/app/src/main/java/org/shadowice/flocke/andotp/Utilities/UIHelper.java +++ b/app/src/main/java/org/shadowice/flocke/andotp/Utilities/UIHelper.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2017 Jakob Nixdorf + * Copyright (C) 2017-2018 Jakob Nixdorf * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/app/src/main/java/org/shadowice/flocke/andotp/View/EntriesCardAdapter.java b/app/src/main/java/org/shadowice/flocke/andotp/View/EntriesCardAdapter.java index f1f71d69..353d709b 100644 --- a/app/src/main/java/org/shadowice/flocke/andotp/View/EntriesCardAdapter.java +++ b/app/src/main/java/org/shadowice/flocke/andotp/View/EntriesCardAdapter.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2017 Jakob Nixdorf + * Copyright (C) 2017-2018 Jakob Nixdorf * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/app/src/main/java/org/shadowice/flocke/andotp/View/EntryViewHolder.java b/app/src/main/java/org/shadowice/flocke/andotp/View/EntryViewHolder.java index e83f94f6..499f9828 100644 --- a/app/src/main/java/org/shadowice/flocke/andotp/View/EntryViewHolder.java +++ b/app/src/main/java/org/shadowice/flocke/andotp/View/EntryViewHolder.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2017 Jakob Nixdorf + * Copyright (C) 2017-2018 Jakob Nixdorf * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/app/src/main/java/org/shadowice/flocke/andotp/View/FloatingActionMenu.java b/app/src/main/java/org/shadowice/flocke/andotp/View/FloatingActionMenu.java index f1b1baf2..b8b0dec0 100644 --- a/app/src/main/java/org/shadowice/flocke/andotp/View/FloatingActionMenu.java +++ b/app/src/main/java/org/shadowice/flocke/andotp/View/FloatingActionMenu.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2017 Jakob Nixdorf + * Copyright (C) 2017-2018 Jakob Nixdorf * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/app/src/main/java/org/shadowice/flocke/andotp/View/ManualEntryDialog.java b/app/src/main/java/org/shadowice/flocke/andotp/View/ManualEntryDialog.java index 97307cd4..4d49817f 100644 --- a/app/src/main/java/org/shadowice/flocke/andotp/View/ManualEntryDialog.java +++ b/app/src/main/java/org/shadowice/flocke/andotp/View/ManualEntryDialog.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2017 Jakob Nixdorf + * Copyright (C) 2017-2018 Jakob Nixdorf * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/app/src/main/java/org/shadowice/flocke/andotp/View/TagsAdapter.java b/app/src/main/java/org/shadowice/flocke/andotp/View/TagsAdapter.java index 1df7db73..70584141 100644 --- a/app/src/main/java/org/shadowice/flocke/andotp/View/TagsAdapter.java +++ b/app/src/main/java/org/shadowice/flocke/andotp/View/TagsAdapter.java @@ -1,6 +1,6 @@ /* - * Copyright (C) 2017 Jakob Nixdorf - * Copyright (C) 2017 RichyHBM + * Copyright (C) 2017-2018 Jakob Nixdorf + * Copyright (C) 2017-2018 RichyHBM * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/app/src/main/java/org/shadowice/flocke/andotp/View/TagsDialog.java b/app/src/main/java/org/shadowice/flocke/andotp/View/TagsDialog.java index 03ed43c9..cdea8d6c 100644 --- a/app/src/main/java/org/shadowice/flocke/andotp/View/TagsDialog.java +++ b/app/src/main/java/org/shadowice/flocke/andotp/View/TagsDialog.java @@ -1,6 +1,6 @@ /* - * Copyright (C) 2017 Jakob Nixdorf - * Copyright (C) 2017 RichyHBM + * Copyright (C) 2017-2018 Jakob Nixdorf + * Copyright (C) 2017-2018 RichyHBM * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/app/src/main/java/org/shadowice/flocke/andotp/View/ThumbnailSelectionAdapter.java b/app/src/main/java/org/shadowice/flocke/andotp/View/ThumbnailSelectionAdapter.java index f9f9af15..f1fc0cd7 100644 --- a/app/src/main/java/org/shadowice/flocke/andotp/View/ThumbnailSelectionAdapter.java +++ b/app/src/main/java/org/shadowice/flocke/andotp/View/ThumbnailSelectionAdapter.java @@ -1,3 +1,26 @@ +/* + * Copyright (C) 2017-2018 Jakob Nixdorf + * Copyright (C) 2017-2018 Richy HBM + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ + package org.shadowice.flocke.andotp.View; import android.content.Context;