Nice job on alpha GS 3.4.0 Alpha v 1 - Printable Version +- GetSimple Support Forum (http://get-simple.info/forums) +-- Forum: GetSimple (http://get-simple.info/forums/forumdisplay.php?fid=3) +--- Forum: Developer Discussions (http://get-simple.info/forums/forumdisplay.php?fid=8) +--- Thread: Nice job on alpha GS 3.4.0 Alpha v 1 (/showthread.php?tid=10401) Pages:
1
2
|
Nice job on alpha GS 3.4.0 Alpha v 1 - cobber - 2018-02-26 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 RE: Nice job on alpha GS 3.4.0 Alpha v 1 - shawn_a - 2018-02-26 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 RE: Nice job on alpha GS 3.4.0 Alpha v 1 - shawn_a - 2018-02-27 Here is the open projects for 3.4 https://github.com/GetSimpleCMS/GetSimpleCMS/projects/1 and the master issue for it https://github.com/GetSimpleCMS/GetSimpleCMS/issues/467 RE: Nice job on alpha GS 3.4.0 Alpha v 1 - Carlos - 2018-03-02 I think that no one posted it so here's the download link for this alpha version :-) https://github.com/GetSimpleCMS/GetSimpleCMS/releases/tag/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 RE: Nice job on alpha GS 3.4.0 Alpha v 1 - shawn_a - 2018-03-02 Here are the tasks that need to be done https://github.com/GetSimpleCMS/GetSimpleCMS/projects/2 RE: Nice job on alpha GS 3.4.0 Alpha v 1 - Oleg06 - 2018-03-30 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. RE: Nice job on alpha GS 3.4.0 Alpha v 1 - Carlos - 2018-03-30 Perhaps you mean that components are being sorted (ordered) by creation date, instead of by name (title). RE: Nice job on alpha GS 3.4.0 Alpha v 1 - shawn_a - 2018-03-30 I think they mean link to page anchor by id? RE: Nice job on alpha GS 3.4.0 Alpha v 1 - Oleg06 - 2018-03-30 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 RE: Nice job on alpha GS 3.4.0 Alpha v 1 - Carlos - 2018-03-30 @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? RE: Nice job on alpha GS 3.4.0 Alpha v 1 - Oleg06 - 2018-03-30 I use for themes GS Custom Settings http://get-simple.info/extend/plugin/gs-custom-settings/913/ I can just create additional fields, but I would like to use the default site settings. RE: Nice job on alpha GS 3.4.0 Alpha v 1 - shawn_a - 2018-03-31 Um yeah thats what I said RE: Nice job on alpha GS 3.4.0 Alpha v 1 - shawn_a - 2018-03-31 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 RE: Nice job on alpha GS 3.4.0 Alpha v 1 - Oleg06 - 2018-03-31 Thanks, Shawn. RE: Nice job on alpha GS 3.4.0 Alpha v 1 - Carlos - 2018-03-31 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/GetSimpleCMS/archive/master.zip RE: Nice job on alpha GS 3.4.0 Alpha v 1 - Oleg06 - 2018-03-31 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. RE: Nice job on alpha GS 3.4.0 Alpha v 1 - shawn_a - 2018-04-01 Yeah I was gonna suggest that id also, But not all browsers can link to any id, some only work right with anchors. RE: Nice job on alpha GS 3.4.0 Alpha v 1 - Carlos - 2018-04-01 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. RE: Nice job on alpha GS 3.4.0 Alpha v 1 - shawn_a - 2018-04-01 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 RE: Nice job on alpha GS 3.4.0 Alpha v 1 - Oleg06 - 2018-04-01 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. RE: Nice job on alpha GS 3.4.0 Alpha v 1 - shawn_a - 2018-04-02 you can also edit admin files, like admin.xss, admin.xml, editror.cs and config.js in it now RE: Nice job on alpha GS 3.4.0 Alpha v 1 - Carlos - 2018-04-03 (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? RE: Nice job on alpha GS 3.4.0 Alpha v 1 - shawn_a - 2018-04-03 Probably a feature so the ones you actually use are on top? RE: Nice job on alpha GS 3.4.0 Alpha v 1 - datiswous - 2018-04-25 Some feedback after installing new Alpha (or should I make a new topic?):
RE: Nice job on alpha GS 3.4.0 Alpha v 1 - shawn_a - 2018-04-26 Thumbnails only show if you filter image, can override gsconfig Alpha has no versions only builds it updates constantly Settings is for admin email, user is user email, i guess it could prefill.. Screenshot? What do you mean background? Active vs inactive? |