-
Notifications
You must be signed in to change notification settings - Fork 248
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
revert leave services running #2280
Conversation
@altendky I've checked the diff between GUI submodule ref in
|
Confirmed the GUI to launch / close (without
|
Umm. Encountered problem on Fedora 35. Update: This seems to be a local enviroment issue. Final: Succeeded to launch GUI as expected but it required a special approach. cd chia-blockchain
git checkout release/2.2.0
./install.sh -d
cd chia-blockchain-gui
git checkout revert_leave_services_running
npm i
npm run build:skipLocales # Avoid to build locale files for build speed
npx lerna run dev:skipLocales --scope=@chia-network/gui But my Fedora 35 won't launch Electron GUI. I needed to change the way to launch it. # ...
git checkout revert_leave_services_running
npm i
npm run build # Build locale files
npm run electron # Do not run dev server. Just launch electron and load main html file At least this is not a regression since I encountered the same trouble when I checked out files used in |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
aok
Will the "keep services running" feature be re-added in the future? |
Should make the next release |
great thanks 👍 |
main
.