From faf113c5b6ef3f122ca34f39fe2bf0673773f6f1 Mon Sep 17 00:00:00 2001 From: Sam Georges Date: Mon, 29 Sep 2014 09:42:53 +1000 Subject: [PATCH 01/19] * Build 149 --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e2ed0d4a1..1db05f0c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -* **Build 14x** (2014-09-xx) +* **Build 149** (2014-09-29) - Added new `hint` form field type (see Backend > Forms docs). - Added new `containerAttributes` property to form fields (see Backend > Forms docs). From e619deb445a41a4147cf472cc7b30bbdadf05359 Mon Sep 17 00:00:00 2001 From: Sam Georges Date: Mon, 29 Sep 2014 09:52:09 +1000 Subject: [PATCH 02/19] Field attributes have had an API change `$field->attributes` should now be `$field->getAttributes()`. --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1db05f0c8..1e7063362 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ * **Build 149** (2014-09-29) - Added new `hint` form field type (see Backend > Forms docs). - Added new `containerAttributes` property to form fields (see Backend > Forms docs). + - Field attributes have had an API change `$field->attributes` should now be `$field->getAttributes()`. * **Build 145** (2014-09-13) - Standard setting pages now have **Save** and **Save and Close** buttons. From 27708f7fa848b4f4dc1569d0b0557cc29a815754 Mon Sep 17 00:00:00 2001 From: Sam Georges Date: Mon, 29 Sep 2014 09:56:49 +1000 Subject: [PATCH 03/19] Fixes #633 - Return to previous keymap --- modules/backend/assets/js/october.hotkey.js | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/modules/backend/assets/js/october.hotkey.js b/modules/backend/assets/js/october.hotkey.js index 261b698c0..934d8a2ab 100644 --- a/modules/backend/assets/js/october.hotkey.js +++ b/modules/backend/assets/js/october.hotkey.js @@ -27,14 +27,9 @@ keysCount = keys.length, keyConditions = [], keyPressed = { shift: false, ctrl: false, cmd: false, alt: false }, - keyMap = {8: "backspace", 9: "tab", 10: "return", 13: "return", 16: "shift", 17: "ctrl", 18: "alt", 19: "pause", - 20: "capslock", 27: "esc", 32: "space", 33: "pageup", 34: "pagedown", 35: "end", 36: "home", - 37: "left", 38: "up", 39: "right", 40: "down", 45: "insert", 46: "del", 59: ";", 61: "=", - 96: "0", 97: "1", 98: "2", 99: "3", 100: "4", 101: "5", 102: "6", 103: "7", - 104: "8", 105: "9", 106: "*", 107: "+", 109: "-", 110: ".", 111 : "/", - 112: "f1", 113: "f2", 114: "f3", 115: "f4", 116: "f5", 117: "f6", 118: "f7", 119: "f8", - 120: "f9", 121: "f10", 122: "f11", 123: "f12", 144: "numlock", 145: "scroll", 173: "-", 186: ";", 187: "=", - 188: ",", 189: "-", 190: ".", 191: "/", 192: "`", 219: "[", 220: "\\", 221: "]", 222: "'"} + keyMap = {'esc':27, 'tab':9, 'space':32, 'return':13, 'enter':13, 'backspace':8, 'scroll':145, 'capslock':20, 'numlock':144, 'pause':19, + 'break':19, 'insert':45, 'home':36, 'delete':46, 'suppr':46, 'end':35, 'pageup':33, 'pagedown':34, 'left':37, 'up':38, 'right':39, 'down':40, + 'f1':112, 'f2':113, 'f3':114, 'f4':115, 'f5':116, 'f6':117, 'f7':118, 'f8':119, 'f9':120, 'f10':121, 'f11':122, 'f12':123} for (var i = 0; i < keysCount; i++) { keyConditions.push(makeCondition(trim(keys[i]))) From 17f282b1261715e9305be3f6cf338cd9eb64154a Mon Sep 17 00:00:00 2001 From: Sam Georges Date: Mon, 29 Sep 2014 10:01:28 +1000 Subject: [PATCH 04/19] Removes deprecated code --- modules/backend/controllers/editorpreferences/index.htm | 3 +-- modules/backend/controllers/groups/create.htm | 6 ++---- modules/backend/controllers/groups/update.htm | 6 ++---- modules/backend/controllers/users/create.htm | 6 ++---- modules/backend/controllers/users/myaccount.htm | 6 ++---- modules/backend/controllers/users/update.htm | 6 ++---- modules/cms/controllers/index/_content_toolbar.htm | 3 +-- modules/cms/controllers/index/_layout_toolbar.htm | 3 +-- modules/cms/controllers/index/_page_toolbar.htm | 3 +-- modules/cms/controllers/index/_partial_toolbar.htm | 3 +-- modules/system/controllers/maillayouts/create.htm | 6 ++---- modules/system/controllers/maillayouts/update.htm | 6 ++---- modules/system/controllers/mailtemplates/create.htm | 6 ++---- modules/system/controllers/mailtemplates/update.htm | 6 ++---- modules/system/controllers/settings/update.htm | 6 ++---- 15 files changed, 25 insertions(+), 50 deletions(-) diff --git a/modules/backend/controllers/editorpreferences/index.htm b/modules/backend/controllers/editorpreferences/index.htm index 26ec34f6e..25be31fb9 100644 --- a/modules/backend/controllers/editorpreferences/index.htm +++ b/modules/backend/controllers/editorpreferences/index.htm @@ -38,8 +38,7 @@ type="submit" data-request="onSave" data-request-data="redirect:0" - data-hotkey="ctrl+s" - data-hotkey-mac="cmd+s" + data-hotkey="ctrl+s, cmd+s" data-load-indicator="" class="btn btn-primary"> diff --git a/modules/backend/controllers/groups/create.htm b/modules/backend/controllers/groups/create.htm index 5f9bd728a..62f852781 100644 --- a/modules/backend/controllers/groups/create.htm +++ b/modules/backend/controllers/groups/create.htm @@ -17,8 +17,7 @@