├── .gitignore ├── Base.lproj ├── CreeveyWindow.xib ├── DYJpegtranPanel.xib ├── MainMenu.xib ├── PrefsWin.xib └── ThumbnailContextMenu.xib ├── Credits.html ├── CreeveyController.h ├── CreeveyController.m ├── CreeveyMainWindowController.h ├── CreeveyMainWindowController.m ├── DYCarbonGoodies.h ├── DYCarbonGoodies.m ├── DYCreeveyBrowser.h ├── DYCreeveyBrowser.m ├── DYFileWatcher.h ├── DYFileWatcher.m ├── DYImageCache.h ├── DYImageCache.m ├── DYImageView.h ├── DYImageView.m ├── DYJpegtranPanel.h ├── DYJpegtranPanel.m ├── DYRandomizableArray.h ├── DYRandomizableArray.m ├── DYVersChecker.h ├── DYVersChecker.m ├── DYWrappingMatrix.h ├── DYWrappingMatrix.m ├── DYjpegtran ├── DYJpegtran.h ├── DYJpegtran.m ├── jerror.h ├── jinclude.h ├── jpegint.h ├── transupp.c └── transupp.h ├── DirBrowserDelegate.h ├── DirBrowserDelegate.m ├── Info.plist ├── Localizable.xcstrings ├── Media.xcassets ├── Contents.json └── logo.imageset │ ├── Contents.json │ └── logo.png ├── NSColor+TextColor.h ├── NSColor+TextColor.m ├── NSIndexSetSymDiffExtension.h ├── NSIndexSetSymDiffExtension.m ├── NSMutableArray+DYMovable.h ├── NSMutableArray+DYMovable.m ├── Phoenix Slides.entitlements ├── README.md ├── SlideshowWindow.h ├── SlideshowWindow.m ├── UKPrefsPanel.h ├── UKPrefsPanel.m ├── VDKQueue.h ├── VDKQueue.m ├── brokendoc.tif ├── creevey.xcodeproj └── project.pbxproj ├── dcraw.c ├── dcraw.h ├── de.lproj ├── CreeveyWindow.strings ├── DYJpegtranPanel.strings ├── EXIF.strings ├── InfoPlist.strings ├── Phoenix Slides Help │ └── index.html ├── ThumbnailContextMenu.strings └── creeveyhelp.rtf ├── en.lproj ├── EXIF.strings ├── Phoenix Slides Help │ └── index.html └── creeveyhelp.rtf ├── es.lproj ├── CreeveyWindow.strings ├── DYJpegtranPanel.strings ├── EXIF.strings ├── InfoPlist.strings ├── Phoenix Slides Help │ └── index.html ├── ThumbnailContextMenu.strings └── creeveyhelp.rtf ├── exiftags ├── DYExiftags.h ├── DYExiftags.m ├── asahi.c ├── canon.c ├── casio.c ├── exif.c ├── exif.h ├── exifgps.c ├── exifint.h ├── exifutil.c ├── fuji.c ├── leica.c ├── makers.c ├── makers.h ├── minolta.c ├── nikon.c ├── olympus.c ├── panasonic.c ├── sanyo.c ├── sigma.c ├── tagdefs.c ├── timevary.c └── timevary.h ├── fr.lproj ├── CreeveyWindow.strings ├── DYJpegtranPanel.strings ├── EXIF.strings ├── InfoPlist.strings ├── ThumbnailContextMenu.strings └── creeveyhelp.rtf ├── general.gif ├── it.lproj ├── CreeveyWindow.strings ├── DYJpegtranPanel.strings ├── EXIF.strings ├── InfoPlist.strings ├── Phoenix Slides Help │ └── index.html ├── ThumbnailContextMenu.strings └── creeveyhelp.rtf ├── libjpeg ├── jconfig.h ├── jmorecfg.h ├── jpeglib.h └── libjpeg.a ├── loading.png ├── loop_forward.tiff ├── main.m ├── mul.lproj ├── MainMenu.xcstrings └── PrefsWin.xcstrings ├── multipledocs.gif ├── nib2ib-strings.pl ├── phxslides.icns ├── slideshow.tif ├── version.html └── zh-Hant.lproj ├── CreeveyWindow.strings ├── DYJpegtranPanel.strings ├── EXIF.strings ├── InfoPlist.strings ├── Phoenix Slides Help └── index.html ├── ThumbnailContextMenu.strings └── creeveyhelp.rtf /.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | .DS_Store 3 | project.xcworkspace/ 4 | xcuserdata/ 5 | 6 | -------------------------------------------------------------------------------- /Base.lproj/CreeveyWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/Base.lproj/CreeveyWindow.xib -------------------------------------------------------------------------------- /Base.lproj/DYJpegtranPanel.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/Base.lproj/DYJpegtranPanel.xib -------------------------------------------------------------------------------- /Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Base.lproj/PrefsWin.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/Base.lproj/PrefsWin.xib -------------------------------------------------------------------------------- /Base.lproj/ThumbnailContextMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/Base.lproj/ThumbnailContextMenu.xib -------------------------------------------------------------------------------- /Credits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/Credits.html -------------------------------------------------------------------------------- /CreeveyController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/CreeveyController.h -------------------------------------------------------------------------------- /CreeveyController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/CreeveyController.m -------------------------------------------------------------------------------- /CreeveyMainWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/CreeveyMainWindowController.h -------------------------------------------------------------------------------- /CreeveyMainWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/CreeveyMainWindowController.m -------------------------------------------------------------------------------- /DYCarbonGoodies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/DYCarbonGoodies.h -------------------------------------------------------------------------------- /DYCarbonGoodies.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/DYCarbonGoodies.m -------------------------------------------------------------------------------- /DYCreeveyBrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/DYCreeveyBrowser.h -------------------------------------------------------------------------------- /DYCreeveyBrowser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/DYCreeveyBrowser.m -------------------------------------------------------------------------------- /DYFileWatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/DYFileWatcher.h -------------------------------------------------------------------------------- /DYFileWatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/DYFileWatcher.m -------------------------------------------------------------------------------- /DYImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/DYImageCache.h -------------------------------------------------------------------------------- /DYImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/DYImageCache.m -------------------------------------------------------------------------------- /DYImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/DYImageView.h -------------------------------------------------------------------------------- /DYImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/DYImageView.m -------------------------------------------------------------------------------- /DYJpegtranPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/DYJpegtranPanel.h -------------------------------------------------------------------------------- /DYJpegtranPanel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/DYJpegtranPanel.m -------------------------------------------------------------------------------- /DYRandomizableArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/DYRandomizableArray.h -------------------------------------------------------------------------------- /DYRandomizableArray.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/DYRandomizableArray.m -------------------------------------------------------------------------------- /DYVersChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/DYVersChecker.h -------------------------------------------------------------------------------- /DYVersChecker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/DYVersChecker.m -------------------------------------------------------------------------------- /DYWrappingMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/DYWrappingMatrix.h -------------------------------------------------------------------------------- /DYWrappingMatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/DYWrappingMatrix.m -------------------------------------------------------------------------------- /DYjpegtran/DYJpegtran.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/DYjpegtran/DYJpegtran.h -------------------------------------------------------------------------------- /DYjpegtran/DYJpegtran.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/DYjpegtran/DYJpegtran.m -------------------------------------------------------------------------------- /DYjpegtran/jerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/DYjpegtran/jerror.h -------------------------------------------------------------------------------- /DYjpegtran/jinclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/DYjpegtran/jinclude.h -------------------------------------------------------------------------------- /DYjpegtran/jpegint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/DYjpegtran/jpegint.h -------------------------------------------------------------------------------- /DYjpegtran/transupp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/DYjpegtran/transupp.c -------------------------------------------------------------------------------- /DYjpegtran/transupp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/DYjpegtran/transupp.h -------------------------------------------------------------------------------- /DirBrowserDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/DirBrowserDelegate.h -------------------------------------------------------------------------------- /DirBrowserDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/DirBrowserDelegate.m -------------------------------------------------------------------------------- /Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/Info.plist -------------------------------------------------------------------------------- /Localizable.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/Localizable.xcstrings -------------------------------------------------------------------------------- /Media.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/Media.xcassets/Contents.json -------------------------------------------------------------------------------- /Media.xcassets/logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/Media.xcassets/logo.imageset/Contents.json -------------------------------------------------------------------------------- /Media.xcassets/logo.imageset/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/Media.xcassets/logo.imageset/logo.png -------------------------------------------------------------------------------- /NSColor+TextColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/NSColor+TextColor.h -------------------------------------------------------------------------------- /NSColor+TextColor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/NSColor+TextColor.m -------------------------------------------------------------------------------- /NSIndexSetSymDiffExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/NSIndexSetSymDiffExtension.h -------------------------------------------------------------------------------- /NSIndexSetSymDiffExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/NSIndexSetSymDiffExtension.m -------------------------------------------------------------------------------- /NSMutableArray+DYMovable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/NSMutableArray+DYMovable.h -------------------------------------------------------------------------------- /NSMutableArray+DYMovable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/NSMutableArray+DYMovable.m -------------------------------------------------------------------------------- /Phoenix Slides.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/Phoenix Slides.entitlements -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/README.md -------------------------------------------------------------------------------- /SlideshowWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/SlideshowWindow.h -------------------------------------------------------------------------------- /SlideshowWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/SlideshowWindow.m -------------------------------------------------------------------------------- /UKPrefsPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/UKPrefsPanel.h -------------------------------------------------------------------------------- /UKPrefsPanel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/UKPrefsPanel.m -------------------------------------------------------------------------------- /VDKQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/VDKQueue.h -------------------------------------------------------------------------------- /VDKQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/VDKQueue.m -------------------------------------------------------------------------------- /brokendoc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/brokendoc.tif -------------------------------------------------------------------------------- /creevey.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/creevey.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /dcraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/dcraw.c -------------------------------------------------------------------------------- /dcraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/dcraw.h -------------------------------------------------------------------------------- /de.lproj/CreeveyWindow.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/de.lproj/CreeveyWindow.strings -------------------------------------------------------------------------------- /de.lproj/DYJpegtranPanel.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/de.lproj/DYJpegtranPanel.strings -------------------------------------------------------------------------------- /de.lproj/EXIF.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/de.lproj/EXIF.strings -------------------------------------------------------------------------------- /de.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/de.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /de.lproj/Phoenix Slides Help/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/de.lproj/Phoenix Slides Help/index.html -------------------------------------------------------------------------------- /de.lproj/ThumbnailContextMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/de.lproj/ThumbnailContextMenu.strings -------------------------------------------------------------------------------- /de.lproj/creeveyhelp.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/de.lproj/creeveyhelp.rtf -------------------------------------------------------------------------------- /en.lproj/EXIF.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/en.lproj/EXIF.strings -------------------------------------------------------------------------------- /en.lproj/Phoenix Slides Help/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/en.lproj/Phoenix Slides Help/index.html -------------------------------------------------------------------------------- /en.lproj/creeveyhelp.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/en.lproj/creeveyhelp.rtf -------------------------------------------------------------------------------- /es.lproj/CreeveyWindow.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/es.lproj/CreeveyWindow.strings -------------------------------------------------------------------------------- /es.lproj/DYJpegtranPanel.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/es.lproj/DYJpegtranPanel.strings -------------------------------------------------------------------------------- /es.lproj/EXIF.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/es.lproj/EXIF.strings -------------------------------------------------------------------------------- /es.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/es.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /es.lproj/Phoenix Slides Help/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/es.lproj/Phoenix Slides Help/index.html -------------------------------------------------------------------------------- /es.lproj/ThumbnailContextMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/es.lproj/ThumbnailContextMenu.strings -------------------------------------------------------------------------------- /es.lproj/creeveyhelp.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/es.lproj/creeveyhelp.rtf -------------------------------------------------------------------------------- /exiftags/DYExiftags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/exiftags/DYExiftags.h -------------------------------------------------------------------------------- /exiftags/DYExiftags.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/exiftags/DYExiftags.m -------------------------------------------------------------------------------- /exiftags/asahi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/exiftags/asahi.c -------------------------------------------------------------------------------- /exiftags/canon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/exiftags/canon.c -------------------------------------------------------------------------------- /exiftags/casio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/exiftags/casio.c -------------------------------------------------------------------------------- /exiftags/exif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/exiftags/exif.c -------------------------------------------------------------------------------- /exiftags/exif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/exiftags/exif.h -------------------------------------------------------------------------------- /exiftags/exifgps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/exiftags/exifgps.c -------------------------------------------------------------------------------- /exiftags/exifint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/exiftags/exifint.h -------------------------------------------------------------------------------- /exiftags/exifutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/exiftags/exifutil.c -------------------------------------------------------------------------------- /exiftags/fuji.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/exiftags/fuji.c -------------------------------------------------------------------------------- /exiftags/leica.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/exiftags/leica.c -------------------------------------------------------------------------------- /exiftags/makers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/exiftags/makers.c -------------------------------------------------------------------------------- /exiftags/makers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/exiftags/makers.h -------------------------------------------------------------------------------- /exiftags/minolta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/exiftags/minolta.c -------------------------------------------------------------------------------- /exiftags/nikon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/exiftags/nikon.c -------------------------------------------------------------------------------- /exiftags/olympus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/exiftags/olympus.c -------------------------------------------------------------------------------- /exiftags/panasonic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/exiftags/panasonic.c -------------------------------------------------------------------------------- /exiftags/sanyo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/exiftags/sanyo.c -------------------------------------------------------------------------------- /exiftags/sigma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/exiftags/sigma.c -------------------------------------------------------------------------------- /exiftags/tagdefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/exiftags/tagdefs.c -------------------------------------------------------------------------------- /exiftags/timevary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/exiftags/timevary.c -------------------------------------------------------------------------------- /exiftags/timevary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/exiftags/timevary.h -------------------------------------------------------------------------------- /fr.lproj/CreeveyWindow.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/fr.lproj/CreeveyWindow.strings -------------------------------------------------------------------------------- /fr.lproj/DYJpegtranPanel.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/fr.lproj/DYJpegtranPanel.strings -------------------------------------------------------------------------------- /fr.lproj/EXIF.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/fr.lproj/EXIF.strings -------------------------------------------------------------------------------- /fr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/fr.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /fr.lproj/ThumbnailContextMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/fr.lproj/ThumbnailContextMenu.strings -------------------------------------------------------------------------------- /fr.lproj/creeveyhelp.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/fr.lproj/creeveyhelp.rtf -------------------------------------------------------------------------------- /general.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/general.gif -------------------------------------------------------------------------------- /it.lproj/CreeveyWindow.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/it.lproj/CreeveyWindow.strings -------------------------------------------------------------------------------- /it.lproj/DYJpegtranPanel.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/it.lproj/DYJpegtranPanel.strings -------------------------------------------------------------------------------- /it.lproj/EXIF.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/it.lproj/EXIF.strings -------------------------------------------------------------------------------- /it.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/it.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /it.lproj/Phoenix Slides Help/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/it.lproj/Phoenix Slides Help/index.html -------------------------------------------------------------------------------- /it.lproj/ThumbnailContextMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/it.lproj/ThumbnailContextMenu.strings -------------------------------------------------------------------------------- /it.lproj/creeveyhelp.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/it.lproj/creeveyhelp.rtf -------------------------------------------------------------------------------- /libjpeg/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/libjpeg/jconfig.h -------------------------------------------------------------------------------- /libjpeg/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/libjpeg/jmorecfg.h -------------------------------------------------------------------------------- /libjpeg/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/libjpeg/jpeglib.h -------------------------------------------------------------------------------- /libjpeg/libjpeg.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/libjpeg/libjpeg.a -------------------------------------------------------------------------------- /loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/loading.png -------------------------------------------------------------------------------- /loop_forward.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/loop_forward.tiff -------------------------------------------------------------------------------- /main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/main.m -------------------------------------------------------------------------------- /mul.lproj/MainMenu.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/mul.lproj/MainMenu.xcstrings -------------------------------------------------------------------------------- /mul.lproj/PrefsWin.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/mul.lproj/PrefsWin.xcstrings -------------------------------------------------------------------------------- /multipledocs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/multipledocs.gif -------------------------------------------------------------------------------- /nib2ib-strings.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/nib2ib-strings.pl -------------------------------------------------------------------------------- /phxslides.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/phxslides.icns -------------------------------------------------------------------------------- /slideshow.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/slideshow.tif -------------------------------------------------------------------------------- /version.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/version.html -------------------------------------------------------------------------------- /zh-Hant.lproj/CreeveyWindow.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/zh-Hant.lproj/CreeveyWindow.strings -------------------------------------------------------------------------------- /zh-Hant.lproj/DYJpegtranPanel.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/zh-Hant.lproj/DYJpegtranPanel.strings -------------------------------------------------------------------------------- /zh-Hant.lproj/EXIF.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/zh-Hant.lproj/EXIF.strings -------------------------------------------------------------------------------- /zh-Hant.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | CFBundleHelpBookName = "Phoenix Slides 輔助說明"; -------------------------------------------------------------------------------- /zh-Hant.lproj/Phoenix Slides Help/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/zh-Hant.lproj/Phoenix Slides Help/index.html -------------------------------------------------------------------------------- /zh-Hant.lproj/ThumbnailContextMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/zh-Hant.lproj/ThumbnailContextMenu.strings -------------------------------------------------------------------------------- /zh-Hant.lproj/creeveyhelp.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gobbledegook/creevey/HEAD/zh-Hant.lproj/creeveyhelp.rtf --------------------------------------------------------------------------------