-
Notifications
You must be signed in to change notification settings - Fork 522
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
Is Koala project abandoned? #537
Comments
It must be, another Github fail. |
This project is not abandoned, but I don't know it's in development anymore |
whether you maintain an alternative branch? |
I currently don't have an alternative branch
Koala is not a compiler, it uses known compilers I hope this helped you |
how can i update compilers for koala? |
@Alecto If by compilers you mean
|
i use SCSS, so i need to intall RUBY? and set the path to it folder? |
You probably already have Ruby installed, so I suggest verifying before install it. |
thank U. |
I'm glad it helped |
Zaygraveyard, I have a question about the autoprefixes. I understand that they need to be updated periodically in order to understand the modern browsers, and how many versions should be supported. but if the koala is not updated, then this option maybe not correct. I tried an alternate compiler Prepros. it's awful. permanent errors accessing files during compilation. sometimes it compiles not all changed files in project... etc. very bad work! maybe you could update the koala with the latest libraries SASS LESS and autoprefixes? |
Any luck on this? |
I updated nwjs to the latest version and I'm working on creating a release (the packaging) |
In reference to the question about needing Ruby by Alecto (above). I do not have Ruby installed and I use SCSS so do I still need to have Ruby? Thanks. |
@RangerGH you only need to install Ruby if you want to install SCSS on your system. Koala includes a version of Ruby which is used to run SCSS without having to install it on the users system. |
Currently I'm using npm node-sass to compile my SCSS via gulp so I don't need Ruby. I guess the question I should really be asking is can I use node-sass and the npm compilers. I really don't want or need Compass or Ruby on my system - nothing against them but I'm just using npm stuff now. I'd like a GUI that is like CodeKit but I'm not on a Mac but Linux. Thanks. |
#!/bin/bash
ARGS=();
scss=false;
while [[ $# -gt 0 ]]
do
case "$1" in
--load-path)
ARGS+=("--include-path");
break;
;;
--require)
# not implemented in node-scss
break;
;;
--style)
ARGS+=("--output-style");
break;
;;
--scss)
scss=true;
break;
;;
--sourcemap=none)
break;
;;
--sourcemap=*)
ARGS+=("--source-map");
break;
;;
--debug-info|--line-numbers|--line-comments)
ARGS+=("--source-comments");
break;
;;
*)
ARGS+=("$1");
;;
esac
shift;
done
if [ "$scss" = false ];
then
ARGS+=("--indented-syntax");
fi
exec node-sass "$ARGS" |
Thanks. I'll test it out. Yes, node-sass has different command line options then sass does. |
Downloaded koala from http://koala-app.com/ which I assume is the correct location. It shows a more recent koala then GitHub at https://github.com/oklai/koala// It appears Koala is not dead since you are responding but the changes in GitHub are 3-4 years old so what is the status of the project. Is koala-app.com the same as the github files? If I run ./koala after untarring I get libudev.so.0 not found. I do have some libudev.so. Do I need to create a symlink or am I missing a piece? /usr/lib/libudev.so.1 Thanks. |
Created a symlink and got it started so I'll work with it. Thanks. |
@zaygraveyard Any update on packaging? |
Sorry for the delay (I've been very busy) 😓 |
I have successfully packaged Koala for Win 32bit, macOS 64bit, Debian 32/64bit, and RedHat 32/64bit (although I have not tested installing the ".rpm" yet). |
Thank you for your hard work in trying to get an update out. Please let us know when you can do a release. :) |
using koala for years, never updated it, it's a bit worrying me but I learned here that I can update the compilers manually, that's nice |
@zaygraveyard Any updates about the release? Thank you! |
🎉 Koala 2.1.0 is here 🎉 Thank you all for sticking around 😄 I'll try to update the website soon Changes:
Download from: |
But it is already a setting for me in the old version. Anyway, thank you, I'm downloading it right now and I'll report to you as soon as I need to use it. You should create a github repository though (with a release section :) ) |
I just copied it from a commit that was already on the
For now I'll update this repo, because the website is linked to this repo (plus all the issues are on this one). Thank you for the support 😄 |
But you didn't update this repository :P if you do, many people will test the new update. I have nothing to do regarding web dev for now so I'm not going to test it for a while (and I'm used to the old koala with the old LESS so I am not really aware of what to test). I just want to support you with my words :P |
I updated this repo 😄 |
Updated the website 🎉 |
Closing this issue because the answer, at least for now, is no it not abandoned (not by me that is). |
Just wanted to say that I tried it and it works perfectly. |
I see that for a long time did not have any program updates. The author is not responding issues.
Therefore, interested in the question: this project abandoned?
if yes - can be supported by a fork there?
there may be a good alternative to the GUI?
The text was updated successfully, but these errors were encountered: