Skip to content

Commit 2ae178c

Browse files
author
Hüseyin Uslu
committed
Merge pull request #406 from CoiniumServ/develop
sync 0.1.4-alpha to master
2 parents 1f3078d + cd684cf commit 2ae178c

File tree

5 files changed

+15
-13
lines changed

5 files changed

+15
-13
lines changed

Changelog.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
##### [v0.1.3 alpha - Piri Reis](https://github.com/CoiniumServ/CoiniumServ/releases/tag/v0.1.3-alpha) - 03.09.2014
1+
##### [v0.1.4 alpha](https://github.com/CoiniumServ/CoiniumServ/releases/tag/v0.1.4-alpha) - 03.09.2014
2+
3+
**Storage**
4+
* Downgraded csredis package at it was causing problems with mono.
5+
6+
##### [v0.1.3 alpha](https://github.com/CoiniumServ/CoiniumServ/releases/tag/v0.1.3-alpha) - 03.09.2014
27

38
**Storage**
49
* Implemented storage layers support; hybrid-storage (redis+mysql) and mpos compatibility (mysql).
@@ -23,13 +28,13 @@
2328
* File path handling improvements.
2429
* Fixed app.config.
2530

26-
##### [v0.1.2 alpha - Piri Reis](https://github.com/CoiniumServ/CoiniumServ/releases/tag/v0.1.2-alpha) - 14.08.2014
31+
##### [v0.1.2 alpha](https://github.com/CoiniumServ/CoiniumServ/releases/tag/v0.1.2-alpha) - 14.08.2014
2732

2833
**Payments**
2934
* Fixed a major bug in payment processor which was preventing payments to miners.
3035
* Fixed a bug in statistics manager.
3136

32-
##### [v0.1.1 alpha - Piri Reis](https://github.com/CoiniumServ/CoiniumServ/releases/tag/v0.1.1-alpha) - 10.08.2014
37+
##### [v0.1.1 alpha](https://github.com/CoiniumServ/CoiniumServ/releases/tag/v0.1.1-alpha) - 10.08.2014
3338
**Mining**
3439
* Improved SocketServiceContext and removed unnecessary overhead.
3540
* New block found message is no more sent to miners as the miner software can already determine itself.
@@ -53,6 +58,6 @@
5358
* Double.parse() and float.parse() calls will now correctly use CultureInfo.InvariantCulture - basically fixing potential problems with non en-US systems.
5459

5560

56-
##### [v0.1.0 alpha - Piri Reis](https://github.com/CoiniumServ/CoiniumServ/releases/tag/v0.1.0-alpha) - 08.08.2014
61+
##### [v0.1.0 alpha](https://github.com/CoiniumServ/CoiniumServ/releases/tag/v0.1.0-alpha) - 08.08.2014
5762

5863
Initial release which is fully functional with a basic feature set.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ You can send tips and furher support the project or get tips for contributing by
5656

5757
### Status
5858

59-
[v0.1.3 alpha](https://github.com/CoiniumServ/CoiniumServ/releases/tag/v0.1.3-alpha) released
59+
[v0.1.4 alpha](https://github.com/CoiniumServ/CoiniumServ/releases/tag/v0.1.4-alpha) released
6060

6161
### Features
6262

deps/csredis

Submodule csredis updated 55 files

src/CoiniumServ/Persistance/Providers/Redis/RedisProvider.cs

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ namespace CoiniumServ.Persistance.Providers.Redis
3030
{
3131
public class RedisProvider : IRedisProvider
3232
{
33-
public bool IsConnected { get { return Client.IsConnected; } }
33+
public bool IsConnected { get { return Client.Connected; } }
3434

3535
public RedisClient Client { get; private set; }
3636
private readonly Version _requiredMinimumVersion = new Version(2, 6);
@@ -52,14 +52,11 @@ private void Initialize()
5252
{
5353
try
5454
{
55-
// for mono compatibility, we need to define an endpoint.
56-
var endpoint = new IPEndPoint(IPAddress.Parse(_config.Host), _config.Port);
57-
5855
// create the connection
59-
Client = new RedisClient(endpoint)
56+
Client = new RedisClient(_config.Host, _config.Port)
6057
{
6158
ReconnectAttempts = 3,
62-
ReconnectWait = 200
59+
ReconnectTimeout = 200
6360
};
6461

6562
// select the database

src/CoiniumServ/Utils/Versions/VersionInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public static class Assembly
4141
/// <summary>
4242
/// Main assemby version.
4343
/// </summary>
44-
public const string Version = "0.1.3.*";
44+
public const string Version = "0.1.4.*";
4545
}
4646
}
4747
}

0 commit comments

Comments
 (0)