diff --git a/ChangeLog b/ChangeLog
index 2ff1af50..2468f808 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -37,7 +37,7 @@
## [2.15.0] - 2017-08-17
### Added
-- QT GUI
+- QT GUI
- Ability to add and remove I2P tunnels without restart
- Ability to disable SOCKS outproxy option
### Changed
@@ -81,7 +81,7 @@
- Some stats in a main window for Windows version
### Changed
- Reseed servers list
-- MTU of 1488 for ipv6
+- MTU of 1488 for ipv6
- Android and Mac OS X versions use OpenSSL 1.1
- New logo for Android
### Fixed
@@ -111,7 +111,7 @@
## [2.10.2] - 2016-12-04
### Fixed
- Fixes UPnP discovery bug, producing excessive CPU usage
-- Fixes sudden SSU thread stop for Windows.
+- Fixes sudden SSU thread stop for Windows.
## [2.10.1] - 2016-11-07
### Fixed
diff --git a/Dockerfile b/Dockerfile
index 229d0d53..4931a709 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -13,13 +13,13 @@ RUN mkdir /user && adduser -S -h /user i2pd && chown -R i2pd:nobody /user
#
-# Each RUN is a layer, adding the dependencies and building i2pd in one layer takes around 8-900Mb, so to keep the
+# Each RUN is a layer, adding the dependencies and building i2pd in one layer takes around 8-900Mb, so to keep the
# image under 20mb we need to remove all the build dependencies in the same "RUN" / layer.
#
-# 1. install deps, clone and build.
-# 2. strip binaries.
-# 3. Purge all dependencies and other unrelated packages, including build directory.
+# 1. install deps, clone and build.
+# 2. strip binaries.
+# 3. Purge all dependencies and other unrelated packages, including build directory.
RUN apk --no-cache --virtual build-dependendencies add make gcc g++ libtool boost-dev build-base openssl-dev openssl git \
&& mkdir -p /tmp/build \
&& cd /tmp/build && git clone -b ${GIT_BRANCH} https://github.com/PurpleI2P/i2pd.git \
diff --git a/Makefile.homebrew b/Makefile.homebrew
index 287dea05..b3105c56 100644
--- a/Makefile.homebrew
+++ b/Makefile.homebrew
@@ -4,7 +4,7 @@ BOOSTROOT = ${BREWROOT}/opt/boost
SSLROOT = ${BREWROOT}/opt/libressl
UPNPROOT = ${BREWROOT}/opt/miniupnpc
CXXFLAGS = -g -Wall -std=c++11 -DMAC_OSX -Wno-overloaded-virtual
-INCFLAGS = -I${SSLROOT}/include -I${BOOSTROOT}/include
+INCFLAGS = -I${SSLROOT}/include -I${BOOSTROOT}/include
ifndef TRAVIS
CXX = clang++
diff --git a/Makefile.linux b/Makefile.linux
index e628b63c..22d02af3 100644
--- a/Makefile.linux
+++ b/Makefile.linux
@@ -12,7 +12,7 @@ INCFLAGS ?=
# detect proper flag for c++11 support by compilers
CXXVER := $(shell $(CXX) -dumpversion)
ifeq ($(shell expr match $(CXX) 'clang'),5)
- NEEDED_CXXFLAGS += -std=c++11
+ NEEDED_CXXFLAGS += -std=c++11
else ifeq ($(shell expr match ${CXXVER} "4\.[0-9][0-9]"),4) # gcc >= 4.10
NEEDED_CXXFLAGS += -std=c++11
else ifeq ($(shell expr match ${CXXVER} "4\.[7-9]"),3) # >= 4.7
diff --git a/Makefile.osx b/Makefile.osx
index f6a0847d..8bbf37f0 100644
--- a/Makefile.osx
+++ b/Makefile.osx
@@ -1,7 +1,7 @@
CXX = clang++
CXXFLAGS = -Os -Wall -std=c++11 -DMAC_OSX
#CXXFLAGS = -g -O2 -Wall -std=c++11
-INCFLAGS = -I/usr/local/include
+INCFLAGS = -I/usr/local/include
LDFLAGS = -Wl,-rpath,/usr/local/lib -L/usr/local/lib
ifeq ($(USE_STATIC),yes)
diff --git a/README.md b/README.md
index d5d7ceb9..546cea64 100644
--- a/README.md
+++ b/README.md
@@ -5,13 +5,13 @@ i2pd
i2pd (I2P Daemon) is a full-featured C++ implementation of I2P client.
-I2P (Invisible Internet Protocol) is a universal anonymous network layer.
+I2P (Invisible Internet Protocol) is a universal anonymous network layer.
All communications over I2P are anonymous and end-to-end encrypted, participants
-don't reveal their real IP addresses.
+don't reveal their real IP addresses.
-I2P client is a software used for building and using anonymous I2P
-networks. Such networks are commonly used for anonymous peer-to-peer
-applications (filesharing, cryptocurrencies) and anonymous client-server
+I2P client is a software used for building and using anonymous I2P
+networks. Such networks are commonly used for anonymous peer-to-peer
+applications (filesharing, cryptocurrencies) and anonymous client-server
applications (websites, instant messengers, chat-servers).
I2P allows people from all around the world to communicate and share information
@@ -38,9 +38,9 @@ Resources
Installing
----------
-The easiest way to install i2pd is by using
-[precompiled binaries](https://github.com/PurpleI2P/i2pd/releases/latest).
-See [documentation](https://i2pd.readthedocs.io/en/latest/) for how to build
+The easiest way to install i2pd is by using
+[precompiled binaries](https://github.com/PurpleI2P/i2pd/releases/latest).
+See [documentation](https://i2pd.readthedocs.io/en/latest/) for how to build
i2pd from source on your OS.
@@ -58,25 +58,25 @@ Build instructions:
* Windows - [![Build status](https://ci.appveyor.com/api/projects/status/1908qe4p48ff1x23?svg=true)](https://ci.appveyor.com/project/PurpleI2P/i2pd)
* Mac OS X - [![Build Status](https://travis-ci.org/PurpleI2P/i2pd.svg?branch=openssl)](https://travis-ci.org/PurpleI2P/i2pd)
* FreeBSD
-* Android
+* Android
* iOS
Using i2pd
----------
-See [documentation](https://i2pd.readthedocs.io/en/latest/user-guide/run/) and
+See [documentation](https://i2pd.readthedocs.io/en/latest/user-guide/run/) and
[example config file](https://github.com/PurpleI2P/i2pd/blob/openssl/contrib/i2pd.conf).
Donations
---------
-BTC: 1K7Ds6KUeR8ya287UC4rYTjvC96vXyZbDY
-ZEC: t1cTckLuXsr1dwVrK4NDzfhehss4NvMadAJ
-DASH: Xw8YUrQpYzP9tZBmbjqxS3M97Q7v3vJKUF
-LTC: LKQirrYrDeTuAPnpYq5y7LVKtywfkkHi59
-DOGE: DNXLQKziRPAsD9H3DFNjk4fLQrdaSX893Y
-ANC: AQJYweYYUqM1nVfLqfoSMpUMfzxvS4Xd7z
-GST: GbD2JSQHBHCKLa9WTHmigJRpyFgmBj4woG
+BTC: 1K7Ds6KUeR8ya287UC4rYTjvC96vXyZbDY
+ZEC: t1cTckLuXsr1dwVrK4NDzfhehss4NvMadAJ
+DASH: Xw8YUrQpYzP9tZBmbjqxS3M97Q7v3vJKUF
+LTC: LKQirrYrDeTuAPnpYq5y7LVKtywfkkHi59
+DOGE: DNXLQKziRPAsD9H3DFNjk4fLQrdaSX893Y
+ANC: AQJYweYYUqM1nVfLqfoSMpUMfzxvS4Xd7z
+GST: GbD2JSQHBHCKLa9WTHmigJRpyFgmBj4woG
License
-------
diff --git a/android/AndroidManifest.xml b/android/AndroidManifest.xml
index f175c0da..1f9d3b91 100755
--- a/android/AndroidManifest.xml
+++ b/android/AndroidManifest.xml
@@ -23,4 +23,4 @@
-
+
diff --git a/android/res/menu/options_main.xml b/android/res/menu/options_main.xml
index 388dfd83..f66caa2a 100644
--- a/android/res/menu/options_main.xml
+++ b/android/res/menu/options_main.xml
@@ -1,7 +1,7 @@
-