tusk
tusk copied to clipboard
Doesn't load
When app opens... all that is seen is white screen
I am facing the same issue since today
I am facing the same issue, went to the dev screen and saw this error. Has it got something to do with it?
There are 159 open issues without an answer. :( Looks like we need to find another local solution for Evernote.
Faced the same issue just now
Same issue since yesterday. Same error in dev console.
Looks like Evernote for web made an update which is not compatible with Tusk.
is there any way I can downgrade my evernotes version?
I think we must update Chrome version to 85 or up. Anyone knows how to rebuild it using another chrome version?
Well, the version of Chrome reported by About->Tusk for me shows 69.0.3497.128, but the version reported by the installed Chrome browser itself is 88.0.4324.150 (the latest build on linux). Something is afoot there.
Well, the version of Chrome reported by About->Tusk for me shows 69.0.3497.128, but the version reported by the installed Chrome browser itself is 88.0.4324.150 (the latest build on linux). Something is afoot there.
Electron apps come with it own version of Chrome. You have to rebuild/update the app to change electron version -> chrome version. But i don't know how to do it.
Ok, I found how to upgrade to latest version of electron (I never work on electon, so i suppose this not the best solution, and more work is needed)
git clone https://github.com/klaussinani/tusk.git
cd tusk
git checkout dependabot/npm_and_yarn/electron-9.4.0
npm install electron@latest
npm install
npm start
And it works..... (I only made a simple smoke test).
But if i try to run the tests or try to package, it fails :-( .
Thanks. I'll try it soon.
On Wed, Feb 10, 2021 at 2:42 PM David Pérez Serrada < [email protected]> wrote:
Ok, I found how to upgrade to latest version of electron (I never work on electon, so i suppose this not the best solution, and more work is needed)
git clone https://github.com/klaussinani/tusk.git cd tusk git checkout dependabot/npm_and_yarn/electron-9.4.0 npm install electron@latest npm install npm start
And it works..... (I only made a simple smoke test).
But if i try to run the tests or try to package, it fails :-( .
— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/klaussinani/tusk/issues/308#issuecomment-777084435, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAEEJMDP54W5HXE7UPZA5O3S6MDU7ANCNFSM4XLEAZCA .
That does indeed work. I'll use this for now and leave the package fixing to the experts.
Thank you, David!
On Wed, Feb 10, 2021 at 2:42 PM David Pérez Serrada < [email protected]> wrote:
Ok, I found how to upgrade to latest version of electron (I never work on electon, so i suppose this not the best solution, and more work is needed)
git clone https://github.com/klaussinani/tusk.git cd tusk git checkout dependabot/npm_and_yarn/electron-9.4.0 npm install electron@latest npm install npm start
And it works..... (I only made a simple smoke test).
But if i try to run the tests or try to package, it fails :-( .
— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/klaussinani/tusk/issues/308#issuecomment-777084435, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAEEJMDP54W5HXE7UPZA5O3S6MDU7ANCNFSM4XLEAZCA .
Ok, I found how to upgrade to latest version of electron (I never work on electon, so i suppose this not the best solution, and more work is needed)
git clone https://github.com/klaussinani/tusk.git cd tusk git checkout dependabot/npm_and_yarn/electron-9.4.0 npm install electron@latest npm install npm start
And it works..... (I only made a simple smoke test).
But if i try to run the tests or try to package, it fails :-( .
It works!!! Thank you, @dserrada !
My versions:
I can confirm thanks Guys !
This isn't a permanent fix to the porblem. Whenever I want to start Tusk I need to go into the Tusk directory and use the command 'npm start' for Tusk to work. if I start it anyother way, I still get the white screen issue.
Can anyone else confirm?
Ok, I found how to upgrade to latest version of electron (I never work on electon, so i suppose this not the best solution, and more work is needed)
git clone https://github.com/klaussinani/tusk.git cd tusk git checkout dependabot/npm_and_yarn/electron-9.4.0 npm install electron@latest npm install npm start
And it works..... (I only made a simple smoke test).
But if i try to run the tests or try to package, it fails :-( .
I can confirm this works on macOS Big Sur 11.2 with Tusk 0.23.0 (0.23.0.650).
It is a workaround, but not a solution. To make it work i followed dserrada's instructions. Had to install npm though (brew install npm
). Whenever i stop the terminal running npm start
Tusk goes back to white screen.
But thanks for the workaround! 👍
Ok, I found how to upgrade to latest version of electron (I never work on electon, so i suppose this not the best solution, and more work is needed)
git clone https://github.com/klaussinani/tusk.git cd tusk git checkout dependabot/npm_and_yarn/electron-9.4.0 npm install electron@latest npm install npm start
And it works..... (I only made a simple smoke test). But if i try to run the tests or try to package, it fails :-( .
I can confirm this works on macOS Big Sur 11.2 with Tusk 0.23.0 (0.23.0.650). It is a workaround, but not a solution. To make it work i followed dserrada's instructions. Had to install npm though (
brew install npm
). Whenever i stop the terminal runningnpm start
Tusk goes back to white screen.But thanks for the workaround!
Thanks for confirming.
I was able to build and package Tusk: Ubuntu 16.04 npm 7.5.3 node 15.8.0
- Start with the steps from @dserrada
git clone https://github.com/klaussinani/tusk.git cd tusk git checkout dependabot/npm_and_yarn/electron-9.4.0 npm install electron@latest npm install
You may need to update some dependencies with npm, or even npm itself. I got the latest (7.5.3) and the package.json for Tusk must be edited for npm7, perhaps stick to npm6?
- Edit package.json (npm7) -Find the "scripts" node --Find the "release" node, and edit:
"release": "electron-builder build --publish never",
You can also remove some of the nodes under build->linux->target. I ran into errors in step 3 when it tried to build for pacman/Arch.
- In the readme:
Build binaries and installers: npm run release or yarn release
This will generate the package/snap you want in dist/
git clone https://github.com/klaussinani/tusk.git
cd tusk
git checkout dependabot/npm_and_yarn/electron-9.4.0
npm install electron@latest
npm install
npm start
This works for me on ubuntu 20.04.02 LTS
Ok, I found how to upgrade to latest version of electron (I never work on electon, so i suppose this not the best solution, and more work is needed)
git clone https://github.com/klaussinani/tusk.git cd tusk git checkout dependabot/npm_and_yarn/electron-9.4.0 npm install electron@latest npm install npm start
And it works..... (I only made a simple smoke test).
But if i try to run the tests or try to package, it fails :-( .
This solution works on Ubuntu 20.04.02 LTS!
But every time I npm start
, I have to log-in again despite I have clicked the option to remember my login info
Is there anyway to auto save my login info?
Also, how could I replace this new Tusk with my old Tusk in applications search window?
Thanks for the tip @lfant9412 i was able to build packages with your solution.
npm didn't work properly - having errors with nmp install
command.
Can anybody suggest how and when the issue with Tusk will be fixed permanently, please!
I was able to build and package Tusk: Ubuntu 16.04 npm 7.5.3 node 15.8.0
- Start with the steps from @dserrada
git clone https://github.com/klaussinani/tusk.git cd tusk git checkout dependabot/npm_and_yarn/electron-9.4.0 npm install electron@latest npm install
You may need to update some dependencies with npm, or even npm itself. I got the latest (7.5.3) and the package.json for Tusk must be edited for npm7, perhaps stick to npm6?
- Edit package.json (npm7) -Find the "scripts" node --Find the "release" node, and edit:
"release": "electron-builder build --publish never",
You can also remove some of the nodes under build->linux->target. I ran into errors in step 3 when it tried to build for pacman/Arch.
- In the readme:
Build binaries and installers: npm run release or yarn release
This will generate the package/snap you want in dist/
Using this, I was able to Build .deb and AppImage, I've changed the version to 0.24.0 and Done, Evernote working Again.
I was able to build and package Tusk: Ubuntu 16.04 npm 7.5.3 node 15.8.0
- Start with the steps from @dserrada
git clone https://github.com/klaussinani/tusk.git cd tusk git checkout dependabot/npm_and_yarn/electron-9.4.0 npm install electron@latest npm install
You may need to update some dependencies with npm, or even npm itself. I got the latest (7.5.3) and the package.json for Tusk must be edited for npm7, perhaps stick to npm6?
- Edit package.json (npm7) -Find the "scripts" node --Find the "release" node, and edit:
"release": "electron-builder build --publish never",
You can also remove some of the nodes under build->linux->target. I ran into errors in step 3 when it tried to build for pacman/Arch.
- In the readme:
Build binaries and installers: npm run release or yarn release
This will generate the package/snap you want in dist/
Using this, I was able to Build .deb and AppImage, I've changed the version to 0.24.0 and Done, Evernote working Again.
Work very well Thank You @allanfreitas But I have problem with 'Exit' Tusk. Not responding. You too?
Hello,
can you try to deactivate /Exit Confirmation options /it was sufficient for me to fix this issue.
Regards, Gregory.
Le lun. 15 févr. 2021 à 13:34, mmati8 [email protected] a écrit :
I was able to build and package Tusk: Ubuntu 16.04 npm 7.5.3 node 15.8.0
Start with the steps from @dserrada https://github.com/dserrada
git clone https://github.com/klaussinani/tusk.git cd tusk git checkout dependabot/npm_and_yarn/electron-9.4.0 npm install electron@latest npm install You may need to update some dependencies with npm, or even npm itself. I got the latest (7.5.3) and the package.json for Tusk must be edited for npm7, perhaps stick to npm6?
Edit package.json (npm7) -Find the "scripts" node --Find the "release" node, and edit:
"release": "electron-builder build --publish never", You can also remove some of the nodes under build->linux->target. I ran into errors in step 3 when it tried to build for pacman/Arch.
In the readme:
Build binaries and installers: npm run release or yarn release This will generate the package/snap you want in dist/
Using this, I was able to Build .deb and AppImage, I've changed the version to 0.24.0 and Done, Evernote working Again.
Work very well Thank You @allanfreitas https://github.com/allanfreitas But I have problem with 'Exit' Tusk. Not responding. You too?
— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/klaussinani/tusk/issues/308#issuecomment-779457543, or unsubscribe https://github.com/notifications/unsubscribe-auth/ABBHXXES4EWNHJXH6GAOQOTS7GHPLANCNFSM4XLEAZCA.
@GregDuhamel thank you, work great :+1:
for those who can't make it work, I just upgraded all packages and put the .deb files here. All credits for klaussinani https://github.com/Trip09/tusk/releases/tag/v1.0.0
@Trip09, many thanks! It is so simple for customers and save many time!
I have bad luck on my Mint:
dpkg: dependency problems prevent configuration of tusk:i386:
tusk:i386 depends on libgtk-3-0.
tusk:i386 depends on libnotify4.
tusk:i386 depends on libnss3.
tusk:i386 depends on libxss1.
tusk:i386 depends on libxtst6.
tusk:i386 depends on libatspi2.0-0.
tusk:i386 depends on libuuid1.
tusk:i386 depends on libappindicator3-1.
tusk:i386 depends on libsecret-1
dpkg: error processing package tusk:i386 (--install):
dependency problems - leaving unconfigured
and these dependencies won't resolve when trying to install one of those libs:
The following packages have unmet dependencies:
tusk:i386 : Depends: libgtk-3-0:i386 but it is not going to be installed
Depends: libnotify4:i386 but it is not going to be installed
Depends: libnss3:i386 but it is not going to be installed
Depends: libxss1:i386 but it is not going to be installed
Depends: libxtst6:i386 but it is not going to be installed
Depends: libatspi2.0-0:i386 but it is not going to be installed
Depends: libuuid1:i386 but it is not going to be installed
Depends: libappindicator3-1:i386 but it is not going to be installed
Depends: libsecret-1-0:i386 but it is not going to be installed
hi @akvilonBrown are you sure it's i386 ? if so you can run -> sudo apt-get -f install
this will install the required deps and Tusk. Stay well
Actually, I have Intel(R) Core(TM) i5-4300U CPU @ 1.90GHz, it is i386, right?
But I see many system files with -amd64- title, can it be so ?
UPD: my fault, indeed amd64 can refer to both processors.
Tusk64 has been installed and running, thank you!
This isn't a permanent fix to the porblem. Whenever I want to start Tusk I need to go into the Tusk directory and use the command 'npm start' for Tusk to work. if I start it anyother way, I still get the white screen issue.
Can anyone else confirm? same situation here. it's quite annoying actually.
@ricardovmr Just build some packages using this and install it using .deb/.rpm or AppImage package.
@akvilonBrown I'would say you have a x64 because 32-bit processors are rare today. Also because you have so many deps missing. But you can run lscpu or uname -a
eg, run uname -a and check if you have x86_64
--
@ricardovmr you can compile the package as @GregDuhamel, this means instead of running npm run start run npx electron-builder --linux go to dist folder and install your package .
@ricardovmr Also if you need a .deb you can go https://github.com/Trip09/tusk/releases/tag/v1.0.0 and download the package without the need to complite.
npm start
The page is still blank
For those who prefer a linux deb package now you can get a BETA version by evernote itself at this link: https://evernote.com/intl/en/b1433t1422.
Disclaimer: I don't work for Evernote, use this software at your own risk.
For those who prefer a linux deb package now you can get a BETA version by evernote itself at this link: https://evernote.com/intl/en/b1433t1422.
Disclaimer: I don't work for Evernote, use this software at your own risk.
Amazing! It works! Thank you!