Page 4 of 8

Re: OpenCart Alpha 3.1.0.0 has been released

Posted: Fri Oct 05, 2018 8:15 pm
by storiqax
ADD Creative wrote:
Fri Oct 05, 2018 1:13 am
It was in version 2 by default. Removed in version 3.
Exactly :)

Re: OpenCart Alpha 3.1.0.0 has been released

Posted: Fri Oct 05, 2018 9:10 pm
by IP_CAM
Oops, I only know it as an Extension, for my Version, but if it existed in OC-2,
it should not be so hard, to make it work in OC-3, I assume...
Ernie

Re: OpenCart Alpha 3.1.0.0 has been released

Posted: Tue Oct 16, 2018 1:19 pm
by purpletreesoft
Hi Daniel/Others ,
Do you know which areas are majorly redeveloped, and which kind of extensions can break on version 3.1?
We have some extensions and want to understand which ones we need to rewrite.

Re: OpenCart Alpha 3.1.0.0 has been released

Posted: Tue Oct 16, 2018 11:19 pm
by OSWorX
purpletreesoft wrote:
Tue Oct 16, 2018 1:19 pm
Hi Daniel/Others ,
Do you know which areas are majorly redeveloped, and which kind of extensions can break on version 3.1?
We have some extensions and want to understand which ones we need to rewrite.
In 1 line: all.
Why?
Because if you look at the used icon libraries, nearly each icon name will change.
Samples (breadcrumbs):
OC 2.3.x

Code: Select all

<ul class="breadcrumb">
        <?php foreach ($breadcrumbs as $breadcrumb) { ?>
        <li><a href="<?php echo $breadcrumb['href']; ?>"><?php echo $breadcrumb['text']; ?></a></li>
        <?php } ?>
      </ul>
OC 3.0.x

Code: Select all

<ul class="breadcrumb">
        {% for breadcrumb in breadcrumbs %}
        <li><a href="{{ breadcrumb.href }}">{{ breadcrumb.text }}</a></li>
        {% endfor %}
      </ul>
OC 3.1.x

Code: Select all

<ol class="breadcrumb">
        {% for breadcrumb in breadcrumbs %}
          <li class="breadcrumb-item"><a href="{{ breadcrumb.href }}">{{ breadcrumb.text }}</a></li>
        {% endfor %}
      </ol>
Samples (warning):
OC 2.3.x

Code: Select all

