aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-10-09GPid was not stored anywhere.Wouter Van Rooy
GPid was a pointer but had no place to put the variable. Just declare the variable in the struct and pass the pointer to the function.
2012-10-01Fix const assignment warning.Wouter Van Rooy
warning: assignment discards ‘const’ qualifier from pointer target type [enabled by default] This warning is fixed. This is actually only allowed for legacy reasons and should not be ignored.
2012-09-26added execute command line argument, works like xtermmutantturkey
2012-09-19Fix pointer to integer different size cast warningWouter Van Rooy
2012-09-14Fix not ending program when windows were closed.Wouter Van Rooy
destroying the window when calling tab_close now calls an event which calls window_destroy. Which ends the program when all windows are closed.
2012-09-05rewrite of the entire windowing design; Now svte can utilize multiple ↵mutantturkey
windows; created window closing and spawning functions. The shortcut to spawn a new window is CTRL+SHIFT+n;
2012-08-29remove extra varaibles, don't pass the term object to our event callback - ↵mutantturkey
we don't need it.
2012-08-29fix a uninitialized variablemutantturkey
2012-08-29make this work without using the C99 standardmutantturkey
2012-08-29add a config setting for the default browser; update example svterc accordinglymutantturkey
2012-08-29fix handling to return true only if we get a match. thanks Wouter Van Rooymutantturkey
2012-08-29added a URL opener, by default using the xdg-open program. This is a setting ↵mutantturkey
in defaults.h
2012-08-24Remove the define to get the term struct of each place with a saner inline ↵mutantturkey
matching the get_current_term; cleaned up the source code with more sane vim indentations; fixed the bug where a background tab would update it's title and also update the window title"
2012-06-17Fixed the empty tab labelsWouter Van Rooy
2012-06-17Some code cleanup and removal of superfluous codeWouter Van Rooy
2012-06-15Removed unused page_num variable in set_window_title functionWouter Van Rooy
Fix the setting of the window title on window-title-changed signal
2012-06-03Solve the undeclared readlink warning.Wouter Van Rooy
readlink is not provided in c99 unistd.h but it is in gnu99.
2012-06-03Implement regular copy-paste with ctrl-shift-c and ctrl-shift-vWouter Van Rooy
2012-05-31Added colours to the example-configWouter Van Rooy
2012-05-31Added configurable colours to terminalWouter Van Rooy
2012-05-30added a shortcut (CTRL+SHIFT+H) to toggle the tab barmutantturkey
2012-05-28uped version number and corrected commentmutantturkey
2012-05-28added our example svterc into the repositorymutantturkey
2012-05-28added a few more fixes - thanks Wouter Van Rooymutantturkey
2012-05-28added a fix for startup error - thanks Wouter Van Rooymutantturkey
2012-05-28added a fix for deprecated terminal fork command warningsmutantturkey
2010-09-10added callback for mouse event handling:)Calvin Morrison
2010-08-28g_build_path is supposed to end with a NULL element ↵Calvin Morrison
http://library.gnome.org/devel/glib/unstable/glib-Miscellaneous-Utility-Functions.html
2010-06-24Added two options to the rc file, bg_image and bg_saturation, also changed ↵Calvin Morrison
transparent_bg to bg_transparent for consistant naming.
2010-07-23Fixing white space, style violations.Vic Fryzel
2010-07-23Making window height and width configurable.Vic Fryzel
2010-07-23Adding support for audible_bell, autohide_mouse, scroll_on_keystroke, ↵Vic Fryzel
scroll_on_output, visible_bell, word_chars. Fixing num_scrollback_lines and a few other minor bugs.
2010-06-23renamed key_press_callback to event_key for consistant naming, added ↵Calvin Morrison
event_button for future button callbacks
2010-06-18removed and redundant if/then statement that essentially evaluated the same ↵Calvin Morrison
thing twice.
2010-06-18tabs now open in the PWD of the previously opened tabCalvin Morrison
2010-06-18Switching tabs will now rotate to first if at last and visa versa, as well ↵Calvin Morrison
as regular tab switching
2010-06-18Removed MIT/X from PKGBUILDCalvin Morrison
2010-07-18Removing some old licensing stuff, everything is now GPLv3. Removing an ↵Vic Fryzel
unused method from svte.c
2010-06-18updated package build from mtcalvinmorrison
2010-07-18Changing UI group in rc file to ui.Vic Fryzel
2010-07-18Fixing list items in READMEVic Fryzel
2010-07-18After initial import from github, switching name to svte. Revamping README ↵Vic Fryzel
with new project information.
2010-07-18Adding rc file support. Dropping most command-line options.Vic Fryzel
committer: Calvin M <crazycal00@gmail.com>
2010-06-08merge vicfryzels branch hopefully :)mutantturkey
2010-07-14Fixing misplaced paren, causing typing a 'T' to open a new tab.Vic Fryzel
2010-07-14Adding mechanism for disabling bold fonts.Vic Fryzel
2010-07-04Adding license header to mt.c as advised for GPLv3.Vic Fryzel
2010-07-04Moving defines to command-line arguments. This will make setting color ↵Vic Fryzel
information from CL easier.
2010-07-04Removing weird character from VERSION.Vic Fryzel
2010-07-03Major whitespace changes and clean-up.Vic Fryzel