Coder Social home page Coder Social logo

about Linux app about boostnote-legacy HOT 33 CLOSED

Rokt33r avatar Rokt33r commented on May 22, 2024
about Linux app

from boostnote-legacy.

Comments (33)

Rokt33r avatar Rokt33r commented on May 22, 2024 2

Everything seems to be going well. I'll publish Linux app on UAR, PPA on this weekend.

  • App will quit on Main window closing or Ctrl + Q
  • Finder disabled(this feature will come back after v0.6.*)

from boostnote-legacy.

gromain avatar gromain commented on May 22, 2024 2

As for their comment, here is a changed PKGBUILD, with empty fields removed, addition of -bin to make sure the use of the upstream binary is clear and use of $pkgver:

# Maintainer: Dick Choi <[email protected]>
# Contributor: Romain Bazile <[email protected]>
pkgname=boostnote-bin
pkgver=0.5.9
pkgrel=1
pkgdesc="Opensource note app for developer"
arch=('x86_64')
url="https://b00st.io/"
license=('GPL')

source=(
  "https://github.com/BoostIO/boost-releases/releases/download/v$pkgver/boost_$pkgver_amd64.deb"
  )

md5sums=('df56bf3167dddb3eb2e1b263c65e61ba')

package() {
      tar -xa -f ${srcdir}/data.tar.xz
      cp -r "${srcdir}/usr" "${pkgdir}/usr"
}

from boostnote-legacy.

brpaz avatar brpaz commented on May 22, 2024 2

Great news :)

from boostnote-legacy.

Rokt33r avatar Rokt33r commented on May 22, 2024 1

@lucaskatayama
Thanks! I'll cover it also.

from boostnote-legacy.

gromain avatar gromain commented on May 22, 2024 1

@Rokt33r, sure, please do! Thanks a lot!

from boostnote-legacy.

fernandofreamundenl avatar fernandofreamundenl commented on May 22, 2024 1

Thanks for the input, I'm looking forward to use v0.6 then.

About being Japanese, it is not the Japanese outside that counts it the one in your heart xD
And you live in Japan and that is Awesome :D

from boostnote-legacy.

brpaz avatar brpaz commented on May 22, 2024 1

@Rokt33r sure. you can add me as contributor.
I am using Linux Mint Cinnamon and finder seems to work fine before it was removed. but I haven't it much.

from boostnote-legacy.

asmsuechan avatar asmsuechan commented on May 22, 2024 1

@the-mcnaveen Awesome! Thank you so much 😄

from boostnote-legacy.

mcnaveen avatar mcnaveen commented on May 22, 2024 1

@asmsuechan Welcome Buddy :)

from boostnote-legacy.

lucaskatayama avatar lucaskatayama commented on May 22, 2024

Yay.....Arch linux \o/

from boostnote-legacy.

Rokt33r avatar Rokt33r commented on May 22, 2024

Download links are below.
Be careful. This is currently work in progress.

Linux app
https://www.dropbox.com/s/bdvk5ebt8s530wp/Boostnote-linux-x64.tar.gz?dl=0

Debian package
https://www.dropbox.com/s/u9nlh0oxsg4id25/boost_0.5.8_amd64.deb?dl=0

from boostnote-legacy.

lucaskatayama avatar lucaskatayama commented on May 22, 2024

Uhuuuuuu so fast

On Sun, Apr 3, 2016, 20:29 Dick Choi [email protected] wrote:

Download links are below.
Be careful. This is currently work in progress.

Linux app
https://www.dropbox.com/s/bdvk5ebt8s530wp/Boostnote-linux-x64.tar.gz?dl=0

Debian package
https://www.dropbox.com/s/u9nlh0oxsg4id25/boost_0.5.8_amd64.deb?dl=0


You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub
#5 (comment)

from boostnote-legacy.

Rokt33r avatar Rokt33r commented on May 22, 2024

I think I should remove Finder and Tray on all of Linux for awhile.

  1. libappindicator1 is required to show Tray icon on several Desktop environments.
  • Xfce doesn't need to install it.
  • Unity seems to be needed to install it.
  1. The method, app.focus(), seems to be broken on Linux.
  • Xfce : app is not be focused although it comes top of screen.
  • Ubuntu : it doesn't work well after it called several times.

Btw, I think these features are not so important.
So, I will implement it one by one after v0.6.* released and become stable.

from boostnote-legacy.

Rokt33r avatar Rokt33r commented on May 22, 2024

@lucaskatayama
Could you tell me which desktop environment you are using?

from boostnote-legacy.

lucaskatayama avatar lucaskatayama commented on May 22, 2024

I'm usign Gnome 3.18
Arch linux

from boostnote-legacy.

gromain avatar gromain commented on May 22, 2024

Yay!

from boostnote-legacy.

Rokt33r avatar Rokt33r commented on May 22, 2024

I'm really sorry for being late... It is because of my poor English skill...

@gromain
I pushed it to git+ssh://[email protected]/boostnote.git, but I realized I forgot to change the name of binary. I'll reupload it again.

And, I can't find my package from https://aur.archlinux.org/packages/?SeB=m&K=rokt33r
How much it takes to be published? I confirmed my pushing finished successfully.

