forked from DigitPaint/skyline
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCHANGELOG
executable file
·123 lines (104 loc) · 5.92 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
*3.0.8 (December 18, 2009)*
* Added support for SQLite3
* Always make the last saved variant the default variant
* Fix longstanding bug which can be caused by copy-paste from one wysiwyg section to another
* Make the default templates more bullet-proof
* Implemented capture functionality on RendererHelper#assign
* Add some helper methods to the ContentCollectionSection. Simplified the templates accordingly
* Added loads and loads of API documentation
* Deprecate the settings helper in favour of Settings#get and Settings#get_page
* Deprecate page_sections_per_column in favour of sections_per_column
*3.0.7 (December 8, 2009)*
* Minor optimalisation to make (auto)loading work better
* Added the skylincms binary to bootstrap new implementation
* Made skyline compatible with standard Rails 2.3 config.gem
* Render 404 instead of 500 if a requested MediaFile isn't found
* Compatible with Rails 2.3.5
* Files in the media library now have support for date as metadata
* Users must now be unique (by email address)
* Added renderer.object method to return the object currently being rendered
* Cleanup of renderer, nested render_collection now works correctly
* Renderer.peek_until does not skip forward in the collection anymore, render_until does
* Remove "Thin" as a dependency.
* Unified the display of the different browsers when a file/page/link is selected.
* PRE and CODE tags are filtered when pasting into wysiwygs
* Skyline doesn't break if you don't have app/templates
* The Page URL part is now validated on publication
* Linksections without valid links now validate correctly
* External links in wysiwygs are now stored in ReferableUri too
* Fix memory leak related to Article::Data classes
* Replaced all image buttons with styled tags
* Implemented RedirectSection
* Added branding possibity to Skyline config
* Moved implementation specific roles to implementation seed file
* Allow roles to be system (just like users)
* Added configuration to allow implementations to inject their own Skyline stylesheets
* Refactored Pages to Article in preparation of article editing an PageFragments
* Added PageFragements
* Automatically scroll to the currently selected page in the tree
* Implemented PageFragmentSection
* Sections and link_section_links are now flagged for deletion again after a submit fails
* Added password confirmation field in user edit screen
* Added current password field when editing your own user
* A user now can't edit his own role
* A user now can't delete himself
* Refactored custom_url of all models to Skyline::ReferableUri
* Removed PageObserver (used for indexing) in favor of general of SearchableItem module
* HTML tags from indexed strings in Solr are now stripped
* Articles (except Pages) can now be previewed inside a real Page
* It is now possible to configure which sections are available for what kinds of Article classes
* A subclass of Article has now more influence on the meta panel
* Moved gem dependencies from rails/init.rb to Gemfile
* Developed plugin features
* Ready for open source release
* Define all offsetparents for tree elements
*3.0.6 (October 2, 2009)*
* Fix drag of tree elements when there was scroll. (#67) Minor improvements on visual drag-cues.
*3.0.5 (September 10, 2009)*
* Fix issue with IE6 and external links. (resolves #13)
* Removed memoize from page.rb
*3.0.4 (August 28, 2009)*
* Import functions of content model can now return error messages
*3.0.3 (August 6, 2009)*
* Add better page locking, as long as someone is editing a variant it can't be edited by someone else.
* Add support for edit "takeover" so you can take over editing even if someone else is editing a variant.
* Add "variant_force_edit" right to restrict access to the "takeover".
* Added English language file
* Added "mootools-on-rails" as a vendor branch, it's highly modified anyway.
* Make the config/initializers/skyline_configuration.rb file optional
* Add some default helpers to Skyline::Renderer
* Always load all app/helpers/* helpers when using renderer.
* Removed support for @Page in favour of @page_class in rendering
* Removed support for local variable "page" in favour of "page_version" in rendering
* Move ActionView::Base.field_error_proc and ActionView::Base.default_form_builder to initializers/rails_defaults.rb
* Add RAW/HTML section so users can inject raw HTML into their pages.
* Add initial version of Media section.
* Refactored sections that use the browse dialogs. The javascript to select a link/image is now unified.
* Deprecate renderer.page in favour of renderer.page_version, also expose it through a helper.
* Add support for passing a block to renderer#render_collection.
* Added settings helpers to default renderer.
* Add seed file for Page and MediaNode roots.
* Cleanup functionality added to delete unuused tags
* Moved selection of content items (for ContentItemSection) to model and ContentItem module
*3.0.2.1 (July 23, 2009)*
Bugfix release, mainly for monitoring deletions of InlineRefs.
* Add version number to login screen.
* Add logger statement when InlineRef's are deleted, watch for [InlineRef].
* Nullify RefObject#refering_id on all links when a page is deleted
*3.0.2 (July 23, 2009)*
* Added localization for TinyMCE through skyline localization file
* Automatically select target="_blank" if selecting a file or external link
when making a new link from wysiwyg
* Added html code editor for TinyMCE
* Date editor now accepts options for the year field
* A LinkSectionLink is now only external when its custom_url fields starts with a URI scheme
* Added tinymce_edit_html right for use with Skyline.Editor
* Added TinyMCE Skyline Contextmenu plugin
* Added TinyMCE Skyline Table plugin (edit simple tables)
*3.0.1 (July 21, 2009)*
* Load helpers with Skyline.root as base
* The browser controllers are now descendants of Skyline::ApplicationController
* Update TinyMCE to 3.2.5
* Bug: LinkSectionLink isn't in module Skyline::Sections
*3.0.0 (July 20, 2009)*
* Initial Skyline 3.0.0 version released as a Rails plugin.