Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-03-05 | Use some logic together for all windows. | Daniel Carl | |
2013-03-04 | Remordered functions in main.c. | Daniel Carl | |
2013-03-04 | Set the defualt settings of webkit to the webkit defaults. | Daniel Carl | |
Removed unneeded settings like the private browsing and those that are marked as deprecated. | |||
2013-03-04 | Fixed missed counter in completion processing. | Daniel Carl | |
Remove unneeded gtk_widget_show calls. | |||
2013-03-04 | Simplified the completion widgets style settings. | Daniel Carl | |
Don't overwrite the colors of the completion labels. Instead we set the style for the normal and active state and switch this during cycling through the list. | |||
2013-03-04 | Don't save completion prefixes for each item. | Daniel Carl | |
2013-03-04 | Allow to update completions by explicit typed input. | Daniel Carl | |
Now we can complete ':se' to ':set' and type an additional space and press tab again to start a new completion for settings. | |||
2013-03-04 | Sort url completions by their usage. | Daniel Carl | |
2013-03-04 | Fixed some more memory leaks. | Daniel Carl | |
2013-03-03 | Added url completion for :open and :tabopen commands. | Daniel Carl | |
2013-03-03 | Moved url history to own module. | Daniel Carl | |
The history is loaded into a list if the browser is started. After that the history items are only prepended to the internal list. Only if the apllication is closed, we write the internal url history list to the history file. | |||
2013-03-03 | Save current visited url to history file. | Daniel Carl | |
2013-03-03 | Added new files for history and user stylesheets. | Daniel Carl | |
2013-03-03 | Fixed segmentation fault on freeing temporary history. | Daniel Carl | |
If the temporary active history where freed, the pointer in the global history where also freed and crashed the browser if we try to free them again. | |||
2013-03-03 | Removed hint processings out of the javascript. | Daniel Carl | |
Cause of the processings that where know in the c-layer and the javascript layer too, we got really complicated code. Now the javascript-layer did no know anything of how the hinted sources should be used by the browser. This only concern that is kept in the javascript are the different types of elements that are hintable. | |||
2013-03-03 | Show hinted element source in status bar. | Daniel Carl | |
2013-03-03 | Give the web frame to the functions that call javascript. | Daniel Carl | |
2013-03-01 | Stop hinting if no element is found. | Daniel Carl | |
2013-03-01 | Released version 0.1.4. | Daniel Carl | |
2013-03-01 | Added hinting mode to open images. | Daniel Carl | |
With the ;i or ;I hinting mode images can be hinted end opened. | |||
2013-03-01 | Don't show the hint commands as script files in inspector. | Daniel Carl | |
2013-03-01 | Allow to set script name if a javascript is evaluated. | Daniel Carl | |
2013-03-01 | Renamed hinting js file from hint.js -> hints.js. | Daniel Carl | |
2013-03-01 | Fixed some coding issues in hint.js. | Daniel Carl | |
2013-03-01 | Remove no more used type short cuts from dom module. | Daniel Carl | |
2013-03-01 | Replaced hinting by javascript hinting. | Daniel Carl | |
The previous approach to use the dom api to generate the hints was much slower than the javascript solution. I think the javascript way is also a little bit more flexible and easier to implement. But now we have to concern about data sharing between c-layer an the javascript. | |||
2013-02-27 | Allow to run user scripts on every page. | Daniel Carl | |
2013-02-26 | Better history lookup performance. | Daniel Carl | |
Don't generate the list of matching item if we step through the items. Generate the active list only one time and use it to step through the matching history items. | |||
2013-02-24 | Added search history (#8). | Daniel Carl | |
2013-02-24 | Save the commands together with the prefix ':' in history (#7). | Daniel Carl | |
This is not so flexible, but makes many tings easier to implement to violate the concerns of the components. | |||
2013-02-24 | Implemented prefix aware history searching (#7). | Daniel Carl | |
If ':set' is already typed in the inputbox, the history will only step over those items that matches this prefix. Now vimp behave a little bit more like the great vim editor. | |||
2013-02-24 | Split the VpCore struct into the local and global part. | Daniel Carl | |
This makes the way to have global configs that are loaded on application start an local settings that are kept for every window/tab. | |||
2013-02-24 | Fixed wrong history entries is set command is called (#7). | Daniel Carl | |
If a set command to read config is called like ':set fontsize?' which prints the value into the inputbox, the printed result was put into history instead of the real called command string. | |||
2013-02-24 | Remove unneeded status style setting. | Daniel Carl | |
2013-02-24 | Removed redundant and no more needed code. | Daniel Carl | |
2013-02-23 | Moved mode switching to command also if command not found. | Daniel Carl | |
This make the mode switching more unique. If command_run is called, this will switch to the right mode, independent if the command exists or could be run or not. | |||
2013-02-23 | Don't save commands from config file and default config in history. | Daniel Carl | |
2013-02-23 | Fixed missed freeing of list items. | Daniel Carl | |
2013-02-22 | Removed {tab}open-home command. | Daniel Carl | |
The featured is done in the open command. If open is called without any url the configured home page is opened. | |||
2013-02-22 | Added parameters to commands in manpage. | Daniel Carl | |
2013-02-22 | Remove hard to read curly brace syntax for commands. | Daniel Carl | |
2013-02-22 | Added command to navigate in command history (#7). | Daniel Carl | |
2013-02-22 | Fixed code indentations. | Daniel Carl | |
2013-02-21 | Fixed wrong mode if new window was opened. | Daniel Carl | |
If there was opened a uri into a new window the first window kept in command mode. This caused that the normal mode keybindings did not work until <esc> was pressed. | |||
2013-02-21 | Check if uri is a file path before open it. | Daniel Carl | |
2013-02-19 | Fixed bug in retrieving webkit settings of type char. | Daniel Carl | |
2013-02-17 | Used font switches in man page to make it more readable. | Daniel Carl | |
2013-02-17 | Added command and keybinds to zoom the page. | Daniel Carl | |
2013-02-16 | Increased the default font size from 10 -> 11. | Daniel Carl | |
2013-02-16 | Allow to toggle boolean variables. | Daniel Carl | |
It's now possible to toggel the value of boolean variable during runtime via extended set command. Example to toggle the carret mode :set carret! |