Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Facilities for turning on new AST-based parser. | 2013-12-26 | |
| | |||
* | Merge branch 'master' into ast | 2013-12-20 | |
|\ | | | | | | | | | | | | | Conflicts: function.cpp parser.cpp parser.h | ||
| * | Update Free Software Foundation address. | 2013-12-13 | |
| | | | | | | | | Fixes #1184. | ||
* | | Merge branch 'master' into ast | 2013-12-07 | |
|\ \ | | | | | | | | | | | | | | | | | | | Conflicts: complete.cpp fish_tests.cpp highlight.cpp | ||
| | * | Makefile.in: remove cruft | 2013-12-01 | |
| |/ | |||
| * | add correct version number to manpage output | 2013-12-01 | |
| | | |||
| * | autoconf build: clean up Makefile, remove fish.spec | 2013-12-01 | |
| | | | | | | | | | | | | | | | | Removes some unused variables and out-of-date references. Wraps some tests in quotes to avoid expansion errors. Removes the fish.spec generated file as it is out of date and is arguably better maintained by downstream packagers. See http://github.com/zanchey/fish-build/ for a better RPM spec file. | ||
* | | Merge branch 'master' into ast | 2013-11-24 | |
|\| | | | | | | | | | | | Conflicts: complete.cpp fish_tests.cpp | ||
| * | configure/Makefile: respect $LIBS, remove some egregarious lies | 2013-11-09 | |
| | | | | | | | | | | | | | | - expunge LIBS_COMMON, it doesn't get used anywhere - don't reset LIBS to empty - move the gettext test as every binary depends on it - only include one set of libraries | ||
* | | Merge branch 'master' into ast | 2013-11-06 | |
|\| | |||
| * | Link with $CXXFLAGS; disable GCC-specific autoconf check (squash fixes). | 2013-10-29 | |
| | | |||
| * | use docdir from configure in setting __fish_help_dir | 2013-10-29 | |
| | | | | | | | | Closes #1065 | ||
| * | add completions for source and document the move away from '.' | 2013-10-28 | |
| | | | | | | | | Closes: #310 | ||
* | | Remove parse_exec stuff | 2013-10-08 | |
| | | |||
* | | Merge branch 'master' into ast_no_templates | 2013-10-06 | |
|\| | | | | | | | | | | | Conflicts: configure.ac exec.cpp | ||
| * | New documentation UI, including tutorial. | 2013-10-05 | |
| | | |||
| * | Strip out git commit numbers from doxygen documentation | 2013-09-30 | |
| | | |||
| * | docs: don't remove/rebuild share/man if we don't have doxygen | 2013-09-02 | |
| | | |||
| * | Be quiet about "if" conditional. | 2013-08-13 | |
| | | |||
| * | Don't mention chsh if it doesn't exist. | 2013-08-13 | |
| | | | | | | | | This is case in Cygwin, which doesn't have /etc/shells ans chsh. | ||
| * | Makefile.in: don't build dist stuff from Makefile, use build_tools | 2013-08-11 | |
| | | |||
| * | Generate version numbers dynamically | 2013-08-11 | |
| | | | | | | | | | | | | | | | | This commit hooks the Makefile up to generate a FISH_BUILD_VERSION symbol and kills off PACKAGE_VERSION in .cpp files. It also modifies the tarball generation script to add the necessary version file for releases. | ||
* | | Teach fish_tests about new parsing files in Makefile | 2013-08-08 | |
| | | |||
* | | Merge branch 'master' into ast | 2013-06-23 | |
|\| | |||
| * | docs: configure/Makefile changes to require at least Doxygen 1.5 | 2013-06-19 | |
| | | |||
* | | Rename expression.h to parse_tree.h and parse_exec.h | 2013-06-09 | |
| | | |||
* | | Parser limps into existence | 2013-06-08 | |
|/ | |||
* | Teach the Makefile to only instruct the user to edit /etc/shells if it needs ↵ | 2013-04-27 | |
| | | | | to be edited | ||
* | Changed paths.bin to respect BINDIR | 2013-04-20 | |
| | | | | | | | | | | | | | | | | | | | | | | | The compiled-in path to bin dir was not correct; it made the common assumption that `$(prefix)` == `$(prefix)/bin` which is usually true, but not in all cases. 1. [machine specific files](http://www.gnu.org/prep/standards/html_node/Directory-Variables.html#index-exec_005fprefix) should use `$(exec_prefix)` (`@exec_prefix@` in Makefile.in) instead of the usual `$(prefix)`. 2. [executable programs](http://www.gnu.org/prep/standards/html_node/Directory-Variables.html#index-bindir) should use the more-specific `$(bindir)` (`@bindir@` in Makefile.in) instead of assuming `$(exec_prefix)/bin` as this allows the executable install location to be changed with the `--bindir=_foo_` option to `./configure`. Fortunately, the makefile is mostly correct and *installs* the executable in the correct location. The problem shows up later such as during tab-completion, when fish_pager is run - the compiled-in path it uses was the incorrect `$(prefix)/bin` resulting in an "Unknown command" error, which only required this small fix. | ||
* | Change Makefile to not delete legacy binaries, but instead just notify the ↵ | 2013-04-12 | |
| | | | | | | user about them. Change Makefile to only look for legacy binaries in $PREFIX instead of using which. https://github.com/fish-shell/fish-shell/pull/655 | ||
* | Remove some GNU-makeisms from the Makefile to try to get us to build with ↵ | 2013-03-31 | |
| | | | | BSD make. Not quite there yet. | ||
* | Remove xsel from the build | 2013-03-30 | |
| | | | | https://github.com/fish-shell/fish-shell/issues/633 | ||
* | Initial version of printf builtin | 2013-03-02 | |
| | |||
* | Teach fish how to clean up installed versions of set_color | 2013-02-15 | |
| | |||
* | bulitin_set_color.cpp -> builtin_set_color.cpp | 2013-02-14 | |
| | |||
* | Remove set_color from Makefile. Fix issue where builtin_set_color would mix ↵ | 2013-02-14 | |
| | | | | output modes up | ||
* | Remove seq.in, in favor of the new function. Remove seq detection from ↵ | 2013-01-12 | |
| | | | | configure.ac. Teach the Makefile how to remove old installed seqs. | ||
* | Pass -f to rm share/man/man1 to avoid a benign error message | 2013-01-06 | |
| | |||
* | Change build_documentation to take its paths as arguments, and the ↵ | 2013-01-03 | |
| | | | | Makefile.in to pass them | ||
* | Make the Makefile mv man pages instead of cp them from help_doc, because ↵ | 2013-01-03 | |
| | | | | help_doc is about to be deleted | ||
* | Make share/man/man1 manpages get built again | 2013-01-03 | |
| | | | | Addresses https://github.com/fish-shell/fish-shell/issues/491 | ||
* | Make the Makefile use the new build_documentation.sh script (gulp) | 2012-12-27 | |
| | |||
* | Re-point some URLs at the fish homepage fishshell.com | 2012-12-27 | |
| | |||
* | Re-teach Makefile.in how to generate proper version numbers in man pages | 2012-12-27 | |
| | |||
* | Made autoconf stop generating Doxyfile.help in preparation for Xcode ↵ | 2012-12-26 | |
| | | | | documentation build phase | ||
* | documentation TOC: remove duplicate name attributes, use id attribute instead | 2012-12-26 | |
| | |||
* | Remove tokenizer_test target and codeT | 2012-12-11 | |
| | |||
* | Fix compilation with Python dependencies suppression. | 2012-12-09 | |
| | | | | Signed-off-by: lledey <lledey@gmail.com> | ||
* | Remove Python dependency from Makefile and Xcode build | 2012-12-08 | |
| | | | | https://github.com/fish-shell/fish-shell/issues/429 | ||
* | Added xcodebuild target in Makefile | 2012-12-01 | |
| |