aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpacien2018-08-01 15:06:51 +0200
committerpacien2018-08-01 15:06:51 +0200
commit40686861558cf30075b2ac15b76966c20319bc9b (patch)
tree6d1c4a3a22ffe0c2a4e2c43ab34d6fbcaccd8775
parentc1a6357ce6e5f98f2ec98b97e0f1c51eef4378ea (diff)
downloadtincapp-40686861558cf30075b2ac15b76966c20319bc9b.tar.gz
Add start year
-rw-r--r--.gitignore2
-rw-r--r--app/.gitignore2
-rw-r--r--app/CMakeLists.txt2
-rw-r--r--app/build.gradle2
-rw-r--r--app/lint.xml2
-rw-r--r--app/proguard-rules.pro2
-rw-r--r--app/src/main/AndroidManifest.xml2
-rw-r--r--app/src/main/c/exec.c2
-rw-r--r--app/src/main/java/org/pacien/tincapp/activities/BaseActivity.kt2
-rw-r--r--app/src/main/java/org/pacien/tincapp/activities/ConfigureActivity.kt2
-rw-r--r--app/src/main/java/org/pacien/tincapp/activities/StartActivity.kt2
-rw-r--r--app/src/main/java/org/pacien/tincapp/activities/StatusActivity.kt2
-rw-r--r--app/src/main/java/org/pacien/tincapp/activities/ViewLogActivity.kt2
-rw-r--r--app/src/main/java/org/pacien/tincapp/commands/Command.kt2
-rw-r--r--app/src/main/java/org/pacien/tincapp/commands/Executor.kt2
-rw-r--r--app/src/main/java/org/pacien/tincapp/commands/Tinc.kt2
-rw-r--r--app/src/main/java/org/pacien/tincapp/commands/TincApp.kt2
-rw-r--r--app/src/main/java/org/pacien/tincapp/commands/Tincd.kt2
-rw-r--r--app/src/main/java/org/pacien/tincapp/context/App.kt2
-rw-r--r--app/src/main/java/org/pacien/tincapp/context/AppInfo.kt2
-rw-r--r--app/src/main/java/org/pacien/tincapp/context/AppLogger.kt2
-rw-r--r--app/src/main/java/org/pacien/tincapp/context/AppPaths.kt2
-rw-r--r--app/src/main/java/org/pacien/tincapp/context/CrashRecorder.kt2
-rw-r--r--app/src/main/java/org/pacien/tincapp/data/CidrAddress.kt2
-rw-r--r--app/src/main/java/org/pacien/tincapp/data/TincConfiguration.kt2
-rw-r--r--app/src/main/java/org/pacien/tincapp/data/VpnInterfaceConfiguration.kt2
-rw-r--r--app/src/main/java/org/pacien/tincapp/extensions/Android.kt2
-rw-r--r--app/src/main/java/org/pacien/tincapp/extensions/ApacheConfiguration.kt2
-rw-r--r--app/src/main/java/org/pacien/tincapp/extensions/Java.kt2
-rw-r--r--app/src/main/java/org/pacien/tincapp/extensions/VpnServiceBuilder.kt2
-rw-r--r--app/src/main/java/org/pacien/tincapp/intent/Actions.kt2
-rw-r--r--app/src/main/java/org/pacien/tincapp/intent/BroadcastMapper.kt2
-rw-r--r--app/src/main/java/org/pacien/tincapp/service/TincVpnService.kt2
-rw-r--r--app/src/main/java/org/pacien/tincapp/utils/PemUtils.kt2
-rw-r--r--app/src/main/java/org/pacien/tincapp/utils/TincKeyring.kt2
-rw-r--r--app/src/main/res/drawable/horizontal_line.xml2
-rw-r--r--app/src/main/res/drawable/ic_build_primary_24dp.xml2
-rw-r--r--app/src/main/res/drawable/ic_help_primary_24dp.xml2
-rw-r--r--app/src/main/res/drawable/ic_pause_circle_filled_primary_24dp.xml2
-rw-r--r--app/src/main/res/drawable/ic_pause_circle_outline_primary_24dp.xml2
-rw-r--r--app/src/main/res/drawable/ic_photo_camera_primary_24dp.xml2
-rw-r--r--app/src/main/res/drawable/ic_receipt_primary_24dp.xml2
-rw-r--r--app/src/main/res/drawable/ic_share_primary_24dp.xml2
-rw-r--r--app/src/main/res/drawable/ic_stop_primary_24dp.xml2
-rw-r--r--app/src/main/res/layout/base.xml2
-rw-r--r--app/src/main/res/layout/dialog_decrypt_keys.xml2
-rw-r--r--app/src/main/res/layout/dialog_encrypt_decrypt_keys.xml2
-rw-r--r--app/src/main/res/layout/dialog_network_generate.xml2
-rw-r--r--app/src/main/res/layout/dialog_network_join.xml2
-rw-r--r--app/src/main/res/layout/dialog_node_details.xml2
-rw-r--r--app/src/main/res/layout/fragment_list_item.xml2
-rw-r--r--app/src/main/res/layout/fragment_list_view.xml2
-rw-r--r--app/src/main/res/layout/fragment_network_list_header.xml2
-rw-r--r--app/src/main/res/layout/fragment_network_status_header.xml2
-rw-r--r--app/src/main/res/layout/page_configure.xml2
-rw-r--r--app/src/main/res/layout/page_viewlog.xml2
-rw-r--r--app/src/main/res/menu/menu_base.xml2
-rw-r--r--app/src/main/res/menu/menu_start.xml2
-rw-r--r--app/src/main/res/menu/menu_status.xml2
-rw-r--r--app/src/main/res/menu/menu_viewlog.xml2
-rw-r--r--app/src/main/res/raw/network.conf2
-rw-r--r--app/src/main/res/values-ja/strings.xml2
-rw-r--r--app/src/main/res/values-nb-rNO/strings.xml2
-rw-r--r--app/src/main/res/values-w600dp/dimens.xml2
-rw-r--r--app/src/main/res/values-w960dp/dimens.xml2
-rw-r--r--app/src/main/res/values-zh-rCN/strings.xml2
-rw-r--r--app/src/main/res/values-zh-rHK/strings.xml2
-rw-r--r--app/src/main/res/values-zh-rTW/strings.xml2
-rw-r--r--app/src/main/res/values/colors.xml2
-rw-r--r--app/src/main/res/values/dimens.xml2
-rw-r--r--app/src/main/res/values/strings.xml2
-rw-r--r--app/src/main/res/values/styles.xml2
-rw-r--r--build.gradle2
-rw-r--r--gradle.properties2
-rw-r--r--readme.md2
-rw-r--r--settings.gradle2
76 files changed, 76 insertions, 76 deletions
diff --git a/.gitignore b/.gitignore
index b731069..d7da40b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,5 +1,5 @@
1# tinc app, an Android binding and user interface for the tinc mesh VPN daemon 1# tinc app, an Android binding and user interface for the tinc mesh VPN daemon
2# Copyright (C) 2018 Pacien TRAN-GIRARD 2# Copyright (C) 2017-2018 Pacien TRAN-GIRARD
3# 3#
4# This program is free software: you can redistribute it and/or modify 4# This program is free software: you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by 5# it under the terms of the GNU General Public License as published by
diff --git a/app/.gitignore b/app/.gitignore
index cf95e35..1a06cfd 100644
--- a/app/.gitignore
+++ b/app/.gitignore
@@ -1,5 +1,5 @@
1# tinc app, an Android binding and user interface for the tinc mesh VPN daemon 1# tinc app, an Android binding and user interface for the tinc mesh VPN daemon
2# Copyright (C) 2018 Pacien TRAN-GIRARD 2# Copyright (C) 2017-2018 Pacien TRAN-GIRARD
3# 3#
4# This program is free software: you can redistribute it and/or modify 4# This program is free software: you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by 5# it under the terms of the GNU General Public License as published by
diff --git a/app/CMakeLists.txt b/app/CMakeLists.txt
index a5bf55c..9ed98a9 100644
--- a/app/CMakeLists.txt
+++ b/app/CMakeLists.txt
@@ -1,5 +1,5 @@
1# tinc app, an Android binding and user interface for the tinc mesh VPN daemon 1# tinc app, an Android binding and user interface for the tinc mesh VPN daemon
2# Copyright (C) 2018 Pacien TRAN-GIRARD 2# Copyright (C) 2017-2018 Pacien TRAN-GIRARD
3# 3#
4# This program is free software: you can redistribute it and/or modify 4# This program is free software: you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by 5# it under the terms of the GNU General Public License as published by
diff --git a/app/build.gradle b/app/build.gradle
index 4021040..ae1558c 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -1,6 +1,6 @@
1/* 1/*
2 * tinc app, an Android binding and user interface for the tinc mesh VPN daemon 2 * tinc app, an Android binding and user interface for the tinc mesh VPN daemon
3 * Copyright (C) 2018 Pacien TRAN-GIRARD 3 * Copyright (C) 2017-2018 Pacien TRAN-GIRARD
4 * 4 *
5 * This program is free software: you can redistribute it and/or modify 5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by 6 * it under the terms of the GNU General Public License as published by
diff --git a/app/lint.xml b/app/lint.xml
index d083bb9..d8deb7e 100644
--- a/app/lint.xml
+++ b/app/lint.xml
@@ -2,7 +2,7 @@
2 2
3<!-- 3<!--
4 * tinc app, an Android binding and user interface for the tinc mesh VPN daemon 4 * tinc app, an Android binding and user interface for the tinc mesh VPN daemon
5 * Copyright (C) 2018 Pacien TRAN-GIRARD 5 * Copyright (C) 2017-2018 Pacien TRAN-GIRARD
6 * 6 *
7 * This program is free software: you can redistribute it and/or modify 7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by 8 * it under the terms of the GNU General Public License as published by
diff --git a/app/proguard-rules.pro b/app/proguard-rules.pro
index 05449cd..666e9ab 100644
--- a/app/proguard-rules.pro
+++ b/app/proguard-rules.pro
@@ -1,5 +1,5 @@
1# tinc app, an Android binding and user interface for the tinc mesh VPN daemon 1# tinc app, an Android binding and user interface for the tinc mesh VPN daemon
2# Copyright (C) 2018 Pacien TRAN-GIRARD 2# Copyright (C) 2017-2018 Pacien TRAN-GIRARD
3# 3#
4# This program is free software: you can redistribute it and/or modify 4# This program is free software: you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by 5# it under the terms of the GNU General Public License as published by
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index ef446cd..bf8e9d7 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -2,7 +2,7 @@
2 2
3<!-- 3<!--
4 * tinc app, an Android binding and user interface for the tinc mesh VPN daemon 4 * tinc app, an Android binding and user interface for the tinc mesh VPN daemon
5 * Copyright (C) 2018 Pacien TRAN-GIRARD 5 * Copyright (C) 2017-2018 Pacien TRAN-GIRARD
6 * 6 *
7 * This program is free software: you can redistribute it and/or modify 7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by 8 * it under the terms of the GNU General Public License as published by
diff --git a/app/src/main/c/exec.c b/app/src/main/c/exec.c
index 2710376..838135c 100644
--- a/app/src/main/c/exec.c
+++ b/app/src/main/c/exec.c
@@ -1,6 +1,6 @@
1/* 1/*
2 * tinc app, an Android binding and user interface for the tinc mesh VPN daemon 2 * tinc app, an Android binding and user interface for the tinc mesh VPN daemon
3 * Copyright (C) 2018 Pacien TRAN-GIRARD 3 * Copyright (C) 2017-2018 Pacien TRAN-GIRARD
4 * 4 *
5 * This program is free software: you can redistribute it and/or modify 5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by 6 * it under the terms of the GNU General Public License as published by
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 @@
1/* 1/*
2 * tinc app, an Android binding and user interface for the tinc mesh VPN daemon 2 * tinc app, an Android binding and user interface for the tinc mesh VPN daemon
3 * Copyright (C) 2018 Pacien TRAN-GIRARD 3 * Copyright (C) 2017-2018 Pacien TRAN-GIRARD
4 * 4 *
5 * This program is free software: you can redistribute it and/or modify 5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by 6 * 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