Skip to content

Commit

Permalink
Update version to 4.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickAnyline committed Apr 23, 2024
1 parent c0d854f commit e71decb
Show file tree
Hide file tree
Showing 23 changed files with 206 additions and 821 deletions.
113 changes: 44 additions & 69 deletions Anyline Tire Demo.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,22 @@
"version" : "5.8.1"
}
},
{
"identity" : "anyline-tiretread-spm-module",
"kind" : "remoteSourceControl",
"location" : "https://github.com/Anyline/anyline-tiretread-spm-module",
"state" : {
"revision" : "4477a51d26ffd4ed280a4bee2dfdb6d208d82e90",
"version" : "4.2.1"
}
},
{
"identity" : "keychain-swift",
"kind" : "remoteSourceControl",
"location" : "https://github.com/evgenyneu/keychain-swift.git",
"state" : {
"branch" : "master",
"revision" : "95219e66c94b6ba25e7d6ece7aecf1ea13134174"
"revision" : "6b6fc468877a5f01fe211fcf0af840b9ecce9d98"
}
},
{
Expand All @@ -24,7 +33,7 @@
"location" : "https://github.com/SnapKit/SnapKit.git",
"state" : {
"branch" : "develop",
"revision" : "4d52cc3768ec5d345827b063dfa59e98a929965d"
"revision" : "4478b2234e85c36b9f2c855d909037dc4dc08eda"
}
}
],
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1200"
LastUpgradeVersion = "1430"
version = "1.7">
<BuildAction
parallelizeBuildables = "YES"
Expand Down
14 changes: 14 additions & 0 deletions Anyline Tire Demo/DataStorage/UserDefaultsManager.swift
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,18 @@ struct UserDefaultsManager {
UserDefaults.standard.setValue(newValue.ordinal, forKey: "scanSpeed")
}
}

var showGuidance: Bool {
get {
let showGuidanceObject = UserDefaults.standard.object(forKey: "showGuidance")

if (showGuidanceObject == nil){
return true
}
return UserDefaults.standard.bool(forKey: "showGuidance")
}
set {
UserDefaults.standard.setValue(newValue, forKey: "showGuidance")
}
}
}

This file was deleted.

This file was deleted.

This file was deleted.

0 comments on commit e71decb

Please sign in to comment.