Posts: 111
Threads: 43
Joined: Feb 2016
2018-02-26, 01:53:02
(This post was last modified: 2018-02-26, 02:06:23 by cobber.)
Just downloaded this a couple of mins after Shawn put it on Github. Nice! some of the little touches I've been thinking about have been implemented.
* A more attractive modern look without deviating from the original appearance
* Newer icons in the editor
* Tabs instead of the drop down options in page editor
* New theme 'edit snippets' option in side bar menu of theme tab
* Updated theme editor tab with clearly displayed pages at side
I think a round of applause needs to be given the those involved . . . well done guys
Posts: 5,955
Threads: 176
Joined: Sep 2011
Yeah it was kind of hacky, i will work on trying to get a real release out with documentation.
There are a ton of 3.4 needs feedback issues and the default options need to be finallized
Posts: 5,955
Threads: 176
Joined: Sep 2011
Posts: 3,137
Threads: 104
Joined: Mar 2010
I think that no one posted it so here's the download link for this alpha version :-)
https://github.com/GetSimpleCMS/GetSimpl...ag/3.4.0a1
BTW, some other noticeable backend changes are:
* New file uploader (no Flash)
* Renewed theme editor
* Collapsible subpages in Page manager
* User profile and Settings are now separate pages
Posts: 5,955
Threads: 176
Joined: Sep 2011
Posts: 1,637
Threads: 74
Joined: Apr 2010
Please make a transition to the component menu for the identifier by the component name, not by the numbers. Numbers change with the addition of new components and there is no way to link to a particular component.
Google translation.
Posts: 3,137
Threads: 104
Joined: Mar 2010
Perhaps you mean that components are being sorted (ordered) by creation date, instead of by name (title).
Posts: 5,955
Threads: 176
Joined: Sep 2011
I think they mean link to page anchor by id?
Posts: 1,637
Threads: 74
Joined: Apr 2010
I would like to give the user the ability to modify the component I created. And if the number of components will change, then the reference to a specific component will change.
http://prntscr.com/iy93bu
http://prntscr.com/iy949g
Posts: 3,137
Threads: 104
Joined: Mar 2010
@tablatronix
Yes, it seems Oleg means the anchors: #section-0, etc. You cannot make a link edit a specific component, as it may change. (Solution would be having the component slug in the anchor?)
Anyway, in GS 3.4 alpha I don't get components sorted by name, but by creation date :-o
@Oleg06
So you have this issue with any GS version, don't you? (in this thread we were talking about 3.4 alpha)
Is the second screenshot from a plugin? If so, which one?
Posts: 1,637
Threads: 74
Joined: Apr 2010
2018-03-30, 20:44:01
(This post was last modified: 2018-03-30, 20:55:30 by Oleg06.)
I use for themes GS Custom Settings http://get-simple.info/extend/plugin/gs-...tings/913/
I can just create additional fields, but I would like to use the default site settings.
Posts: 5,955
Threads: 176
Joined: Sep 2011
Um yeah thats what I said
Posts: 5,955
Threads: 176
Joined: Sep 2011
I added named anchors to handle this, I will add js for id renames later, logic and links will still use id numbers so we do not have to deal with renaming slugs, that is pretty much why it is like that. But if you just want to link to the section by slug you can now. I need to fix auto focus and add js listeners also for this but it works good enough
Posts: 1,637
Threads: 74
Joined: Apr 2010
Posts: 3,137
Threads: 104
Joined: Mar 2010
Tested, works fine.
Note that you have to link to link to the slug, not to the title.
e.g.: components.php# sidebar, not components.php# Sidebar
Have you tested, Oleg?
Latest GS 3.4.0 alpha is https://github.com/GetSimpleCMS/GetSimpleCMS - download: https://github.com/GetSimpleCMS/GetSimpl...master.zip
Posts: 1,637
Threads: 74
Joined: Apr 2010
2018-03-31, 21:52:56
(This post was last modified: 2018-04-01, 03:02:18 by Oleg06.)
I had to do so because #sidebar belongs to the side column: components.php#section-sidebar.
Code: <div class="compdiv" id="section-'.$component->slug.'">
Code: <a id="divlist-' . $item . '" href="#section-'.$component->slug.'" class="component">' . $component->title . '</a>
Checked Version: 3.4.0 a, failed to add snippet, but loved the expansion of components to the entire window, as the components for rendering are large and difficult to edit. Installed on php5.3 and php7.
Posts: 5,955
Threads: 176
Joined: Sep 2011
Yeah I was gonna suggest that id also,
But not all browsers can link to any id, some only work right with anchors.
Posts: 3,137
Threads: 104
Joined: Mar 2010
Oleg: Shawn has just commited a fix, now you can add both snippets and components. You can re-upload (only changes in template_functions.php) and now it should work.
Posts: 5,955
Threads: 176
Joined: Sep 2011
I had to change this to "id_compslug"
To prevent collisions with other ids, since slugs are variable, it was breaking stuff, so i added a prefix of "id_"
eg, sidebar is pretty generic and not unique breaking css and js
Posts: 1,637
Threads: 74
Joined: Apr 2010
2018-04-01, 03:27:22
(This post was last modified: 2018-04-01, 03:34:06 by Oleg06.)
Yes, snippets are very useful feature. 
In the theme editor, all the files in the sidebar and in folders, it's also cool. I usually have a lot of js scripts and css files in the themes and it's very difficult to find the necessary files in the drop-down list.
Posts: 5,955
Threads: 176
Joined: Sep 2011
you can also edit admin files, like admin.xss, admin.xml, editror.cs and config.js in it now
Posts: 3,137
Threads: 104
Joined: Mar 2010
(I think I already reported this on discord)
Components are no longer sorted alphabetically (same in the sidebar anchor links), but -it seems- by creation date. It happens with snippets too.
Is it only me?
Posts: 5,955
Threads: 176
Joined: Sep 2011
Probably a feature so the ones you actually use are on top?
|