summaryrefslogtreecommitdiff
path: root/time/xdaliclock
AgeCommit message (Collapse)AuthorFilesLines
2014-12-04Update 2.30 to 2.41mef2-6/+6
------------------ 2.41 18-Mar-2014 OSX: - Fixed start-up rotation and credits display on iOS 7. - Suppress status bar (again) on iOS 7. 2.40 27-Nov-2013 OSX: - Added "Check for Updates". 2.39 16-Jul-2013 All platforms: - Tweaked character outlines for smoother morphing. iPhone: - Fixed crash when rotating on Retina iPads. OSX: - Fixed crash when running in full screen or as a screen saver on really old machines. 2.38 08-Jul-2013 OSX: - Toggling window title bar preserves transparency. - Transparency works in full-screen mode. - Screen saver preferences weren't being saved. - Fixed bug where System Preferences window went black. - Possibly fixed an intermittent startup crash. 2.37 22-Sep-2012 iPhone: - Support for iPhone 5's new screen size. 2.36 23-Apr-2012 OSX: - Fixed a startup crash on 10.7. - Added a preference to keep the Dali Clock window above even the screen saver window. - "Upgraded" to XCode 4.0, which means that 10.4 PPC builds are impossible, and Intel is now required. 2.35 18-Aug-2010 All platforms: - Regenerated font images for smoother animation. iPhone, iPad: - Higher resolution display (and icons) on iPhone 4. - Fixed a display glitch when zooming. - Fixed an occasional rotation twitch on iPad. X11: - Turned on -cycle by default. 2.34 19-May-2010 iPhone: - When docked, don't automatically turn screen off. - Briefly display the date every minute or so. - Made rotation less twitchy. - Fixed off-by-one in date display. OSX: - Animate while resizing window. 2.33 24-Apr-2010 iPhone, OSX, WebOS: - Keep the clock centered in the window even when in 12 hour mode where the hour is one digit, and animate the centering transition. OSX: - Eliminated flicker when a transparent Dali Clock window is on top of a window that is playing video. iPhone: - Animate rotation/scaling during orientation changes. - Submitted to Apple iTunes Store. 2.32 20-Apr-2010 iPhone: - Fixed a startup crash. - Rotation and pinch-zooming works reliably. 2.31 18-Apr-2010 OSX: - Tweaks to Mac OS 10.6 build process. - Rewrote rendering engine in OpenGL / OpenGLES. - The colons and dashes morph now too. iPhone: - Works now! X11: - Added -showdate option so you can run two copies, one showing the date and one showing the time.
2012-10-08Drop PKG_DESTDIR_SUPPORT setting, "user-destdir" is default these days.asau1-3/+1
2009-10-16Update xdaliclock to 2.30.jakllsch4-39/+9
Reset MAINTAINER, per corespondence with nathanw. Changes since 2.18: 01-Sep-09 (v2.30) OSX: - Ported to Mac OS 10.6. 15-Jul-09 (v2.29) Palm WebOS: - Palm's API changed; need to un-escape HTML. 06-Jul-09 (v2.28) Palm WebOS: - Slight performance improvements. OSX: - A little more work on the unfinished iPhone port. 27-Jun-09 (v2.27) Palm WebOS: - Cosmetic animation and preferences improvements. - Factored out Javascript code so it can be used stand-alone. 26-Jun-09 (v2.26) Palm WebOS: - Initial port! PalmOS "Classic": - Eliminated a slight flicker during animation. OSX: - Initial incomplete, aborted attempt at iPhone port. 12-Nov-07 (v2.25) OSX: - Added a Dali Clock dashboard widget. 28-Apr-07 (v2.24) OSX: - Added a Dali Clock screen saver. - Better application icon. PalmOS: - Fixed bug where the background colors of the digits and of the rest of the window were slightly out of sync. - Don't draw while menubar is active. - Display day-of-month in seconds-only mode. - Color application icons. 08-Jan-06 (v2.23) OSX: - prettier preferences panel. PalmOS: - smoother morphing; - bigger "seconds only" font; - color cycling on color devices. X11: - smoother morphing; - better color cycling contrast; - added three new, larger built-in fonts. 02-Jan-06 (v2.22) MacOS fixes: - Coming out of full-screen mode no longer leaves the window in a huge size if the title bar had been turned off. - Full screen mode hides the mouse pointer. - ESC exits full screen mode. - Build a universal binary (PPC and Intel). - Added "Pin to desktop" preference. - Minimize (Cmd-M) and Close (Cmd-W) work when borderless or full screen. 31-Dec-05 (v2.21) Ported to MacOS X! 07-Sep-03 (v2.20) Updated "vroot.h" for compatibility with latest xscreensaver (-root in Xinerama mode.) Include various historical Macintosh predecessors in the mac128/ subdirectory. 11-Sep-02 (v2.19) Added -window-id option, for use by xscreensaver-demo. Handle exposure events in "-root -noseconds" mode. Updated the PalmOS source to work with PalmOS SDK 4.0. Fixed a dumb bug in the PalmOS preferences where you couldn't set the FPS to exactly "10". Updated make.com for VMS.
2009-07-07user-destdir supportjoerg1-1/+6
2007-02-02Modular Xorg support.joerg1-2/+3
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg1-1/+2
2005-06-01Massive cleanup of buildlink3.mk and builtin.mk files in pkgsrc.jlam1-2/+2
Several changes are involved since they are all interrelated. These changes affect about 1000 files. The first major change is rewriting bsd.builtin.mk as well as all of the builtin.mk files to follow the new example in bsd.builtin.mk. The loop to include all of the builtin.mk files needed by the package is moved from bsd.builtin.mk and into bsd.buildlink3.mk. bsd.builtin.mk is now included by each of the individual builtin.mk files and provides some common logic for all of the builtin.mk files. Currently, this includes the computation for whether the native or pkgsrc version of the package is preferred. This causes USE_BUILTIN.* to be correctly set when one builtin.mk file includes another. The second major change is teach the builtin.mk files to consider files under ${LOCALBASE} to be from pkgsrc-controlled packages. Most of the builtin.mk files test for the presence of built-in software by checking for the existence of certain files, e.g. <pthread.h>, and we now assume that if that file is under ${LOCALBASE}, then it must be from pkgsrc. This modification is a nod toward LOCALBASE=/usr. The exceptions to this new check are the X11 distribution packages, which are handled specially as noted below. The third major change is providing builtin.mk and version.mk files for each of the X11 distribution packages in pkgsrc. The builtin.mk file can detect whether the native X11 distribution is the same as the one provided by pkgsrc, and the version.mk file computes the version of the X11 distribution package, whether it's built-in or not. The fourth major change is that the buildlink3.mk files for X11 packages that install parts which are part of X11 distribution packages, e.g. Xpm, Xcursor, etc., now use imake to query the X11 distribution for whether the software is already provided by the X11 distribution. This is more accurate than grepping for a symbol name in the imake config files. Using imake required sprinkling various builtin-imake.mk helper files into pkgsrc directories. These files are used as input to imake since imake can't use stdin for that purpose. The fifth major change is in how packages note that they use X11. Instead of setting USE_X11, package Makefiles should now include x11.buildlink3.mk instead. This causes the X11 package buildlink3 and builtin logic to be executed at the correct place for buildlink3.mk and builtin.mk files that previously set USE_X11, and fixes packages that relied on buildlink3.mk files to implicitly note that X11 is needed. Package buildlink3.mk should also include x11.buildlink3.mk when linking against the package libraries requires also linking against the X11 libraries. Where it was obvious, redundant inclusions of x11.buildlink3.mk have been removed.
2005-02-23Add RMD160 checksums.wiz1-1/+2
2004-01-20Move WRKSRC definition away from the first paragraph in a Makefile.agc1-2/+2
2003-09-25Remove usage of an unnecessary compiler option which GCC 3.3.1 doesn'ttron2-1/+14
understand.
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-03-29Place WRKSRC where it belongs, to make pkglint happy; ok'ed by wiz.jmmv1-2/+2
2001-10-31Move pkg/ files into package's toplevel directoryzuntum3-3/+3
2001-04-18Move to sha1 digests, and add distfile sizes.agc1-2/+3
2001-04-17+ move the distfile digest/checksum value from files/md5 to distinfoagc3-6/+4
+ move the patch digest/checksum values from files/patch-sum to distinfo
2001-02-17Update to new COMMENT style: COMMENT var in Makefile instead of pkg/COMMENT.wiz2-2/+2
2000-12-17New category: time. Move many packages here:wiz7-0/+49
misc/cal, misc/cardboard-schedule, misc/ical, misc/plan, misc/py-mxDateTime, misc/remind, sysutils/logtime, and 19 more from x11.