Skip to content

Commit

Permalink
Merge pull request #343 from andygup/objectid
Browse files Browse the repository at this point in the history
v2.8.2
  • Loading branch information
andygup committed May 19, 2015
2 parents 659d787 + 44bd77c commit 2ba919e
Show file tree
Hide file tree
Showing 12 changed files with 20 additions and 13 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# offline-editor-js - Changelog

## Version 2.8.2 - May 19, 2015

No breaking changes. Recommended update.

**Enhancements**
* Fixes sync error when returning online after updating a new edit offline.

## Version 2.8.1 - May 11, 2015

No breaking changes.
Expand Down
4 changes: 2 additions & 2 deletions dist/offline-edit-min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/offline-edit-src.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! offline-editor-js - v2.8.1 - 2015-05-11
/*! offline-editor-js - v2.8.2 - 2015-05-19
* Copyright (c) 2015 Environmental Systems Research Institute, Inc.
* Apache License*/
/*jshint -W030 */
Expand Down Expand Up @@ -913,7 +913,7 @@ define([

var deferred = new Deferred();

var id = layerUrl + "/" + graphic.attributes.objectid;
var id = layerUrl + "/" + graphic.attributes[self.DB_UID];

self._editStore.getEdit(id,function(success,result){
if (success) {
Expand Down
2 changes: 1 addition & 1 deletion dist/offline-tiles-advanced-min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/offline-tiles-advanced-src.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! offline-editor-js - v2.8.1 - 2015-05-11
/*! offline-editor-js - v2.8.2 - 2015-05-19
* Copyright (c) 2015 Environmental Systems Research Institute, Inc.
* Apache License*/
define([
Expand Down
2 changes: 1 addition & 1 deletion dist/offline-tiles-basic-min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/offline-tiles-basic-src.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! offline-editor-js - v2.8.1 - 2015-05-11
/*! offline-editor-js - v2.8.2 - 2015-05-19
* Copyright (c) 2015 Environmental Systems Research Institute, Inc.
* Apache License*/
define([
Expand Down
2 changes: 1 addition & 1 deletion dist/offline-tpk-min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/offline-tpk-src.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! offline-editor-js - v2.8.1 - 2015-05-11
/*! offline-editor-js - v2.8.2 - 2015-05-19
* Copyright (c) 2015 Environmental Systems Research Institute, Inc.
* Apache License*/
/**
Expand Down
2 changes: 1 addition & 1 deletion lib/edit/offlineFeaturesManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -910,7 +910,7 @@ define([

var deferred = new Deferred();

var id = layerUrl + "/" + graphic.attributes.objectid;
var id = layerUrl + "/" + graphic.attributes[self.DB_UID];

self._editStore.getEdit(id,function(success,result){
if (success) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "offline-editor-js",
"version": "2.8.1",
"version": "2.8.2",
"description": "Lightweight set of libraries for working offline with map tiles and ArcGIS feature services",
"author": "Andy Gup <agup@esri.com> (http://blog.andygup.net)",
"license": "Apache 2",
Expand Down
2 changes: 1 addition & 1 deletion samples/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"appHomePage": "appcache-features.html",
"optimizedApiURL": "../samples/jsolib",
"arcGISBaseURL": "http://js.arcgis.com/3.11",
"version": "2.8.1",
"version": "2.8.2",
"private": true,
"description": "manifest generator project",
"repository": {
Expand Down

0 comments on commit 2ba919e

Please sign in to comment.