Skip to content

Commit

Permalink
Release v1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
PeratX committed May 20, 2017
1 parent b3d99d1 commit db578bc
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 60 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ android {
applicationId "org.itxtech.daedalus"
minSdkVersion 15
targetSdkVersion 25
versionCode 6
versionName "1.6.0"
versionCode 7
versionName "1.7.0"

buildConfigField "String", "BUILD_TIME", "\"${System.currentTimeMillis()}\""
buildConfigField "String", "GIT_COMMIT", "\"${gitCommit}\""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public class ConfigActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_dns_server_config);
setContentView(R.layout.activity_config);

ConfigFragment fragment;
switch (getIntent().getIntExtra(LAUNCH_ACTION_FRAGMENT, LAUNCH_FRAGMENT_DNS_SERVER)) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -197,9 +197,9 @@ public void run() {
String aliasSecondary;
if (advanced) {
dnsServers = new HashMap<>();
aliasPrimary = String.format(format, dnsServers.size() + 1);
aliasPrimary = String.format(format, 2);
dnsServers.put(aliasPrimary, primaryServer);
aliasSecondary = String.format(format, dnsServers.size() + 1);
aliasSecondary = String.format(format, 3);
dnsServers.put(aliasSecondary, secondaryServer);
} else {
aliasPrimary = primaryServer;
Expand Down
54 changes: 0 additions & 54 deletions app/src/main/java/org/itxtech/daedalus/widget/BoundedCardView.java

This file was deleted.

File renamed without changes.
2 changes: 1 addition & 1 deletion app/src/main/res/xml/perf_settings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</ListPreference>
<EditTextPreference
android:key="dns_test_servers"
android:defaultValue="114.114.114.114,8.8.8.8"
android:defaultValue="10.0.0.2,10.0.0.3"
android:selectAllOnFocus="true"
android:singleLine="true"
android:title="@string/settings_dns_test_servers"/>
Expand Down

0 comments on commit db578bc

Please sign in to comment.