Skip to content

Commit 416503c

Browse files
committed
push 0.6.2
1 parent a0be706 commit 416503c

4 files changed

Lines changed: 14 additions & 11 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ You also will need: Microsoft Visual C++ Redistributable for Visual Studio 2017
2828

2929
### Installing
3030

31-
To install Simple DNSCrypt use the latest (stable) MSI packages: [x86](https://github.com/bitbeans/SimpleDnsCrypt/releases/download/0.6.1/SimpleDNSCrypt.msi) or [x64](https://github.com/bitbeans/SimpleDnsCrypt/releases/download/0.6.1/SimpleDNSCrypt64.msi).
31+
To install Simple DNSCrypt use the latest (stable) MSI packages: [x86](https://github.com/bitbeans/SimpleDnsCrypt/releases/download/0.6.2/SimpleDNSCrypt.msi) or [x64](https://github.com/bitbeans/SimpleDnsCrypt/releases/download/0.6.2/SimpleDNSCrypt64.msi).
3232

3333
#### Alternative
3434

@@ -40,7 +40,7 @@ The MSI package and the SimpleDnsCrypt.exe are signed via a *COMODO RSA Code Sig
4040
The files are signed under the name: *Christian Hermann*
4141

4242
You also can verify the MSI packages with [minisign](https://jedisct1.github.io/minisign/).
43-
The minisign signatures [x86](https://github.com/bitbeans/SimpleDnsCrypt/releases/download/0.6.1/SimpleDNSCrypt.msi.minisig) and [x64](https://github.com/bitbeans/SimpleDnsCrypt/releases/download/0.6.1/SimpleDNSCrypt64.msi.minisig) can be verified with the following command:
43+
The minisign signatures [x86](https://github.com/bitbeans/SimpleDnsCrypt/releases/download/0.6.2/SimpleDNSCrypt.msi.minisig) and [x64](https://github.com/bitbeans/SimpleDnsCrypt/releases/download/0.6.2/SimpleDNSCrypt64.msi.minisig) can be verified with the following command:
4444

4545
minisign -Vm SimpleDNSCrypt.msi -P RWTSM+4BNNvkZPNkHgE88ETlhWa+0HDzU5CN8TvbyvmhVUcr6aQXfssV
4646
minisign -Vm SimpleDNSCrypt64.msi -P RWTSM+4BNNvkZPNkHgE88ETlhWa+0HDzU5CN8TvbyvmhVUcr6aQXfssV

SimpleDnsCrypt/ViewModels/LoaderViewModel.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,8 +161,11 @@ private async void InitializeApplication()
161161
var configFile = Path.Combine(Directory.GetCurrentDirectory(), Global.DnsCryptProxyFolder, Global.DnsCryptConfigurationFile);
162162
if (File.Exists(configFile))
163163
{
164+
if (File.Exists(configFile + ".bak"))
165+
{
166+
File.Delete(configFile + ".bak");
167+
}
164168
File.Move(configFile, configFile + ".bak");
165-
//File.Delete(configFile);
166169
}
167170
File.Move(tmpConfigPath, configFile);
168171
}

update.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
update:
2-
version: 0.6.1
2+
version: 0.6.2
33
type: 2
4-
release: 2018-12-01
4+
release: 2018-12-03
55
publickey: RWTSM+4BNNvkZPNkHgE88ETlhWa+0HDzU5CN8TvbyvmhVUcr6aQXfssV
66
installer:
7-
uri: https://github.com/bitbeans/SimpleDnsCrypt/releases/download/0.6.1/SimpleDNSCrypt.msi
7+
uri: https://github.com/bitbeans/SimpleDnsCrypt/releases/download/0.6.2/SimpleDNSCrypt.msi
88
name: SimpleDNSCrypt.msi
99
signature:
10-
uri: https://github.com/bitbeans/SimpleDnsCrypt/releases/download/0.6.1/SimpleDNSCrypt.msi.minisig
10+
uri: https://github.com/bitbeans/SimpleDnsCrypt/releases/download/0.6.2/SimpleDNSCrypt.msi.minisig
1111

update64.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
update:
2-
version: 0.6.1
2+
version: 0.6.2
33
type: 2
4-
release: 2018-12-01
4+
release: 2018-12-03
55
publickey: RWTSM+4BNNvkZPNkHgE88ETlhWa+0HDzU5CN8TvbyvmhVUcr6aQXfssV
66
installer:
7-
uri: https://github.com/bitbeans/SimpleDnsCrypt/releases/download/0.6.1/SimpleDNSCrypt64.msi
7+
uri: https://github.com/bitbeans/SimpleDnsCrypt/releases/download/0.6.2/SimpleDNSCrypt64.msi
88
name: SimpleDNSCrypt64.msi
99
signature:
10-
uri: https://github.com/bitbeans/SimpleDnsCrypt/releases/download/0.6.1/SimpleDNSCrypt64.msi.minisig
10+
uri: https://github.com/bitbeans/SimpleDnsCrypt/releases/download/0.6.2/SimpleDNSCrypt64.msi.minisig
1111

0 commit comments

Comments
 (0)