nopCommerce 3.80 roadmap and estimated release date. Let's discuss

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
Il y a 7 ans
cool, can't wait for v4.0 .net core :))
Il y a 7 ans
Yes, but that's probably not til close to the new year...that's just my guess though.
Il y a 7 ans
a.m. wrote:
UPDATE: Version 3.80 will be released on August 3rd


Very awesome thing coming soon eagerly waiting.
Il y a 7 ans
Hi there

Can I download an non source version of 3.8 Beta somewhere?
Il y a 7 ans
bvWebmaster wrote:
Hi there

Can I download an non source version of 3.8 Beta somewhere?


You need to download source (development branch) from https://github.com/nopSolutions/nopCommerce and build in release mode in visual studio.

In the past nop has made available beta version/release candidates for testing before before releasing a new version.
Il y a 7 ans
Nop 3.80 should release developer version before final version so developer has the time to develop or upgrade their plug-in.
Il y a 7 ans
The Affiliate Edit page has an error with its validation system. If the user leaves one of the input fields empty, it will throw an error. We worked on this, and here is the solution we found - I suggest this fix is added to 3.8:

In AffiliateController, there are two actions, both named AffiliatedOrderList. We changed 'AffiliatedOrderList(DataSourceRequest command, AffiliatedOrderListModel model)' name to 'AffiliatedOrderGridList' and the error was solved.
It must be noted that the same actions are used in AffiliatedOrderList.cshmtl by the kendoGrid too, and this fix applies there as well.

I am pasting the source updated codes below:

AffiliateController.cs:

line 320:
        [HttpPost]
        public ActionResult AffiliatedOrderGridList(DataSourceRequest command, AffiliatedOrderListModel model)

AffiliatedOrderList.cshtml:

line 57:
<script>
    $(document).ready(function () {
        $("#orders-grid").kendoGrid({
            dataSource: {
                type: "json",
                transport: {
                    read: {
                        url: "@Html.Raw(Url.Action("AffiliatedOrderGridList", "Affiliate"))",
                        type: "POST",
                        dataType: "json",
                        data: additionalData
                    }
                },
    ....
        });
    });
</script>
Il y a 7 ans
I see many open worklist items related to Vendor marked as for release 3.80.  Will any of these be included in the release?
Il y a 7 ans
New York wrote:
Will any of these be included in the release?


Don't you have to go here now?
Il y a 7 ans
hmm, silly me ;)  I knew the source code was moved, but I never changed my browser links for issues.  Thanks
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.