<?php if ($error_warning) { ?>
    <div class="alert alert-danger"><i class="fa fa-exclamation-circle"></i> <?php echo $error_warning; ?>
      <button type="button" class="close" data-dismiss="alert">&times;</button>
    </div>
OC 3.0.x

Code: Select all

{% if error_warning %}
    <div class="alert alert-danger alert-dismissible"><i class="fa fa-exclamation-circle"></i> {{ error_warning }}
      <button type="button" class="close" data-dismiss="alert">&times;</button>
    </div>
    {% endif %}
OC 3.1.x

Code: Select all

{% if error_warning %}
      <div class="alert alert-danger alert-dismissible"><i class="fas fa-exclamation-circle"></i> {{ error_warning }}
        <button type="button" class="close" data-dismiss="alert">&times;</button>
      </div>
    {% endif %}
But what I do not understand: as a developer you can download at any time the lastest 3.1.x release and look into the code.
Or are you only lazy?

Re: OpenCart Alpha 3.1.0.0 has been released

Posted: Tue Oct 16, 2018 11:42 pm
by purpletreesoft
OSWorX wrote:
Tue Oct 16, 2018 11:19 pm
purpletreesoft wrote:
Tue Oct 16, 2018 1:19 pm
Hi Daniel/Others ,
Do you know which areas are majorly redeveloped, and which kind of extensions can break on version 3.1?
We have some extensions and want to understand which ones we need to rewrite.
In 1 line: all.
Why?
Because if you look at the used icon libraries, nearly each icon name will change.
Samples (breadcrumbs):
OC 2.3.x

Code: Select all

<ul class="breadcrumb">
        <?php foreach ($breadcrumbs as $breadcrumb) { ?>
        <li><a href="<?php echo $breadcrumb['href']; ?>"><?php echo $breadcrumb['text']; ?></a></li>
        <?php } ?>
      </ul>
OC 3.0.x

Code: Select all

<ul class="breadcrumb">
        {% for breadcrumb in breadcrumbs %}
        <li><a href="{{ breadcrumb.href }}">{{ breadcrumb.text }}</a></li>
        {% endfor %}
      </ul>
OC 3.1.x

Code: Select all

<ol class="breadcrumb">
        {% for breadcrumb in breadcrumbs %}
          <li class="breadcrumb-item"><a href="{{ breadcrumb.href }}">{{ breadcrumb.text }}</a></li>
        {% endfor %}
      </ol>
Samples (warning):
OC 2.3.x

Code: Select all

<?php if ($error_warning) { ?>
    <div class="alert alert-danger"><i class="fa fa-exclamation-circle"></i> <?php echo $error_warning; ?>
      <button type="button" class="close" data-dismiss="alert">&times;</button>
    </div>
OC 3.0.x

Code: Select all

{% if error_warning %}
    <div class="alert alert-danger alert-dismissible"><i class="fa fa-exclamation-circle"></i> {{ error_warning }}
      <button type="button" class="close" data-dismiss="alert">&times;</button>
    </div>
    {% endif %}
OC 3.1.x

Code: Select all

{% if error_warning %}
      <div class="alert alert-danger alert-dismissible"><i class="fas fa-exclamation-circle"></i> {{ error_warning }}
        <button type="button" class="close" data-dismiss="alert">&times;</button>
      </div>
    {% endif %}
But what I do not understand: as a developer you can download at any time the lastest 3.1.x release and look into the code.
Or are you only lazy?
Yeah you are right. I was being lazy and you caught me :D

Re: OpenCart Alpha 3.1.0.0 has been released

Posted: Tue Oct 23, 2018 12:11 am
by Pink Media Beograd
Nice work! Thank you. Best regards, Zoran :)

Re: OpenCart Alpha 3.1.0.0 has been released

Posted: Sat Nov 03, 2018 4:36 pm
by rkeles
Thanks.

Re: OpenCart Alpha 3.1.0.0 has been released

Posted: Sun Nov 04, 2018 7:15 pm
by magzen
Hi,

Is it in beta stage right now?

Re: OpenCart Alpha 3.1.0.0 has been released

Posted: Wed Nov 28, 2018 5:31 pm
by teplar
Thanks for update OpenCart!!

Re: OpenCart Alpha 3.1.0.0 has been released

Posted: Mon Dec 17, 2018 1:38 pm
by tingwing
thanks,cannot wait to see the next new version

Re: OpenCart Alpha 3.1.0.0 has been released

Posted: Tue Dec 18, 2018 6:47 am
by davidbfranks
tingwing wrote:
Mon Dec 17, 2018 1:38 pm
thanks,cannot wait to see the next new version
If we ever see it....

Re: OpenCart Alpha 3.1.0.0 has been released

Posted: Sun Dec 23, 2018 2:30 am
by Sm00dE
there is any 3.1.0.0 stable version release date? :/ waiting for it half of the year .

Re: OpenCart Alpha 3.1.0.0 has been released

Posted: Sun Dec 23, 2018 7:41 pm
by JNeuhoff
Sm00dE wrote:
Sun Dec 23, 2018 2:30 am
there is any 3.1.0.0 stable version release date? :/ waiting for it half of the year .
You could have used 3.0.2.0 and run an online shop with that one.

Honestly, there won't be major new features in 3.1.0.0. And some issues, like the broken event triggers, won't be solved either. Third party extension will still use OCmod and cause potential clashes between each other. Perhaps its time to create a fork and create a community edition?

Re: OpenCart Alpha 3.1.0.0 has been released

Posted: Mon Dec 31, 2018 5:44 am
by rossi123
IP_CAM wrote:
Thu Sep 20, 2018 1:44 am
and when do you plan a stable version? :crazy:
Fellows, PLEASE get reasonable, do you really expect somebody to know,
when a stable Version of something will be ready ? Not even Microsoft would
know such, otherways, there would be no MS-Updates for existing Windows
Versions needed ever !

And OC has not 100's of Testers employed, it's YOUR DUTY, as PART of those
OC Testers, to find out, where and what is still missing, or does not work. That's
the main Reason, why OC comes for FREE, otherways, why should anyone build
such a comprehensive Software for free? Just to make you happy ?! :laugh:
Got it ?
What a bunch of dreamers...
Tutuapp 9apps Showbox
no I think it's free it's true but it's beautiful and

Re: OpenCart Alpha 3.1.0.0 has been released

Posted: Tue Jan 01, 2019 7:28 pm
by OSWorX
JNeuhoff wrote:
Sun Dec 23, 2018 7:41 pm
Sm00dE wrote:
Sun Dec 23, 2018 2:30 am
there is any 3.1.0.0 stable version release date? :/ waiting for it half of the year .
You could have used 3.0.2.0 and run an online shop with that one.

Honestly, there won't be major new features in 3.1.0.0. And some issues ..
Yes?
Do not know when you have checked the latest code, but I see many new features.
Just 2: multilingual and product variants.
Better you check the code before posting the next time.

Re: OpenCart Alpha 3.1.0.0 has been released

Posted: Wed Jan 02, 2019 8:30 pm
by davidbfranks
OSWorX wrote:
Tue Jan 01, 2019 7:28 pm
JNeuhoff wrote:
Sun Dec 23, 2018 7:41 pm
Sm00dE wrote:
Sun Dec 23, 2018 2:30 am
there is any 3.1.0.0 stable version release date? :/ waiting for it half of the year .
You could have used 3.0.2.0 and run an online shop with that one.

Honestly, there won't be major new features in 3.1.0.0. And some issues ..
Yes?
Do not know when you have checked the latest code, but I see many new features.
Just 2: multilingual and product variants.
Better you check the code before posting the next time.
Wow they added something that every other eCommerce Platform has already had for years....

I've spent the last 3 months migrating 4 very high traffic sites away from OpenCart, couldn't deal with this bullshit anymore, this project is clearly dying...

Shame, I use to really love OpenCart back in the day.

Re: OpenCart Alpha 3.1.0.0 has been released

Posted: Thu Jan 03, 2019 10:26 am
by IP_CAM
JNeuhoff wrote: Perhaps its time to create a fork and create a community edition?
Well, instead of waiting for a v.3.130 , a v.1.565 LIGHT Community Edition would now
be ready, to serve those, who can't wait to get online with proven solid Code, for the
time beeing at least. I cannot get it onto Github, to place it on my Account, since I found
nothing 'understandable', to connect my beloved old XP in a way, to get such done. But
one cannot know everything ... :-)
And for typical free-code-search type 'Community' Users, it could be THE ideal OC Bases,
to play around with. And all knowledge already exists, as well as Tools, to satisfy the needs
of all those, just looking for a simple, secure, and possibly mostly free tool, to sell a few
things online, but offering latest OC-2+ Bootstrap Theme technology, by nature of things

But one should better NOT under-estimate this Clientele, if they are happy, they probably
come back one day, and buy. And better NOT over-estimate their technical Background,
and longer term Interest, when it comes to ask for help, and investing a lot of time, just
to find out most needed ways of handling it. So, most of them leave again, discouraged
and frustrated, not to have found, what they where to expect, after reading Page ONE.

And it seems to get harder, day by day, to still find useful replies. But it's no wonder, every
Business grows out of it's childhood, sooner or later. And it then has to decide, which way
to go, but this cannot be based on free and paid, mixed into one 'Product', with Assistance,
depending only of the mood of individuals, either sharing their Wisdom at the Forum or
Extension Section for free, or then not. A rocky way, to build a business on something,
where partly plain Luck is decisive, to succeed.

You all have a great 2019, make it to be a Success!
Good Luck, just figured ...
Ernie

Re: OpenCart Alpha 3.1.0.0 has been released

Posted: Thu Jan 03, 2019 1:33 pm
by moneycarlo
Well in the meantime it appears a maintenance release of 3.0.3.0 was released the other day

Re: OpenCart Alpha 3.1.0.0 has been released

Posted: Wed Jan 09, 2019 3:55 pm
by OSWorX
3.0.3.1 is the latest.

Re: OpenCart Alpha 3.1.0.0 has been released

Posted: Wed Jan 09, 2019 4:32 pm
by emilioj
moneycarlo wrote:
Thu Jan 03, 2019 1:33 pm
[...] a maintenance release of 3.0.3.0 was released [...]
Looking at Opencart's new branches and releases in github it seems that Opencart will take maintenance&support seriously at last. I think this is good news!

Kudos for this decision!