Skip to content

Commit

Permalink
2.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
orignal committed Aug 17, 2017
1 parent 309822d commit 390bb07
Show file tree
Hide file tree
Showing 8 changed files with 40 additions and 6 deletions.
14 changes: 14 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
# for this file format description,
# see https://github.com/olivierlacan/keep-a-changelog

## [2.15.0] - 2017-08-17
### Added
- QT GUI
- Ability to add and remove I2P tunnels without restart
- Ability to disable SOCKS outproxy option
### Changed
- Strip-out Accept-* hedaers in HTTP proxy
- Don't run peer test if nat=false
- Separate output of NTCP and SSU sessions in Transports tab
### Fixed
- Handle lines with comments in hosts.txt file for address book
- Run router with empty netdb for testnet
- Skip expired introducers by iexp

## [2.14.0] - 2017-06-01
### Added
- Transit traffic bandwidth limitation
Expand Down
2 changes: 1 addition & 1 deletion Win32/installer.iss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#define I2Pd_AppName "i2pd"
#define I2Pd_ver "2.14.0"
#define I2Pd_ver "2.15.0"
#define I2Pd_Publisher "PurpleI2P"

[Setup]
Expand Down
2 changes: 1 addition & 1 deletion android/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.purplei2p.i2pd"
android:versionCode="1"
android:versionName="2.14.0"
android:versionName="2.15.0"
android:installLocation="auto">
<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="25"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 2.14.{build}
version: 2.15.{build}
pull_requests:
do_not_increment_build_number: true
branches:
Expand Down
13 changes: 12 additions & 1 deletion contrib/rpm/i2pd.spec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
%define build_timestamp %(date +"%Y%m%d")

Name: i2pd
Version: 2.14.0
Version: 2.15.0
Release: %{build_timestamp}git%{?dist}
Summary: I2P router written in C++

Expand Down Expand Up @@ -103,6 +103,17 @@ getent passwd i2pd >/dev/null || \


%changelog
* Thu Aug 17 2017 orignal <[email protected]> - 2.15.0
- Added QT GUI
- Added ability add and remove I2P tunnels without restart
- Added ability to disable SOCKS outproxy option
- Changed strip-out Accept-* hedaers in HTTP proxy
- Changed peer test if nat=false
- Changed separate output of NTCP and SSU sessions in Transports tab
- Fixed handle lines with comments in hosts.txt file for address book
- Fixed run router with empty netdb for testnet
- Fixed skip expired introducers by iexp

* Thu Jun 01 2017 orignal <[email protected]> - 2.14.0
- Added transit traffic bandwidth limitation
- Added NTCP connections through HTTP and SOCKS proxies
Expand Down
9 changes: 9 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
i2pd (2.15.0-1) unstable; urgency=low

* updated to version 2.15.0/0.9.31
* updated debian/control
* renamed logrotate to i2pd.logrotate
* fixed init.d script

-- orignal <[email protected]> Thu, 17 Aug 2017 18:00:00 +0000

i2pd (2.14.0-1) unstable; urgency=low

* updated to version 2.14.0/0.9.30
Expand Down
2 changes: 1 addition & 1 deletion libi2pd/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#define MAKE_VERSION(a,b,c) STRINGIZE(a) "." STRINGIZE(b) "." STRINGIZE(c)

#define I2PD_VERSION_MAJOR 2
#define I2PD_VERSION_MINOR 14
#define I2PD_VERSION_MINOR 15
#define I2PD_VERSION_MICRO 0
#define I2PD_VERSION_PATCH 0
#define I2PD_VERSION MAKE_VERSION(I2PD_VERSION_MAJOR, I2PD_VERSION_MINOR, I2PD_VERSION_MICRO)
Expand Down
2 changes: 1 addition & 1 deletion qt/i2pd_qt/android/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0"?>
<manifest package="org.purplei2p.i2pd" xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="2.14.0" android:versionCode="2" android:installLocation="auto">
<manifest package="org.purplei2p.i2pd" xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="2.15.0" android:versionCode="2" android:installLocation="auto">
<uses-sdk android:minSdkVersion="11" android:targetSdkVersion="23"/>
<supports-screens android:largeScreens="true" android:normalScreens="true" android:anyDensity="true" android:smallScreens="true"/>
<!-- <application android:hardwareAccelerated="true" -->
Expand Down

3 comments on commit 390bb07

@r4sas
Copy link
Member

@r4sas r4sas commented on 390bb07 Aug 17, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@BOPOHA ping!

@BOPOHA
Copy link
Contributor

@BOPOHA BOPOHA commented on 390bb07 Aug 17, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i2pd version 2.15.0 (0.9.31) builded successfully: https://copr.fedorainfracloud.org/coprs/vorona/i2pd/build/591373/

@majestrate
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

AWE YEAH

Please sign in to comment.