-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Boostnote doesn't start after Electron upgrade #3100
Comments
Does this issue also occur when using the latest version 0.11.17? |
I couldn't find version 0.11.17: building the app from source solves the issue, but I don't know if it's what you wanted me to do. |
You can find the 0.11.17 installer here: https://github.com/BoostIO/boost-releases/releases/tag/v0.11.17 |
Sorry man, I couldn't find it in the release tags of this repo. However, I tried and it works. |
I built locally (because there's no rpm packages) and get this same error I used the docker container provided: docker build -t local/boostnote . FROM docker.io/ubuntu:16.04
MAINTAINER Kazuhisa Hara <[email protected]>
ENV TZ="JST-9" \
DEBIAN_FRONTEND="noninteractive"
RUN apt-get update && \
apt-get install -y curl --no-install-recommends
RUN curl -OLk https://deb.nodesource.com/setup_7.x && bash ./setup_7.x
RUN apt-get install -y \
nodejs git rpm fakeroot --no-install-recommends
RUN npm install -g grunt-cli
RUN git clone --depth 1 https://github.com/BoostIO/Boostnote/ /boostnote &&\
useradd -m mock && chown -R mock.mock /boostnote
USER mock
WORKDIR /boostnote
RUN npm install
RUN grunt build I also tried setup_8.x as well, to the same result. |
multiple archlinux machines impacted by this as repos have released 5.0.6 |
ok dokey |
@Rokt33r Can you help us investigate this problem? |
AUR package maintainer reporting in. I've created a patch for Electron v5.x compatibility and have updated the package. At my end everything is working again, so could you update the package and see if any issues still remain? |
thanks @clone1612 |
@clone1612 I can confirm that the AUR package is now working as expected. |
I tried building that PR and it doesn't resolve my issue. Dunno if the conclusion is the same or not though. I'll also note, there is no alt-menu available when starting boostnote under the new electron. I was unable to get to the debug window. |
@frizop Strange, I have the alt-menu while using the latest Electron version. Have you tried opening the developer tools using Another way of finding the cause of the issue could be running the project in dev mode and seeing if that works. So cloning the project, running |
That definitely would be better as this seems to be a separate issue. I've seen that error before and fixed it by replacing the npm related commands with their yarn counterparts. But best make a new issue for the sake of clarity. |
@clone1612 could you provide guidance on this? I have the same issue, if I use yarn run-dev it works, but building with grunt always provides me with a faulty RPM and even just lauching the So let's say something is wrong on the npm side, how would you proceed with the yarn one ? |
@Erwyn It might be better to open a separate issue for the sake of clarity. Regarding your issue, as far as I know RPM support is not officially available (no .rpm releases are made, only .deb) and the current configuration used to generate them is most likely outdated. In terms of how I proceed with yarn, for the AUR package we (roughly) employ the following procedure:
Afterwards you can simply run Are you seeing any errors by the way when running the boostnote executable from the dist folder? You can start that executable from terminal in the hope of seeing some warnings/errors that can give an idea of where it's going wrong. |
Hi @clone1612 thanks for the explaination, you would open a ticket about |
Hello @Erwyn No, I meant a ticket in this repository specifying what you're exactly trying to do (compile your own .rpm package? Run the app from source? Etc.), steps you took and any errors/warnings you've encountered up until know. With that information the developers might be able to determine if it's related to Boostnote or the issue is related to an external source (e.g. npm or electron) and guide you to a solution for your problem. |
Current behavior
Boostnote hangs in loading on the start screen, some errors are present in the console.
The app won't start.
Expected behavior
The app should start normally.
Steps to reproduce
Environment
As I said, this happens after upgrading electron from version
To version
I have installed Boostnote via AUR.
Feel free to ask more information if needed.
The text was updated successfully, but these errors were encountered: