datakick Posted July 20, 2021 Posted July 20, 2021 11 hours ago, Smile said: We expect in 2-4 weeks from now. Sorry it sounds wired but I could not find the php issue for the 1.3 sprint in Jira 😉 But if I am correct 1.3.0 will support 7.4.... Don't nail me down if I am wrong 😉 Regarding PHP compatibility: 1.3.0 will still be supported on PHP5.6 ... PHP7.4 There is an ongoing effort to make it work on PHP8. This is not a small feat because PHP8 introduced standard class 'Attribute' that clashes with thirty bees core class. To fix it we need to rename our class, respective move it to different namespace (in core and all native modules). While this is quite simple to do, it of course introduces compatibility issues with any third party modules. To overcome this issue, thirty bees will contain mechanism that will parse and 'patch' third party modules PHP files. When you install new module, it's php files will be processed anda all references to Attribute class will be adjusted. For this we will use third party library. Unfortunately that lib does not support PHP5.6, which is one of the reasons why we are deprecating PHP5.6 and will not support it in the future. At this moment there is still no need to actually remove support for PHP5.6, but once we integrate the support for PHP8 to mainline, we will be forced to do it. 7 1
soporte administrable.cl Posted July 20, 2021 Posted July 20, 2021 Hello, we must the community donate some dollars a month so that the created one can give us the peace of mind of the support we are looking for. 1
Smile Posted August 12, 2021 Posted August 12, 2021 Quick update. We expect version 1.3 in the first or second week of september. 5 3
zen Posted August 27, 2021 Posted August 27, 2021 On 8/12/2021 at 3:22 PM, Smile said: Quick update. We expect version 1.3 in the first or second week of september. Great to know that, let's keep the good work flow ! For infos, I still use TB everyday mostly on b2b websites 🙂, some are still on 1.1.0 version and works perfectly. 1
led24ee Posted September 17, 2021 Posted September 17, 2021 On 8/12/2021 at 4:22 PM, Smile said: Quick update. We expect version 1.3 in the first or second week of september. Any news ?
Smile Posted September 18, 2021 Posted September 18, 2021 Almost there but we had a little bit programing hours this week then expected. So stay tuned! Its always dangerous to mention a date 😉 4
Briljander Posted September 18, 2021 Posted September 18, 2021 4 hours ago, Smile said: Almost there but we had a little bit programing hours this week then expected. So stay tuned! Its always dangerous to mention a date 😉 I don't think it's a problem for you to mention a date if you just remember to inform any delays or changes. It's the silence that makes people suspicious and wondering. We are looking forward to the next release. Thanks for the info. 2
wakabayashi Posted February 21, 2022 Posted February 21, 2022 Who of you is already using the 1.3 version? How does it work out for you? 🙂
Smile Posted February 21, 2022 Posted February 21, 2022 For me it works very nice, prejudiced a little 😉 No strange things really, just some nice new things I was waiting quite some time for. 1
x97wehner Posted February 21, 2022 Posted February 21, 2022 1 hour ago, wakabayashi said: Who of you is already using the 1.3 version? How does it work out for you? 🙂 I use it. I haven't noticed newly introduced bugs at all. A few are still lingering from previous versions. I've submitted to github. It works pretty well. 1
SLiCK_303 Posted February 21, 2022 Posted February 21, 2022 (edited) 1 hour ago, wakabayashi said: Who of you is already using the 1.3 version? How does it work out for you? 🙂 I was on 1.3, no issues. I updated to bleeding edge (1.4), a week ago or so, and have had no issue that I'm aware of. Edited February 21, 2022 by SLiCK_303 1
wakabayashi Posted February 21, 2022 Posted February 21, 2022 1 hour ago, SLiCK_303 said: I was on 1.3, no issues. I updated to bleeding edge (1.4), a week ago or so, and have had no issue that I'm aware of. Good point. I will also go for bleeding edge I guess 🙂
toplakd Posted February 22, 2022 Posted February 22, 2022 I'm always on latest bleeding edge without any problems so far. 1 1
x97wehner Posted February 25, 2022 Posted February 25, 2022 On 2/22/2022 at 4:44 AM, toplakd said: I'm always on latest bleeding edge without any problems so far. I'm testing bleeding edge right now and after my update, if I go to any product and make any update at all, I see this error at the top. Are you two seeing this also @toplakd or @SLiCK_303
yaniv14 Posted February 26, 2022 Posted February 26, 2022 maybe you need to run some database fixes/upgrades from the core updater module?
toplakd Posted February 26, 2022 Posted February 26, 2022 (edited) @datakick This must be some new bug from the latest update which added possibility to edit specific prices. Edited February 26, 2022 by toplakd
yaniv14 Posted February 26, 2022 Posted February 26, 2022 check if you have any database upgrades you need to apply. also try to do hard refresh (ctrl+f5), maybe some javascript file has been updated.
toplakd Posted February 26, 2022 Posted February 26, 2022 Its directly related to the new option - Edit specific prices. If you have a product with specific price and you change the value of discount in specific price, than saving works, otherwise it does not work. I tested it in my shop just now on various products with and without specific price. I'm sure this will be fixed very soon. 1
toplakd Posted February 26, 2022 Posted February 26, 2022 (edited) Its related with line 3122-3123 in AdminProductsController.php if (($price == -1) && ($reduction == 0)) { $this->errors[] = Tools::displayError('No reduction value has been submitted'); If reduction is not newly set or changed within current product editing/saving the error comes up. Until fix you can outcomment line 3123 so you will be able to at least save the products. Edited February 26, 2022 by toplakd 1 1
x97wehner Posted February 27, 2022 Posted February 27, 2022 On 2/26/2022 at 3:20 AM, toplakd said: Its related with line 3122-3123 in AdminProductsController.php if (($price == -1) && ($reduction == 0)) { $this->errors[] = Tools::displayError('No reduction value has been submitted'); If reduction is not newly set or changed within current product editing/saving the error comes up. Until fix you can outcomment line 3123 so you will be able to at least save the products. Appreciate the clarification
datakick Posted February 28, 2022 Posted February 28, 2022 On 2/26/2022 at 9:20 AM, toplakd said: Its related with line 3122-3123 in AdminProductsController.php if (($price == -1) && ($reduction == 0)) { $this->errors[] = Tools::displayError('No reduction value has been submitted'); If reduction is not newly set or changed within current product editing/saving the error comes up. Until fix you can outcomment line 3123 so you will be able to at least save the products. This is fixed now, please update to the latest bleeding edge 1 2
toplakd Posted February 28, 2022 Posted February 28, 2022 Already updated 5 minutes ago 🙂 Thank you very much. 1
Briljander Posted March 5, 2022 Posted March 5, 2022 According to this thread there is supposed to be two releases each year. When is the next release planned?
smarterweb Posted March 7, 2022 Posted March 7, 2022 On 2/22/2022 at 2:36 AM, wakabayashi said: Who of you is already using the 1.3 version? How does it work out for you? 🙂 we switched to 1.3 a few weeks ago and everything runs smooth so far. all modules still work just fine. 1
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now