Commit Graph

1211 Commits

Author SHA1 Message Date
Ian Gilman
6723450a9a Upped version number to 0.9.121 2013-02-27 12:00:34 -08:00
Ian Gilman
6b492f395d Fixed a bug with "grunt publish"; was using the wrong paths 2013-02-27 10:36:19 -08:00
Ian Gilman
d2b9257bc4 Added "grunt publish" command for copying to site-build 2013-02-27 09:59:59 -08:00
Chris Thatcher
65cc3f55e9 Merge pull request #21 from openseadragon/pinchzoompoint
patch for pinch zoom point.
2013-02-27 06:53:20 -08:00
thatcher
361052656c patch for pinch zoom point. initial two point touch midpoint is used for duration of pinch-zoom operation. references #17 2013-02-27 06:57:06 -05:00
thatcher
2372968518 refs #4 - have noticed navigator is often blurry when rendered. changing blendTime can alleviate or worsen this issue if it is more or less than the animationTime (respectively). Im setting this to the value equal to animationTime as a hot patch while we figure out why these two variables are coupled. 2013-02-26 23:52:23 -05:00
iangilman
72d5ee8fb8 Merge pull request #19 from h4l/android-compat
Fix handling of touchmove events on Android
2013-02-26 10:45:31 -08:00
Hal Blackburn
3eac183d8c Fix handling of touchmove events on Android
Dragging the canvas did not work on Android devices as the === check for
lastTouch and the current event was always evaluating to false.
Presumably Safari on iOS re-uses the same Touch object for touchmove
events with the same finger, whereas Chrome/Firefox on Android creates
new Touch objects for each event (so the === evaluates false). The code
now compares Touch.identifier to ensure the new touch event is from the
same finger as the initiating touchstart.
2013-02-26 11:50:11 +00:00
Ian Gilman
6b0cb75ed4 Updated build instructions 2013-02-21 13:46:11 -08:00
Ian Gilman
10f2bbe535 Limiting Travis badge to just the master branch 2013-02-21 13:20:32 -08:00
Ian Gilman
fda4f17675 Grunt fix for Travis 2013-02-21 13:20:18 -08:00
Ian Gilman
8074b338d1 Fixed compress and moved build to build/openseadragon
The zip and tar now go into build next to build/openseadragon
2013-02-21 11:56:16 -08:00
Ian Gilman
98e8289c9b Test now works again 2013-02-21 11:17:05 -08:00
Ian Gilman
34e55d86d5 Fixed banned and changed quote style 2013-02-21 10:54:11 -08:00
Ian Gilman
d6dfc15351 Updated gruntfile and package.json for grunt 0.4.0 2013-02-21 10:45:14 -08:00
Ian Gilman
347fbfd596 Renamed gruntfile 2013-02-21 10:27:21 -08:00
thatcher
c2e0e41a6d undo change to base value for server, breaks tests obviously sorry 2013-02-20 09:31:35 -05:00
thatcher
070a48f6c8 fixing jsdocs that caused recursion 2013-02-19 22:53:54 -05:00
Ian Gilman
6e99a5dd42 Added Travis build badge 2013-02-18 10:03:04 -08:00
Ian Gilman
e584911bab Added grunt package to readme 2013-02-15 11:00:07 -08:00
Ian Gilman
2d78e012a0 Now zipping and taring ("grunt package") 2013-02-15 10:58:57 -08:00
Ian Gilman
d179325f71 Added .travis.yml file 2013-02-14 14:23:24 -08:00
Ian Gilman
792d51de8c Kicking off a Travis build 2013-02-14 14:18:40 -08:00
Ian Gilman
05affbc7fc Excluding sublime text docs from sublime text project 2013-02-14 14:15:52 -08:00
Ian Gilman
1ed32a0d5d Better links in readme 2013-02-14 14:02:32 -08:00
Ian Gilman
145164eb84 Updated readme with correct build and test info 2013-02-14 13:59:40 -08:00
Ian Gilman
cd765581e6 Grunt now copies the images into the build folder 2013-02-14 13:24:50 -08:00
Ian Gilman
75bb765ca0 Removing built openseadragon.js from repo 2013-02-14 12:06:59 -08:00
Ian Gilman
9569ff1215 Removed JS Hint globals comment, since it's now in grunt 2013-02-14 12:04:47 -08:00
Ian Gilman
4e51b642ef Now properly setting version in build 2013-02-14 12:02:17 -08:00
Ian Gilman
d3b010d26e Added min, qunit, server, and watch tasks to grunt 2013-02-14 10:21:35 -08:00
Ian Gilman
607a4af860 First version of test files 2013-02-14 10:21:07 -08:00
Ian Gilman
964962a204 Added project file for Sublime Text 2 2013-02-14 10:07:02 -08:00
Ian Gilman
4606ddb2ce Added gitignore 2013-02-14 10:07:02 -08:00
Ian Gilman
88b1cbf8c7 Added dependencies to package.json 2013-02-14 10:07:02 -08:00
thatcher
b4f041b9ab removing code specific to site-build 2013-02-14 12:33:10 -05:00
thatcher
fda24f343a added dozens of event hooks based on input from macreery's branch 2013-02-13 19:44:23 -05:00
thatcher
d8a3ccf5e8 dont compute NaN for opacity because FF doesnt like that, per macreery's branch, thanks 2013-02-13 17:20:05 -05:00
thatcher
27d2898818 added removeAllHandlers per macreery's branch, finally implemented removeHandler 2013-02-13 17:11:33 -05:00
thatcher
e851de80b8 added class names to viewer canvas and container per macreery's branch 2013-02-13 16:50:23 -05:00
thatcher
685f58d663 adding support for positional arguments for minLevel and maxLevel in DziTileSource per macreery's branch 2013-02-13 16:27:17 -05:00
thatcher
0540e834b4 refactoring after lint left an error related to drawer and overlays 2013-02-13 09:05:35 -05:00
thatcher
a0fd2b3324 added inital support for moving to a nodejs build with grunt. build only includes concant and lint. fixed all lint warning where appropriate and added lint inline ignores where appropriate. when build script is complete we will start transition to new repo. also currently researching how to prune unfriendly portion of history that make repo large due to large binary files in web app. I like git well enough but using branches for web apps unrelated to code base has made me weary once again of social web fads that force convention without long term consideration of cost. 2013-02-12 22:40:08 -05:00
thatcher
855e753225 some overlays work that had be be completed before finishing tile layers. added brief example of how to how host tiles of zoom.it 2013-02-10 22:53:51 -05:00
thatcher
aecf576c06 finished initial development of iiif info xml and json support, added example to site 2013-02-09 15:58:43 -05:00
thatcher
3f20018c75 correction for recent change which computed a highestLevel for drawer with max instead of min operation 2013-02-09 12:21:51 -05:00
thatcher
26f83e283a adding support for several new tile sources including iiif, osm and tms (osm and tms are thanks to seajax-utils project) 2013-02-08 16:00:22 -05:00
thatcher
d2d5828d8f adding support for several new tile sources including iiif, osm and tms (osm and tms are thanks to seajax-utils project) 2013-02-08 15:45:22 -05:00
thatcher
576c00b37d adding support for several new tile sources including iiif, osm and tms (osm and tms are thanks to seajax-utils project) 2013-02-08 09:21:28 -05:00
thatcher
792165fdf9 accidently left alwaysBlend global defaul set to true during development. Looking forward to our new org based repo where I'll be constrained more than my current wild-west repo, sorry. corrections also to pan constrainment details which came to the forefront while working on collections zoom and panconstraints. Added new ui feature page to demo basics. 2013-02-05 21:26:40 -05:00