saltyshiomix / nextron

⚡ Next.js + Electron ⚡
https://npm.im/nextron
MIT License
3.88k stars 223 forks source link

2023 Roadmaps - I'm back! #398

Open saltyshiomix opened 1 year ago

saltyshiomix commented 1 year ago

I'm back!

Suffering from bipolar disorder, I was unable to maintain nextron for over 8 months. Medication has allowed me to be somewhat more active, and I will be gradually improving this project.

I would like to thank everyone who has supported nextron so far:

Thank you very much for your continued support.

Roadmaps

v8.8.0 - 2023/09/20

v8.9.0 - 2023/09/22

v8.10.0 - 2023/09/26

v8.11.3 - 2023/09/27

v8.12.0 - 2023/10/14

MEMO

Bug Fixes

Help Wanted

Documentation

Questions and "check back later"

These questions may be the subject of future development.

FYI

makeusabrew commented 1 year ago

Hi @saltyshiomix! I don't know you personally, but I just wanted to say welcome back. Nextron is a great project and you've done some great work.

The list of issues you've posted above looks pretty daunting, so if there's anything the community can do to help with them (even if it's help decide if they can just be closed?), shout. I don't have bags of free time, but I'll try and do my bit and I'm sure others will too.

saltyshiomix commented 1 year ago

@makeusabrew

Thank you very much, and you are totally right!

I'll improve nextron step by step, too 🙇

bm777 commented 1 year ago

I'm looking forward to it because I'm building my startup product with Nextron because I have struggled a bit with some features to implement in Nextron with external links.

I will distribute the beta version to people to test it before shipping the first release.

Screenshot 2023-09-24 at 09 15 46

Thanks, @saltyshiomix for creating Nextron ✌️

saltyshiomix commented 1 year ago

@bm777

Thank you for using nextron! I appreciate it very much. Please let me know when the service is released!!!

Please feel free to open issues if you have any troubles :)

bm777 commented 1 year ago

@saltyshiomix

I will definitely :-)

I think, I will open an issue today, if we solve that issue, it will be a great achievement.

saltyshiomix commented 1 year ago

@bm777

I just created the disscussion:

Feel free to share your apps :)

bm777 commented 1 year ago

@saltyshiomix

Yes of course, when the beta is ready I will share it with you first to correct some bugs 😉

riclava commented 1 year ago

Electron 22+ is nice ;-)

saltyshiomix commented 1 year ago

@riclava Thanks! To use electron v22+, please see this introduction: https://github.com/saltyshiomix/nextron/issues/299#issuecomment-1731438336

saltyshiomix commented 11 months ago

Nextron v8.12.0 is out!

Now it supports preload script for secure IPC features :)

alexis-piquet commented 10 months ago

Nice to see you back in the game @saltyshiomix. Have you plan to bump next version to 14? 'cause it's the latest available version. Let me know, I would like help you on this subject ;)

saltyshiomix commented 10 months ago

@alexis-piquet

Sorry for late reply.

Yes, I'm planning nextron v9 which supports both next v13 and v14 🙇

pixelass commented 8 months ago

Welcome back.. life is ****, the community is great.

BTW we use nextjs 13 with i18next (with no real issues). Happy to provide a basic example if it helps.

saltyshiomix commented 7 months ago

@pixelass

I appreciate very much your sponsorship!

Thank you also for the pull request, I'll check it out soon :)

saltyshiomix commented 7 months ago

I apologize for the very slow work on support Next.js v14. I'm preparing it little by little, so please wait a little longer.

saltyshiomix commented 5 months ago

CC: @makeusabrew @bm777 @riclava @alexis-piquet @pixelass

Just released nextron v5.15.0, which supports Next.js v13 🎉

Next.js v14 support is coming soon 🙇

bm777 commented 5 months ago

Oh waouh, Amazing new :) @saltyshiomix

saltyshiomix commented 3 months ago

I just released nextron v9.0.0, which supports next.js v13 and v14 🎉

NOTE: Please update renderer/next.config.js as belows:

module.exports = {
  output: 'export',
  // we want to change distDir to "app" so as nextron can build the app in production mode!
  distDir: process.env.NODE_ENV === 'production' ? '../app' : '.next',
  trailingSlash: true,
  images: {
    unoptimized: true,
  },
}