From 40686861558cf30075b2ac15b76966c20319bc9b Mon Sep 17 00:00:00 2001 From: pacien Date: Wed, 1 Aug 2018 15:06:51 +0200 Subject: Add start year --- app/src/main/java/org/pacien/tincapp/activities/BaseActivity.kt | 2 +- app/src/main/java/org/pacien/tincapp/activities/ConfigureActivity.kt | 2 +- app/src/main/java/org/pacien/tincapp/activities/StartActivity.kt | 2 +- app/src/main/java/org/pacien/tincapp/activities/StatusActivity.kt | 2 +- app/src/main/java/org/pacien/tincapp/activities/ViewLogActivity.kt | 2 +- app/src/main/java/org/pacien/tincapp/commands/Command.kt | 2 +- app/src/main/java/org/pacien/tincapp/commands/Executor.kt | 2 +- app/src/main/java/org/pacien/tincapp/commands/Tinc.kt | 2 +- app/src/main/java/org/pacien/tincapp/commands/TincApp.kt | 2 +- app/src/main/java/org/pacien/tincapp/commands/Tincd.kt | 2 +- app/src/main/java/org/pacien/tincapp/context/App.kt | 2 +- app/src/main/java/org/pacien/tincapp/context/AppInfo.kt | 2 +- app/src/main/java/org/pacien/tincapp/context/AppLogger.kt | 2 +- app/src/main/java/org/pacien/tincapp/context/AppPaths.kt | 2 +- app/src/main/java/org/pacien/tincapp/context/CrashRecorder.kt | 2 +- app/src/main/java/org/pacien/tincapp/data/CidrAddress.kt | 2 +- app/src/main/java/org/pacien/tincapp/data/TincConfiguration.kt | 2 +- app/src/main/java/org/pacien/tincapp/data/VpnInterfaceConfiguration.kt | 2 +- app/src/main/java/org/pacien/tincapp/extensions/Android.kt | 2 +- app/src/main/java/org/pacien/tincapp/extensions/ApacheConfiguration.kt | 2 +- app/src/main/java/org/pacien/tincapp/extensions/Java.kt | 2 +- app/src/main/java/org/pacien/tincapp/extensions/VpnServiceBuilder.kt | 2 +- app/src/main/java/org/pacien/tincapp/intent/Actions.kt | 2 +- app/src/main/java/org/pacien/tincapp/intent/BroadcastMapper.kt | 2 +- app/src/main/java/org/pacien/tincapp/service/TincVpnService.kt | 2 +- app/src/main/java/org/pacien/tincapp/utils/PemUtils.kt | 2 +- app/src/main/java/org/pacien/tincapp/utils/TincKeyring.kt | 2 +- 27 files changed, 27 insertions(+), 27 deletions(-) (limited to 'app/src/main/java') diff --git a/app/src/main/java/org/pacien/tincapp/activities/BaseActivity.kt b/app/src/main/java/org/pacien/tincapp/activities/BaseActivity.kt index 9581cb3..7b9c202 100644 --- a/app/src/main/java/org/pacien/tincapp/activities/BaseActivity.kt +++ b/app/src/main/java/org/pacien/tincapp/activities/BaseActivity.kt @@ -1,6 +1,6 @@ /* * tinc app, an Android binding and user interface for the tinc mesh VPN daemon - * Copyright (C) 2018 Pacien TRAN-GIRARD + * Copyright (C) 2017-2018 Pacien TRAN-GIRARD * * 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 diff --git a/app/src/main/java/org/pacien/tincapp/activities/ConfigureActivity.kt b/app/src/main/java/org/pacien/tincapp/activities/ConfigureActivity.kt index 6a7b4fe..45a29bf 100644 --- a/app/src/main/java/org/pacien/tincapp/activities/ConfigureActivity.kt +++ b/app/src/main/java/org/pacien/tincapp/activities/ConfigureActivity.kt @@ -1,6 +1,6 @@ /* * tinc app, an Android binding and user interface for the tinc mesh VPN daemon - * Copyright (C) 2018 Pacien TRAN-GIRARD + * Copyright (C) 2017-2018 Pacien TRAN-GIRARD * * 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 diff --git a/app/src/main/java/org/pacien/tincapp/activities/StartActivity.kt b/app/src/main/java/org/pacien/tincapp/activities/StartActivity.kt index 987ee82..c775618 100644 --- a/app/src/main/java/org/pacien/tincapp/activities/StartActivity.kt +++ b/app/src/main/java/org/pacien/tincapp/activities/StartActivity.kt @@ -1,6 +1,6 @@ /* * tinc app, an Android binding and user interface for the tinc mesh VPN daemon - * Copyright (C) 2018 Pacien TRAN-GIRARD + * Copyright (C) 2017-2018 Pacien TRAN-GIRARD * * 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 diff --git a/app/src/main/java/org/pacien/tincapp/activities/StatusActivity.kt b/app/src/main/java/org/pacien/tincapp/activities/StatusActivity.kt index 3ffc108..8ea62cb 100644 --- a/app/src/main/java/org/pacien/tincapp/activities/StatusActivity.kt +++ b/app/src/main/java/org/pacien/tincapp/activities/StatusActivity.kt @@ -1,6 +1,6 @@ /* * tinc app, an Android binding and user interface for the tinc mesh VPN daemon - * Copyright (C) 2018 Pacien TRAN-GIRARD + * Copyright (C) 2017-2018 Pacien TRAN-GIRARD * * 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 diff --git a/app/src/main/java/org/pacien/tincapp/activities/ViewLogActivity.kt b/app/src/main/java/org/pacien/tincapp/activities/ViewLogActivity.kt index 6f3ea81..225d3e7 100644 --- a/app/src/main/java/org/pacien/tincapp/activities/ViewLogActivity.kt +++ b/app/src/main/java/org/pacien/tincapp/activities/ViewLogActivity.kt @@ -1,6 +1,6 @@ /* * tinc app, an Android binding and user interface for the tinc mesh VPN daemon - * Copyright (C) 2018 Pacien TRAN-GIRARD + * Copyright (C) 2017-2018 Pacien TRAN-GIRARD * * 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 diff --git a/app/src/main/java/org/pacien/tincapp/commands/Command.kt b/app/src/main/java/org/pacien/tincapp/commands/Command.kt index 0b5380f..cecdd9e 100644 --- a/app/src/main/java/org/pacien/tincapp/commands/Command.kt +++ b/app/src/main/java/org/pacien/tincapp/commands/Command.kt @@ -1,6 +1,6 @@ /* * tinc app, an Android binding and user interface for the tinc mesh VPN daemon - * Copyright (C) 2018 Pacien TRAN-GIRARD + * Copyright (C) 2017-2018 Pacien TRAN-GIRARD * * 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 diff --git a/app/src/main/java/org/pacien/tincapp/commands/Executor.kt b/app/src/main/java/org/pacien/tincapp/commands/Executor.kt index a4e2bd5..6fe7c4c 100644 --- a/app/src/main/java/org/pacien/tincapp/commands/Executor.kt +++ b/app/src/main/java/org/pacien/tincapp/commands/Executor.kt @@ -1,6 +1,6 @@ /* * tinc app, an Android binding and user interface for the tinc mesh VPN daemon - * Copyright (C) 2018 Pacien TRAN-GIRARD + * Copyright (C) 2017-2018 Pacien TRAN-GIRARD * * 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 diff --git a/app/src/main/java/org/pacien/tincapp/commands/Tinc.kt b/app/src/main/java/org/pacien/tincapp/commands/Tinc.kt index a538fb2..8bf9754 100644 --- a/app/src/main/java/org/pacien/tincapp/commands/Tinc.kt +++ b/app/src/main/java/org/pacien/tincapp/commands/Tinc.kt @@ -1,6 +1,6 @@ /* * tinc app, an Android binding and user interface for the tinc mesh VPN daemon - * Copyright (C) 2018 Pacien TRAN-GIRARD + * Copyright (C) 2017-2018 Pacien TRAN-GIRARD * * 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 diff --git a/app/src/main/java/org/pacien/tincapp/commands/TincApp.kt b/app/src/main/java/org/pacien/tincapp/commands/TincApp.kt index ea56017..6d60e6f 100644 --- a/app/src/main/java/org/pacien/tincapp/commands/TincApp.kt +++ b/app/src/main/java/org/pacien/tincapp/commands/TincApp.kt @@ -1,6 +1,6 @@ /* * tinc app, an Android binding and user interface for the tinc mesh VPN daemon - * Copyright (C) 2018 Pacien TRAN-GIRARD + * Copyright (C) 2017-2018 Pacien TRAN-GIRARD * * 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 diff --git a/app/src/main/java/org/pacien/tincapp/commands/Tincd.kt b/app/src/main/java/org/pacien/tincapp/commands/Tincd.kt index 52715cd..86d2583 100644 --- a/app/src/main/java/org/pacien/tincapp/commands/Tincd.kt +++ b/app/src/main/java/org/pacien/tincapp/commands/Tincd.kt @@ -1,6 +1,6 @@ /* * tinc app, an Android binding and user interface for the tinc mesh VPN daemon - * Copyright (C) 2018 Pacien TRAN-GIRARD + * Copyright (C) 2017-2018 Pacien TRAN-GIRARD * * 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 diff --git a/app/src/main/java/org/pacien/tincapp/context/App.kt b/app/src/main/java/org/pacien/tincapp/context/App.kt index b70a01f..89d1c73 100644 --- a/app/src/main/java/org/pacien/tincapp/context/App.kt +++ b/app/src/main/java/org/pacien/tincapp/context/App.kt @@ -1,6 +1,6 @@ /* * tinc app, an Android binding and user interface for the tinc mesh VPN daemon - * Copyright (C) 2018 Pacien TRAN-GIRARD + * Copyright (C) 2017-2018 Pacien TRAN-GIRARD * * 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 diff --git a/app/src/main/java/org/pacien/tincapp/context/AppInfo.kt b/app/src/main/java/org/pacien/tincapp/context/AppInfo.kt index a95e790..a7f5439 100644 --- a/app/src/main/java/org/pacien/tincapp/context/AppInfo.kt +++ b/app/src/main/java/org/pacien/tincapp/context/AppInfo.kt @@ -1,6 +1,6 @@ /* * tinc app, an Android binding and user interface for the tinc mesh VPN daemon - * Copyright (C) 2018 Pacien TRAN-GIRARD + * Copyright (C) 2017-2018 Pacien TRAN-GIRARD * * 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 diff --git a/app/src/main/java/org/pacien/tincapp/context/AppLogger.kt b/app/src/main/java/org/pacien/tincapp/context/AppLogger.kt index 3eae9de..6e2adcc 100644 --- a/app/src/main/java/org/pacien/tincapp/context/AppLogger.kt +++ b/app/src/main/java/org/pacien/tincapp/context/AppLogger.kt @@ -1,6 +1,6 @@ /* * tinc app, an Android binding and user interface for the tinc mesh VPN daemon - * Copyright (C) 2018 Pacien TRAN-GIRARD + * Copyright (C) 2017-2018 Pacien TRAN-GIRARD * * 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 diff --git a/app/src/main/java/org/pacien/tincapp/context/AppPaths.kt b/app/src/main/java/org/pacien/tincapp/context/AppPaths.kt index 2c9cfb1..ca9e03b 100644 --- a/app/src/main/java/org/pacien/tincapp/context/AppPaths.kt +++ b/app/src/main/java/org/pacien/tincapp/context/AppPaths.kt @@ -1,6 +1,6 @@ /* * tinc app, an Android binding and user interface for the tinc mesh VPN daemon - * Copyright (C) 2018 Pacien TRAN-GIRARD + * Copyright (C) 2017-2018 Pacien TRAN-GIRARD * * 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 diff --git a/app/src/main/java/org/pacien/tincapp/context/CrashRecorder.kt b/app/src/main/java/org/pacien/tincapp/context/CrashRecorder.kt index ddfb901..720fc13 100644 --- a/app/src/main/java/org/pacien/tincapp/context/CrashRecorder.kt +++ b/app/src/main/java/org/pacien/tincapp/context/CrashRecorder.kt @@ -1,6 +1,6 @@ /* * tinc app, an Android binding and user interface for the tinc mesh VPN daemon - * Copyright (C) 2018 Pacien TRAN-GIRARD + * Copyright (C) 2017-2018 Pacien TRAN-GIRARD * * 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 diff --git a/app/src/main/java/org/pacien/tincapp/data/CidrAddress.kt b/app/src/main/java/org/pacien/tincapp/data/CidrAddress.kt index fb16c8a..c6a9b1f 100644 --- a/app/src/main/java/org/pacien/tincapp/data/CidrAddress.kt +++ b/app/src/main/java/org/pacien/tincapp/data/CidrAddress.kt @@ -1,6 +1,6 @@ /* * tinc app, an Android binding and user interface for the tinc mesh VPN daemon - * Copyright (C) 2018 Pacien TRAN-GIRARD + * Copyright (C) 2017-2018 Pacien TRAN-GIRARD * * 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 diff --git a/app/src/main/java/org/pacien/tincapp/data/TincConfiguration.kt b/app/src/main/java/org/pacien/tincapp/data/TincConfiguration.kt index 7e62c88..0eee2eb 100644 --- a/app/src/main/java/org/pacien/tincapp/data/TincConfiguration.kt +++ b/app/src/main/java/org/pacien/tincapp/data/TincConfiguration.kt @@ -1,6 +1,6 @@ /* * tinc app, an Android binding and user interface for the tinc mesh VPN daemon - * Copyright (C) 2018 Pacien TRAN-GIRARD + * Copyright (C) 2017-2018 Pacien TRAN-GIRARD * * 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 diff --git a/app/src/main/java/org/pacien/tincapp/data/VpnInterfaceConfiguration.kt b/app/src/main/java/org/pacien/tincapp/data/VpnInterfaceConfiguration.kt index 0b73ee6..d903769 100644 --- a/app/src/main/java/org/pacien/tincapp/data/VpnInterfaceConfiguration.kt +++ b/app/src/main/java/org/pacien/tincapp/data/VpnInterfaceConfiguration.kt @@ -1,6 +1,6 @@ /* * tinc app, an Android binding and user interface for the tinc mesh VPN daemon - * Copyright (C) 2018 Pacien TRAN-GIRARD + * Copyright (C) 2017-2018 Pacien TRAN-GIRARD * * 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 diff --git a/app/src/main/java/org/pacien/tincapp/extensions/Android.kt b/app/src/main/java/org/pacien/tincapp/extensions/Android.kt index 85d78e3..6563e40 100644 --- a/app/src/main/java/org/pacien/tincapp/extensions/Android.kt +++ b/app/src/main/java/org/pacien/tincapp/extensions/Android.kt @@ -1,6 +1,6 @@ /* * tinc app, an Android binding and user interface for the tinc mesh VPN daemon - * Copyright (C) 2018 Pacien TRAN-GIRARD + * Copyright (C) 2017-2018 Pacien TRAN-GIRARD * * 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 diff --git a/app/src/main/java/org/pacien/tincapp/extensions/ApacheConfiguration.kt b/app/src/main/java/org/pacien/tincapp/extensions/ApacheConfiguration.kt index 28dab98..8632f88 100644 --- a/app/src/main/java/org/pacien/tincapp/extensions/ApacheConfiguration.kt +++ b/app/src/main/java/org/pacien/tincapp/extensions/ApacheConfiguration.kt @@ -1,6 +1,6 @@ /* * tinc app, an Android binding and user interface for the tinc mesh VPN daemon - * Copyright (C) 2018 Pacien TRAN-GIRARD + * Copyright (C) 2017-2018 Pacien TRAN-GIRARD * * 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 diff --git a/app/src/main/java/org/pacien/tincapp/extensions/Java.kt b/app/src/main/java/org/pacien/tincapp/extensions/Java.kt index bd03353..a4ad012 100644 --- a/app/src/main/java/org/pacien/tincapp/extensions/Java.kt +++ b/app/src/main/java/org/pacien/tincapp/extensions/Java.kt @@ -1,6 +1,6 @@ /* * tinc app, an Android binding and user interface for the tinc mesh VPN daemon - * Copyright (C) 2018 Pacien TRAN-GIRARD + * Copyright (C) 2017-2018 Pacien TRAN-GIRARD * * 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 diff --git a/app/src/main/java/org/pacien/tincapp/extensions/VpnServiceBuilder.kt b/app/src/main/java/org/pacien/tincapp/extensions/VpnServiceBuilder.kt index 943bc6f..94e47d6 100644 --- a/app/src/main/java/org/pacien/tincapp/extensions/VpnServiceBuilder.kt +++ b/app/src/main/java/org/pacien/tincapp/extensions/VpnServiceBuilder.kt @@ -1,6 +1,6 @@ /* * tinc app, an Android binding and user interface for the tinc mesh VPN daemon - * Copyright (C) 2018 Pacien TRAN-GIRARD + * Copyright (C) 2017-2018 Pacien TRAN-GIRARD * * 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 diff --git a/app/src/main/java/org/pacien/tincapp/intent/Actions.kt b/app/src/main/java/org/pacien/tincapp/intent/Actions.kt index b90ae3e..bc30a76 100644 --- a/app/src/main/java/org/pacien/tincapp/intent/Actions.kt +++ b/app/src/main/java/org/pacien/tincapp/intent/Actions.kt @@ -1,6 +1,6 @@ /* * tinc app, an Android binding and user interface for the tinc mesh VPN daemon - * Copyright (C) 2018 Pacien TRAN-GIRARD + * Copyright (C) 2017-2018 Pacien TRAN-GIRARD * * 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 diff --git a/app/src/main/java/org/pacien/tincapp/intent/BroadcastMapper.kt b/app/src/main/java/org/pacien/tincapp/intent/BroadcastMapper.kt index f9529c6..54cfc56 100644 --- a/app/src/main/java/org/pacien/tincapp/intent/BroadcastMapper.kt +++ b/app/src/main/java/org/pacien/tincapp/intent/BroadcastMapper.kt @@ -1,6 +1,6 @@ /* * tinc app, an Android binding and user interface for the tinc mesh VPN daemon - * Copyright (C) 2018 Pacien TRAN-GIRARD + * Copyright (C) 2017-2018 Pacien TRAN-GIRARD * * 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 diff --git a/app/src/main/java/org/pacien/tincapp/service/TincVpnService.kt b/app/src/main/java/org/pacien/tincapp/service/TincVpnService.kt index 99100ea..30d7c8b 100644 --- a/app/src/main/java/org/pacien/tincapp/service/TincVpnService.kt +++ b/app/src/main/java/org/pacien/tincapp/service/TincVpnService.kt @@ -1,6 +1,6 @@ /* * tinc app, an Android binding and user interface for the tinc mesh VPN daemon - * Copyright (C) 2018 Pacien TRAN-GIRARD + * Copyright (C) 2017-2018 Pacien TRAN-GIRARD * * 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 diff --git a/app/src/main/java/org/pacien/tincapp/utils/PemUtils.kt b/app/src/main/java/org/pacien/tincapp/utils/PemUtils.kt index 915caff..f71a5d7 100644 --- a/app/src/main/java/org/pacien/tincapp/utils/PemUtils.kt +++ b/app/src/main/java/org/pacien/tincapp/utils/PemUtils.kt @@ -1,6 +1,6 @@ /* * tinc app, an Android binding and user interface for the tinc mesh VPN daemon - * Copyright (C) 2018 Pacien TRAN-GIRARD + * Copyright (C) 2017-2018 Pacien TRAN-GIRARD * * 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 diff --git a/app/src/main/java/org/pacien/tincapp/utils/TincKeyring.kt b/app/src/main/java/org/pacien/tincapp/utils/TincKeyring.kt index 6468d24..f85be89 100644 --- a/app/src/main/java/org/pacien/tincapp/utils/TincKeyring.kt +++ b/app/src/main/java/org/pacien/tincapp/utils/TincKeyring.kt @@ -1,6 +1,6 @@ /* * tinc app, an Android binding and user interface for the tinc mesh VPN daemon - * Copyright (C) 2018 Pacien TRAN-GIRARD + * Copyright (C) 2017-2018 Pacien TRAN-GIRARD * * 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 -- cgit v1.2.3