Skip to content

Commit

Permalink
Finalization of v1.1.3 for release
Browse files Browse the repository at this point in the history
  • Loading branch information
leathalman committed Nov 29, 2019
1 parent e82743d commit 8929712
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Jotify.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -707,7 +707,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = Default;
CODE_SIGN_ENTITLEMENTS = Jotify/Jotify.entitlements;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
CURRENT_PROJECT_VERSION = 2;
DEVELOPMENT_TEAM = G69P7XTUQ3;
ENABLE_BITCODE = YES;
FRAMEWORK_SEARCH_PATHS = (
Expand Down Expand Up @@ -739,7 +739,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = Default;
CODE_SIGN_ENTITLEMENTS = Jotify/Jotify.entitlements;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
CURRENT_PROJECT_VERSION = 2;
DEVELOPMENT_TEAM = G69P7XTUQ3;
ENABLE_BITCODE = YES;
INFOPLIST_FILE = Jotify/Info.plist;
Expand Down
7 changes: 6 additions & 1 deletion Jotify/Controller/SavedNoteController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -438,10 +438,15 @@ class SavedNoteController: UICollectionViewController, UISearchBarDelegate {

func setupMultiSelectionToolBar() {
let toolBar = navigationController?.toolbar
if UserDefaults.standard.bool(forKey: "darkModeEnabled") == true {
if UserDefaults.standard.bool(forKey: "vibrantDarkModeEnabled") == true {
toolBar?.tintColor = .white
toolBar?.barTintColor = .grayBackground
toolBar?.sizeToFit()
} else if UserDefaults.standard.bool(forKey: "pureDarkModeEnabled") == true {
toolBar?.tintColor = .white
toolBar?.barTintColor = .black
toolBar?.sizeToFit()

} else {
toolBar?.tintColor = nil
toolBar?.barTintColor = nil
Expand Down

0 comments on commit 8929712

Please sign in to comment.