Skip to content

Commit addd45f

Browse files
committed
Increased internal build and updated the main default note.
1 parent afc9d6e commit addd45f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Thoughtless/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
</dict>
3333
</array>
3434
<key>CFBundleVersion</key>
35-
<string>1</string>
35+
<string>2</string>
3636
<key>LSRequiresIPhoneOS</key>
3737
<true/>
3838
<key>NSUbiquitousContainers</key>

Thoughtless/NotesTableViewController.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ class NotesTableViewController: UITableViewController {
158158
}
159159

160160
fileprivate func loadDefaultNotes() {
161-
guard let firstNote = Note(entry: "## Power up your note:\n---\n\nMake a todo list:\n\n- Watch **WWDC16** keynote[(video url)](http://www.apple.com/apple-events/june-2016/).\n* Write `code`.\n\n1. Build codebase.\n2. Refactor `code`.\n\nMAke a check list:\n\n- [ ] Debug ~~master~~ feature branch.\n- [ ] _Rebuild_ project.\n\nCreate a block of quote:\n\n>_\"Be yourself. Everyone else is already taken.\"_ -Oscar Wilde\n\nOr a bunch of codes too:\n\n```\nlet printMe: () -> Void {\n print(\"I am called Thoughtless\")\n}```\n\nTap *Preview* to see your enhanced note.\n\nTap *Markdown* to access tutorial.", dateOfCreation: self.getCurrentDateAndTime()) else { return }
161+
guard let firstNote = Note(entry: "## Power up your note:\n---\n\nMake a todo list:\n\n- Watch **WWDC 2017** keynote[(video url)](http://www.apple.com/apple-events/june-2017/).\n* Write `code`.👨🏻‍💻\n\n1. Build codebase.\n2. Refactor `code`.\n\nMake a check list:\n\n- [ ] Debug ~~master~~ *feature* branch.\n- [ ] _Rebuild_ project.\n\nCreate a block of quote:\n\n>_\"Be yourself. Everyone else is already taken.\"_ -Oscar Wilde\n\nOr a bunch of codes too:\n\n```\nlet printMe: () -> Void {\n print(\"I am called Thoughtless\")\n}```\n\nTap *Preview* to see your enhanced note.\n\nTap *Markdown* to access tutorial.", dateOfCreation: self.getCurrentDateAndTime()) else { return }
162162
guard let secondNote = Note(entry: "Tap +, above right, to add a new note", dateOfCreation: self.getCurrentDateAndTime()) else { return }
163163
guard let thirdNote = Note(entry: "Tap Edit, above left, to move me or delete me.", dateOfCreation: self.getCurrentDateAndTime()) else { return }
164164
guard let fourthNote = Note(entry: "Swipe me to the left for more options.", dateOfCreation: self.getCurrentDateAndTime()) else { return }

0 commit comments

Comments
 (0)