martinrotter / textosaurus

Cross-platform text editor based on Qt and Scintilla.
GNU General Public License v3.0
284 stars 44 forks source link

Provide compilation instructions #2

Closed probonopd closed 7 years ago

probonopd commented 7 years ago

Please provide step-by-step compilation instructions, e.g.,

sudo add-apt-repository ppa:beineri/opt-qt591-trusty -y
sudo apt-get update -qq
sudo apt-get -y install qt59base libqt5scintilla2-dev
source /opt/qt*/bin/qt*-env.sh
qmake CONFIG+=release PREFIX=/usr
make -j$(nproc)
sudo make install 
probonopd commented 7 years ago

With the above, still getting

In file included from src/gui/tabwidget.cpp:9:0:
src/gui/texteditor.h:6:32: fatal error: Qsci/qsciscintilla.h: No such file or directory
 #include <Qsci/qsciscintilla.h>

https://travis-ci.org/probonopd/textilosaurus/builds/294503694#L825

martinrotter commented 7 years ago

I will, soon.

martinrotter commented 7 years ago

https://transfer.sh/m7JL9/textilosaurus-9c0e05e-linux64.AppImage

martinrotter commented 7 years ago

https://travis-ci.org/martinrotter/textilosaurus/jobs/294545544#L1354

probonopd commented 7 years ago

Excellent, works for me on Ubuntu 16.04

screenshot from 2017-10-29 20-16-32

martinrotter commented 7 years ago

Yea, but note that I started this literally one day ago. I consider to be more of a proof-of-concept for my personal usage, but maybe it will developed into something more. I am very dissapointed by availability of x-platform qt text editors with features I would want, so I will try to write one.

martinrotter commented 7 years ago

https://pasteboard.co/GRdnTNV.png

martinrotter commented 7 years ago

https://github.com/martinrotter/textilosaurus/wiki/Linux-development-builds

probonopd commented 7 years ago

Thank you very much @martinrotter - let me know if you would like to see this included in the AppImageHub central directory of available AppImages.

martinrotter commented 7 years ago

@probonopd Can you test/elaborate on newest development build? I added quite a bunch of new features (basic ones) but I already use textilosaurus as main fast text file preview application.

You can check features here - https://github.com/martinrotter/textilosaurus#features - I plan to add support for scriptable external tools, I was unable to find cross-platform text editor (preferably based on Qt) which supports that and meets my taste.

Please, take a look and let me know what you think.