OmniFocus for iPad 1.4.1

January 23, 2012

OmniFocus requires iOS 4.0 or later. In order to use Location Reminders, you need to have iOS 5 installed, and have an iPad 2 with 3G.

OmniFocus 1.4.1 for iPad is a maintenance release which improves attachment support, includes a new application icon, and a number of other improvements and bug fixes.

Attachments

  • Fixed a bug where package attachments (e.g. OmniOutliner documents) were not opened correctly.
  • Fixed a bug where package attachments (e.g. OmniOutliner documents) were not correctly attached to the message when sharing a task via email.
  • Fixed a bug where note edits could be lost in certain situations when adding an attachment to an action.
  • The built-in attachment viewer now supports viewing Pages, Numbers, Keynote, and RTFD documents.
  • The built-in attachment viewer can now send attachments to other apps by tapping the Share button.

Localization

  • Fixed a bug where the translations for “Day Starts At” and “Day Ends At” were transposed in Italian.

Forecast

  • Fixed a bug in Forecast mode where the hour labels on the event timeline were incorrect on the last day of Daylight Savings Time.
  • Fixed a bug in Forecast mode where the dingus of time was positioned incorrectly on the last day of Daylight Savings Time.

Miscellaneous

  • New application icon!
  • Projects and Action groups are now shown by default in Context mode. (This setting is synced with other copies of OmniFocus.)
  • Fixed a bug where OmniFocus would sometimes monitor a context’s location even if Location Reminders were not enabled for that context.
  • The Location button in the Context editor now indicates if a Location Reminder is enabled for a given context.
  • OmniFocus populates the password field of the login prompt when possible.
  • The Star button no longer disappears from the Perspective list when editing the sidebar.

OmniFocus for iPhone 1.13.2

January 23, 2012

OmniFocus 1.13.2 for iPhone is a maintenance release which updates localizations and help, and includes a new application icon.

OmniFocus for iPhone 1.13.1

December 12, 2011

OmniFocus 1.13.1 for iPhone is a maintenance release that improves the reliability of capturing Reminders created with Siri, and adds the option to sort items either by Due Date & Flagged or by Project order in Context lists.

Capturing iCloud Reminders

  • Fixed a bug which could cause capture of iCloud Reminders to stop working in certain situations where communication with iCloud took longer than expected.

Workflow

  • Items can be sorted either by Due Date & Flagged or by Project order in Context lists.

Forecast

  • Fixed a bug which could result in blank items being displayed in Forecast mode.
  • Fixed a bug which could result in incorrect Future badge counts.

Miscellaneous

  • Fixed a regression blocking the Context and Project pickers from working in landscape orientation.
  • Fixed a bug which caused keyboard input to stop working after using the Move item screen on iOS 4.

OmniFocus for iPhone 1.13

November 18, 2011

OmniFocus 1.13 for iPhone adds the ability to capture reminders created with Siri, improves Location Reminders support, and fixes a handful of bugs.

OmniFocus requires iOS 4.0 or later. In order to use Location Reminders, you need to have iOS 5 installed, and have an iPhone 4 or iPhone 4S.

Capturing iCloud Reminders

  • OmniFocus and Siri now work together!
  • Create reminders on the go with Siri. When you open OmniFocus, it will move these reminders into your OmniFocus Inbox. Please see iCloud Capture in OmniFocus Help for additional information.

Location Reminders & Map

  • Fixed a bug where OmniFocus would sometimes monitor a context’s location even if Location Reminders were not enabled for that context.

Miscellaneous

  • Fixed a regression which caused Shake to Undo to be unavailable.
  • Fixed a bug where the list of actions in Forecast mode was not resorted after an action’s due date was changed.
  • In Forecast mode, inbox items are now sorted above actions which share the same due date.
  • Actions are now sorted by project in Context lists.
  • OmniFocus populates the password field of the login prompt when possible.

OmniFocus for Mac 1.9.4

October 26, 2011

OmniFocus 1.9.4 for Mac is a maintenance release which includes minor bug fixes and improvements.

Sync

The Omni Sync Server beta badge has been removed. We’ve got lots of people using it, but it is still in beta. We expect to change that very soon. If you want to know when the sync server leaves beta, you can follow @omnisyncserver on Twitter or watch for changes on https://sync.omnigroup.com/.

Miscellaneous

  • Fixed compatibility issue with Growl 1.3 and later.
  • Fixed a bug which caused the Mac App Store edition to report an “Unable to backup database” error on quit.
  • Fixed a regression which caused the Clip-O-Tron installer to fail on Mac OS X 10.5 Leopard and earlier.
  • Fixed a bug which would cause the software update installer to fail if the application was locked in the Finder.
  • Fixed a bug which would cause the software update installer to fail when encountering unexpected ownership or permissions.
  • Fixed a bug where the date picker didn’t appear correctly when Quick Entry was invoked in the context of a full-screen application.

Scripting

Worked around an issue in when using full-screen mode on OS X Lion which would cause certain AppleScripts attempting to target the front window to fail.

If you are the author of a script which uses the following idiom:

tell application "OmniFocus"
    tell front document
        tell (first document window whose index is 1)
            ... 
        end tell
    end tell
end tell

Please discontinue using it. This idiom will fail in situations other than full-screen mode on OS X Lion. The correct template to use is:

tell application "OmniFocus"
    tell first document window of front document
      ...
    end tell
end tell