-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
merging release/1.32 to develop (#3209)
* use older chromedriver version (#3116) * add error/success notifications for unpublish actions (#3091) * add error/success notifications for unpublish actions Unpublish action can fail when the item is in a package. SDFID-573 * use error message from server * release 1.31.2 * Fix left hand sidebar configuration issues (#3132) * fix permissions check so it works with any route set as default, not only the dashboard. * Include a link to personal space" in hamburger menu so users who don't have a dashboard privilege can get back to authoring view. * fix lint * copy metadata in media editor based on picture schema (#3136) * [SDANSA-327] List of routed desk (#3140) * use component for editing metadata in gallery (#3150) it handles pasting html properly unlike contenteditable SDANSA-330 * description field is missing due to markup SDANSA-330 * re-implement hiding of nested items (#3146) * re-implement hiding of nested items when it's activated filter out nested items via query and fetch previous items from server when needed. SDFID-580 SDESK-4709 * [SDESK-4708] Create filter condition on on existence of featuremedia (#3152) * Internal attachments (#3120) * wip * Disable internal attachment links * Render attachment logic * lint * Missing trailing commas * Refactor attachment list component * Div -> null * adjust height automatically for sms text input (#3159) SDANSA-332 * implement sent items filter in personal space (#3163) * implement sent items filter in personal space SDANSA-339 * [SDANSA-329] fix(carousel): Fixed issue with carousel on resize (#3160) * feix(carousel): Fixed issue with carousel on resize * fix(resize): Added event trigger for splitter resize also * feat(event): Moved resize event to superdeskView component * fix(import): Removed unused import * add config for editor3 draft features (#3180) * add config for browser spell check in editor3 * make strip pasted html configurable via content profile SDANSA-341 * Remove responsive iframes (#3184) * Remove responsive iframes * Display help message on tooltip * Use gettext instead of translate tags * As a user I want to "save, close, and update" a story I am editing. (SDBELGA-197) (#3164) * As a user I want to "save, close, and update" a story I am editing. (SDBELGA-197) * fix lint * [SDESK-4790] - Shortcut buttons checking user privileges (#3182) * [SDESK-4790] - Shortcut buttons checking user privileges * Few improvements per comments and an error message is added * fix(products): Fixed issue with removing products after reverting version (#3178) * fix(products): Fixed issue with removing products after reverting version * fix(without): Fixed issue with without on removeTerms directive * Add order to the media items when added to media gallery. (SDESK-4423) (#3158) * Add order to the media-gallery items when added to media gallery. (SDESK-4423) * fix comment * fix(kill): Item schema not loading when killing from archived (#3149) * draft did remove some styles, but not all (#3197) * draft did remove some styles, but not all * fix line breaks when pasting plain text SDANSA-341 * Fix editor3 paste initial space (#3202) * fix missing spaces when pasting text to editor3 hacking draft convertFromHTML SDANSA-341 SDANSA-348 * fix invisible ingest routing schemas (#3206) * fix invisible ingest routing schemas temporary fix for missing pagination SDANSA-350 * fix ingest routing schema limit in ingest source modal (#3207) SDANSA-350 * Don't duplicate annotation from library when reusing it (#3200) SDESK-4800 * Fix annotation library breaking after editing one item (#3204) SDESK-4801 If the item was not on page 1, updating the item would cause pagination to go back to page 1 and that was making the component not find the open item inside the current fetched data (cause it was looking on page 1 instead of page X) * fix tests
- Loading branch information
Showing
45 changed files
with
2,374 additions
and
586 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,4 +11,5 @@ export interface IAttachment { | |
filename: string; | ||
description: string; | ||
media: IMedia; | ||
internal: boolean; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
import MediaMetadataEditorDirective from './MediaMetadataEditorDirective'; | ||
import MediaMetadataViewDirective from './MediaMetadataViewDirective'; | ||
import MediaCopyMetadataDirective from './MediaCopyMetadataDirective'; | ||
import MediaFieldsController from './media-fields-controller'; | ||
|
||
export default angular.module('superdesk.apps.authoring.media', []) | ||
.directive('sdMediaMetadataEditor', MediaMetadataEditorDirective) | ||
.directive('sdMediaMetadataView', MediaMetadataViewDirective) | ||
.directive('sdMediaCopyMetadata', MediaCopyMetadataDirective) | ||
.controller('MediaFieldsController', MediaFieldsController) | ||
; |
Oops, something went wrong.