Skip to content

Commit

Permalink
feat(README) add screenshots
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Ma committed Aug 3, 2016
1 parent 3cdfe59 commit ab593bb
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 3 deletions.
22 changes: 21 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,26 @@ This is a simple implementation of the [Pomodoro Technique](http://pomodorotechn

It runs in the menu bar, it doesn't take a bunch of resources, and it might help you not sit at your desk all day.

Icons made by [Madebyoliver](http://www.flaticon.com/authors/madebyoliver) from [Flaticon](http://www.flaticon.com) is licensed by [CC 3.0 BY](http://creativecommons.org/licenses/by/3.0/)
## Screenshots

Default state:

<img src="screenshots/menubar-default-state.png" alt="Robomodoro's default state in the menu bar" width="34" height="24" />

Work state:

<img src="screenshots/menubar-work-state.png" alt="Robomodoro's work state in the menu bar" width="51" height="25" />

Menu:

<img src="screenshots/menu.png" alt="Robomodoro's menu" width="190" height="192" />

Notification

<img src="screenshots/notification.png" alt="Robomodoro's notification" width="332" height="72" />

I like to make my notifications `alerts` instead of `banners` so that they stay around until I acknowledge them.

## Attributions

Icons made by [Madebyoliver](http://www.flaticon.com/authors/madebyoliver) from [Flaticon](http://www.flaticon.com) is licensed by [CC 3.0 BY](http://creativecommons.org/licenses/by/3.0/)
4 changes: 2 additions & 2 deletions robomodoro.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@
COMBINE_HIDPI_IMAGES = YES;
INFOPLIST_FILE = robomodoro/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = danielma.robomodoro;
PRODUCT_BUNDLE_IDENTIFIER = com.danielma.robomodoro;
PRODUCT_NAME = "$(TARGET_NAME)";
};
name = Debug;
Expand All @@ -325,7 +325,7 @@
COMBINE_HIDPI_IMAGES = YES;
INFOPLIST_FILE = robomodoro/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = danielma.robomodoro;
PRODUCT_BUNDLE_IDENTIFIER = com.danielma.robomodoro;
PRODUCT_NAME = "$(TARGET_NAME)";
};
name = Release;
Expand Down
1 change: 1 addition & 0 deletions robomodoro/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ class AppDelegate: NSObject, NSApplicationDelegate, NSUserNotificationCenterDele

func showNotification(text: String) {
let notification:NSUserNotification = NSUserNotification()
notification.identifier = "com.danielma.robomodoro-notification"
notification.title = "Robomodoro"
notification.subtitle = "\(currentMode.rawValue) \(text)"
notification.soundName = NSUserNotificationDefaultSoundName
Expand Down
Binary file added screenshots/menu.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added screenshots/menubar-default-state.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added screenshots/menubar-work-state.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added screenshots/notification.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit ab593bb

Please sign in to comment.