Btw, these are the files I submitted.

.SRCINFO

arch = x86_64
pkgbase = boostnote
    pkgdesc = Opensource note app for developers.

PKGBUILD

# Maintainer: Dick Choi <[email protected]>
# Contributor: Romain Bazile <[email protected]>
pkgname=boostnote
pkgver=0.5.8
pkgrel=1
pkgdesc="Opensource note app for developer"
arch=('x86_64')
url="https://b00st.io/"
license=('GPL')
groups=()
depends=()
makedepends=()
checkdepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=

source=(
  "https://github.com/BoostIO/boost-releases/releases/download/v0.5.9/boost_0.5.9_amd64.deb"
  )

noextract=()

md5sums=('df56bf3167dddb3eb2e1b263c65e61ba')

validpgpkeys=()

package() {
      tar -xa -f ${srcdir}/data.tar.xz
        cp -r "${srcdir}/usr" "${pkgdir}/usr"
}

from boostnote-legacy.

Rokt33r avatar Rokt33r commented on May 22, 2024

Hmm... I'm reading Arch wiki again and again.
Should I provide the installing instruction like below for Arch user?

git clone https://aur.archlinux.org/boostnote.git
cd boostnote
makepkg -si

from boostnote-legacy.

Rokt33r avatar Rokt33r commented on May 22, 2024

I've just fixed most of problems. App seems to be installed successfully with the shell script above.
But, I still don't know how can I show my app on AUR packages page.

from boostnote-legacy.

Rokt33r avatar Rokt33r commented on May 22, 2024

I ask about this problem on Arch forum. It was because the submitted .SRCINFO file was invalid..
https://bbs.archlinux.org/viewtopic.php?pid=1619904#p1619904

Eventually, my app shows up. https://aur.archlinux.org/packages/boostnote/
But, I think I have to make my PKGBLD build the app from scratch.

from boostnote-legacy.

gromain avatar gromain commented on May 22, 2024

Sorry I didn't get back to you earlier, I was away!
I'm glad to see you got it working!

Pacman even made the update automatically this morning! ;-) This is super great!

from boostnote-legacy.

Rokt33r avatar Rokt33r commented on May 22, 2024

I'm so glad to hear that. Thank you again. I'll update it soon. Haha

from boostnote-legacy.

brpaz avatar brpaz commented on May 22, 2024

finder is a very important feature for me. Hope to see it re-enabled soon :)

from boostnote-legacy.

Rokt33r avatar Rokt33r commented on May 22, 2024

@brpaz
Yes, I'll. But, It needs to be hacked on my own.
electron/electron#5011

Btw, Which desktop environment you use?

from boostnote-legacy.

Rokt33r avatar Rokt33r commented on May 22, 2024

@gromain @brpaz To honor your efforts, I want to add your name as contributors to readme.md and package.json.
Is it okay to do that?

from boostnote-legacy.

fernandofreamundenl avatar fernandofreamundenl commented on May 22, 2024

Hey @Rokt33r I dont know where to place this question so I'm asking it here, the question is, will we be able to sync notes between devices?

I'm asking this because I use a different computer for work(mac) and at home where I also do some development I use a Linux distro(it changes from time to time :) )

so if you have an official way of doing this it would be great if you don't, can we sync a folder with dropbox or other cloud software?

Thanks in advance, or better Domo Arigato! :)

from boostnote-legacy.

Rokt33r avatar Rokt33r commented on May 22, 2024

@fernandofreamundenl
Note will be shared by filesystem :)
It means you will be able to use your dropbox, google drive and even Github repo.
And I have a plan to support fully automatic syncing with github/bitbucket repository.
Btw, we should talk about this issue here #21

Domo Arigato! :)

Sadly, I'm not a Japanese although I'm living in Japan. LOL 😆

from boostnote-legacy.

Rokt33r avatar Rokt33r commented on May 22, 2024

@brpaz Okay, I'll add you soon. :)

About Finder, I'm sorry about that. I'd checked Finder on unity and xfce only...(both of them didn't work well)
I'll check finder on cinnamon. If it works fine, I'll enable it again when user is using cinnamon.

from boostnote-legacy.

Rokt33r avatar Rokt33r commented on May 22, 2024

@brpaz I confirmed Finder works fine on Cinnamon. So, I have to make a function to check if user is using cinnamon. It would be finished on this week. 😃

from boostnote-legacy.

Rokt33r avatar Rokt33r commented on May 22, 2024

Great! I found It can be accessed by process.env.DESKTOP_SESSION.


(Updated)
I shipped this features on master branch. It will be released with #26 on this week.

from boostnote-legacy.

Rokt33r avatar Rokt33r commented on May 22, 2024

I need some help to register Boostnote to PPA... I'd been trying to do it. but I couldn't make it.

from boostnote-legacy.

Rokt33r avatar Rokt33r commented on May 22, 2024

Ubuntu issue has been moved. #66

from boostnote-legacy.

mcnaveen avatar mcnaveen commented on May 22, 2024

I wrote a Brief article about installing Boostnote in Ubuntu and Debian systems.
Full Install Instruction for Ubuntu/Debian Systems

from boostnote-legacy.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.