Skip to content

Commit

Permalink
change default mixin to 3 + v3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ParsiCoin committed Sep 12, 2019
1 parent 2bf1aef commit 3c03ea7
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CryptoNoteWallet.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
set(CN_PROJECT_NAME "parsipay")
set(CN_CURRENCY_DISPLAY_NAME "ParsiCoin")
set(CN_CURRENCY_TICKER "PARS")
set(CN_VERSION 3.0.2)
set(CN_VERSION 3.1.0)
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,19 +24,25 @@ Alternatively, it may be possible to install them using a package manager.

Build on *nix :

```
git clone https://github.com/parsicoin/parsipay && cd parsipay && git clone https://github.com/parsicoin/parsicoin cryptonote
```

then : (tested on Ubuntu 16.04/18.04 & MAC OS X 10.12.6 with cmake 3.10.0 + GCC 7.3.0 + boost 1.67.0 + QT 5.11.1)

```
mkdir build && cd build && cmake .. && make
```

on Windows:

git clone https://github.com/parsicoin/parsipay && cd parsipay && git clone https://github.com/parsicoin/parsicoin cryptonote

Then: (tested on windows 8.1/10 with boost 1.59.0 , cmake 3.10.0 , MSVS 2015 & Qt 5.10.1)

```
mkdir build && cd build && cmake .. -G "Visual Studio 14" -DCMAKE_PREFIX_PATH=C:\Qt\Qt5.10.1\5.10.1\msvc2015
```

then open ParsiPay.sln and Build.

Expand Down
8 changes: 4 additions & 4 deletions src/cryptonotewallet.rc
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ IDI_ICON1 ICON "images\parsicoinz.ico"

#include <windows.h>

#define VER_FILEVERSION 3,0,2
#define VER_FILEVERSION_STR "3.0.2.0\0"
#define VER_PRODUCTVERSION 3,0,2
#define VER_PRODUCTVERSION_STR "3.0.2\0"
#define VER_FILEVERSION 3,1,0
#define VER_FILEVERSION_STR "3.1.0.0\0"
#define VER_PRODUCTVERSION 3,1,0
#define VER_PRODUCTVERSION_STR "3.1.0\0"
#define VER_FILEDESCRIPTION_STR "ParsiPay"
#define VER_INTERNALNAME_STR "ParsiPay"
#define VER_LEGALCOPYRIGHT_STR "Copyright (C) 2018-2019, ParsiCoin Developers"
Expand Down
4 changes: 2 additions & 2 deletions src/gui/SendFrame.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ SendFrame::SendFrame(QWidget* _parent) : QFrame(_parent), m_ui(new Ui::SendFrame
m_ui->setupUi(this);
m_glassFrame->setObjectName("m_sendGlassFrame");
clearAllClicked();
m_ui->m_mixinSlider->setValue(0);
m_ui->m_mixinSlider->setValue(3);
mixinValueChanged(m_ui->m_mixinSlider->value());
m_ui->m_prioritySlider->setValue(2);
priorityValueChanged(m_ui->m_prioritySlider->value());
Expand Down Expand Up @@ -157,7 +157,7 @@ void SendFrame::clearAllClicked() {
addRecipientClicked();
amountValueChange();
m_ui->m_paymentIdEdit->clear();
m_ui->m_mixinSlider->setValue(0);
m_ui->m_mixinSlider->setValue(3);
m_ui->m_prioritySlider->setValue(2);
priorityValueChanged(m_ui->m_prioritySlider->value());
}
Expand Down
2 changes: 1 addition & 1 deletion src/parsipay.desktop
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ Type=Application
Icon=parsicoin
MimeType=x-scheme-handler/parsicoin;
Categories=Office;Finance;
Version=3.0.2
Version=3.1.0

0 comments on commit 3c03ea7

Please sign in to comment.