Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Folder's support #12

Open
wants to merge 39 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
87759de
- Git ignore "Build" folder
antonc27 Dec 8, 2015
238115f
- First attempt to fix Travis build
antonc27 Dec 8, 2015
5cb9c57
Revert "Folders are hidden for now"
antonc27 Dec 8, 2015
65b2937
- Using designated initializer to instantiate Folder instance
antonc27 Dec 8, 2015
3621aef
- Folder Tests created
antonc27 Dec 9, 2015
982a174
- Test for sub folder inside folder
antonc27 Dec 9, 2015
43fc9ae
- Test for propagation of document store pointer to sub folder instance
antonc27 Dec 9, 2015
76d55f0
- Create sub folder in Folder
antonc27 Dec 9, 2015
a444568
- Small refactoring and cleanup for PDFDocumentTests
antonc27 Dec 9, 2015
8105eb3
- Temporary directory related helper methods extracted to NSFileManag…
antonc27 Dec 9, 2015
d4fd891
- Ability to move PDFDocument to another directory
antonc27 Dec 10, 2015
a072f9c
- Notification when PDF document moved
antonc27 Dec 10, 2015
8feb692
- Move documents methods for PDFDocumentStore
antonc27 Dec 11, 2015
c3b1312
- More UTs for moving of PDF documents to folder for PDFDocumentStore
antonc27 Dec 11, 2015
2b267a4
- Create folder in current folder functionality for FolderDocumentLis…
antonc27 Dec 11, 2015
ca6379e
- Create folder bar button item added
antonc27 Dec 11, 2015
ef912d9
- Show dialog for creation of new folder
antonc27 Dec 11, 2015
bf5bd8b
- Create folder functionality connected with view model
antonc27 Dec 11, 2015
ad6affc
- Navigation between folders
antonc27 Dec 11, 2015
8d3c1db
- Provide right title for folder to display
antonc27 Dec 11, 2015
05c69cf
- Folder now can check if contains File somewhere inside folder hiera…
antonc27 Dec 12, 2015
2382384
- Refactoring of Folder method, related to deletion of PDF document, …
antonc27 Dec 12, 2015
3c58090
- Delete folder
antonc27 Dec 12, 2015
12a1605
- Move documents for FolderDocumentListViewModel
antonc27 Dec 12, 2015
f85dab1
- 'New folder' bar button replaced with 'Move To...' bar button
antonc27 Dec 13, 2015
7e32cdf
- Move selected documents to new folder
antonc27 Dec 13, 2015
b686ef1
- Encapsulate 'create folder and move documents' to method of ViewModel
antonc27 Dec 13, 2015
5c40db8
- Forbid 'Move to...' and 'Open in' if selected documents has folder
antonc27 Dec 13, 2015
1418f92
- Refactoring for 'delete' method for File, Folder, PDFDocument.
antonc27 Dec 14, 2015
9efdbee
- Show for user alert with error if any
antonc27 Dec 14, 2015
dc8f095
- Find super folder functionality for Folder
antonc27 Dec 14, 2015
0094246
- RootFolderTests included to project
antonc27 Dec 14, 2015
e4b56a6
- Find super folder and move documents functionality for ViewModel
antonc27 Dec 14, 2015
402aef0
- Functionality to check type of current folder for ViewModel
antonc27 Dec 14, 2015
1cc9919
- 'Move documents to super folder' functionality for DocumentsListVie…
antonc27 Dec 14, 2015
7e500a5
- Clear and check new folder name before creation
antonc27 Dec 15, 2015
0320cd8
- UT for creation of sub folder with empty name
antonc27 Dec 15, 2015
2a8f341
- Corrected indentation for if statement
antonc27 Dec 15, 2015
6a5345e
- Another corrected indentations for if statement
antonc27 Dec 15, 2015
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,5 @@ Podfile.lock
Pods/*

/API_KEY.plist

Build/*
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ before_install:
- gem install cocoapods -v '0.32.1'

script:
- xcodebuild -workspace GreatReader.xcworkspace -scheme GreatReader -destination 'OS=8.0,name=iPhone 5s' test
- xcodebuild -workspace GreatReader.xcworkspace -scheme GreatReader -destination 'OS=8.1,name=iPhone 5s' test
Loading