2954809111
Add git-cola-folder-handler.destop
Marcin Bajor
2013-08-29 19:57:53 +00:00
d571040cfe
Add git-cola-folder-handler.destop
Marcin Bajor
2013-08-29 19:57:53 +00:00
ebb68f813d
- Update to version 1.8.4 - Usability, bells and whistles * Brand new German translation thanks to Sven Claussner. * The “File” menu now provides a “New Repository...” menu action. * git dag now uses a dock-widget interface so that its widgets can be layed-out and arranged. Customizations are saved and restored the next time git dag is launched. * git dag now has a “Zoom Best Fit” button next alongside the “Zoom In” and “Zoom Out” buttons. * Ctrl+L now focuses the “Search” field in the git dag tool. * Right-clicking in the “diff” viewer now updates the cursor position before performing actions, which makes it much easier to click around and selectively stage sections. Previously, the current cursor position was used which meant that it required two clicks (left-click to update the position followed by right-click to get the context menu) for the desired section to be used. This is now a single right-click operation. * The Ctrl+D “Launch Diff Tool” action learned to automatically choose between git difftool and git mergetool. If the file is unmerged then we automatically launch git mergetool on the path, otherwise we use git difftool. We do this because git difftool is not intended to be used on unmerged paths. Automatically using git mergetool when appropriate is the most intuitive and muscle-memory-friendly thing to do. * You can now right-click on folders in your standard file browser and choose “Open With -> Git Cola” (Linux-only). - Fixes * Python 2.6 on Mac OS X Snow Leopard does not provide a namedtuple at sys.version_info. We now avoid using that variable for better portability. * We now read the user’s Git configuration from ~/.config/git/config if that file is available, otherwise we use the traditional ~/.gitconfig path, just like Git itself. * Some edge cases were fixed when applying partial/selected diffs. * The diff viewer is now properly cleared when refreshing. http://github.com/git-cola/git-cola/issues/194
Marcin Bajor
2013-08-29 19:52:02 +00:00
d9862951ce
- Update to version 1.8.4 - Usability, bells and whistles * Brand new German translation thanks to Sven Claussner. * The “File” menu now provides a “New Repository...” menu action. * git dag now uses a dock-widget interface so that its widgets can be layed-out and arranged. Customizations are saved and restored the next time git dag is launched. * git dag now has a “Zoom Best Fit” button next alongside the “Zoom In” and “Zoom Out” buttons. * Ctrl+L now focuses the “Search” field in the git dag tool. * Right-clicking in the “diff” viewer now updates the cursor position before performing actions, which makes it much easier to click around and selectively stage sections. Previously, the current cursor position was used which meant that it required two clicks (left-click to update the position followed by right-click to get the context menu) for the desired section to be used. This is now a single right-click operation. * The Ctrl+D “Launch Diff Tool” action learned to automatically choose between git difftool and git mergetool. If the file is unmerged then we automatically launch git mergetool on the path, otherwise we use git difftool. We do this because git difftool is not intended to be used on unmerged paths. Automatically using git mergetool when appropriate is the most intuitive and muscle-memory-friendly thing to do. * You can now right-click on folders in your standard file browser and choose “Open With -> Git Cola” (Linux-only). - Fixes * Python 2.6 on Mac OS X Snow Leopard does not provide a namedtuple at sys.version_info. We now avoid using that variable for better portability. * We now read the user’s Git configuration from ~/.config/git/config if that file is available, otherwise we use the traditional ~/.gitconfig path, just like Git itself. * Some edge cases were fixed when applying partial/selected diffs. * The diff viewer is now properly cleared when refreshing. http://github.com/git-cola/git-cola/issues/194
Marcin Bajor
2013-08-29 19:52:02 +00:00
11c730414e
- Update to version 1.8.2 - Usability, bells and whistles * We now automatically remove missing repositories from the “Select Repository” dialog. http://github.com/git-cola/git-cola/issues/145 * A new git cola diff sub-command was added for diffing changed files. - Fixes * The inotify auto-refresh feature makes it difficult to select text in the “diff” editor when files are being continually modified by another process. The auto-refresh causes it to lose the currently selected text, which is not wanted. We now avoid this problem by saving and restoring the selection when refreshing the editor. http://github.com/git-cola/git-cola/issues/155 * More strings have been marked for l10n. http://github.com/git-cola/git-cola/issues/157 * Fixed the Alt+D Diffstat shortcut. http://github.com/git-cola/git-cola/issues/159 - Fixes * Better error handling when cloning repositories. We were not handling the case where a git URL has no basename, e.g. https://git.example.com/. git cola originally rejected these URLs instead of allowing users to clone them. It now allows these URLs when they point to valid git repositories. Additionally, git cola learned to echo the errors reported by git clone when it fails. http://github.com/git-cola/git-cola/issues/156
Marcin Bajor
2013-02-27 20:06:54 +00:00
327f7cc579
- Update to version 1.8.2 - Usability, bells and whistles * We now automatically remove missing repositories from the “Select Repository” dialog. http://github.com/git-cola/git-cola/issues/145 * A new git cola diff sub-command was added for diffing changed files. - Fixes * The inotify auto-refresh feature makes it difficult to select text in the “diff” editor when files are being continually modified by another process. The auto-refresh causes it to lose the currently selected text, which is not wanted. We now avoid this problem by saving and restoring the selection when refreshing the editor. http://github.com/git-cola/git-cola/issues/155 * More strings have been marked for l10n. http://github.com/git-cola/git-cola/issues/157 * Fixed the Alt+D Diffstat shortcut. http://github.com/git-cola/git-cola/issues/159 - Fixes * Better error handling when cloning repositories. We were not handling the case where a git URL has no basename, e.g. https://git.example.com/. git cola originally rejected these URLs instead of allowing users to clone them. It now allows these URLs when they point to valid git repositories. Additionally, git cola learned to echo the errors reported by git clone when it fails. http://github.com/git-cola/git-cola/issues/156
Marcin Bajor
2013-02-27 20:06:54 +00:00
fc990bfb9b
- Update to version 1.8.1 - Usability, bells and whistles * git-dag got a big visual upgrade. * Ctrl+G now launches the “Grep” tool. * Ctrl+D launches difftool and Ctrl+E launches your editor when in the diff panel. * git-cola can now be told to use an alternative language. For example, if the native language is German and we want git-cola to use English then we can create a ~/.config/git-cola/language file with “en” as its contents: $ echo en >~/.config/git-cola/language http://github.com/git-cola/git-cola/issues/140 * A new git cola merge sub-command was added for merging branches. * Less blocking in the main UI - Fixes * Autocomplete issues on KDE http://github.com/git-cola/git-cola/issues/144 - The “recently opened repositories” startup dialog did not display itself in the absence of bookmarks. http://github.com/git-cola/git-cola/issues/139
Marcin Bajor
2012-12-08 22:40:51 +00:00
b549fff4cc
- Update to version 1.8.1 - Usability, bells and whistles * git-dag got a big visual upgrade. * Ctrl+G now launches the “Grep” tool. * Ctrl+D launches difftool and Ctrl+E launches your editor when in the diff panel. * git-cola can now be told to use an alternative language. For example, if the native language is German and we want git-cola to use English then we can create a ~/.config/git-cola/language file with “en” as its contents: $ echo en >~/.config/git-cola/language http://github.com/git-cola/git-cola/issues/140 * A new git cola merge sub-command was added for merging branches. * Less blocking in the main UI - Fixes * Autocomplete issues on KDE http://github.com/git-cola/git-cola/issues/144 - The “recently opened repositories” startup dialog did not display itself in the absence of bookmarks. http://github.com/git-cola/git-cola/issues/139
Marcin Bajor
2012-12-08 22:40:51 +00:00
4ce584ac54
Accepting request 134413 from home:Mailaender:branches:devel:tools:scm
Marcin Bajor
2012-09-16 03:57:59 +00:00
b0a4c94f6f
Accepting request 134413 from home:Mailaender:branches:devel:tools:scm
Marcin Bajor
2012-09-16 03:57:59 +00:00
a6341bdd58
Accepting request 131297 from home:Mailaender:branches:devel:tools:scm
Marcin Bajor
2012-08-23 13:57:39 +00:00
d95f1951ec
Accepting request 131297 from home:Mailaender:branches:devel:tools:scm
Marcin Bajor
2012-08-23 13:57:39 +00:00
92c5ecbd0f
- Update to version 1.7.7 - Usability, bells and whistles * New and improved grep mode lets you instantly find and edit files. * New git cola grep standalone mode. * Support for passing arguments to the configured editors, e.g. gvim -p This makes it possible to select multiple files in the status window and use Ctrl-e to edit them all at once. * Remote operations now prompt on errors only. * The Tab key now jumps to the extended description when editing the summary. * More shortcut key labels and misc. UX improvements. - Fixes * Selecting an item no longer copies its filename to the copy/paste buffer. Ctrl-c or the “Copy” context-menu action can be used instead. * The repository monitoring feature on Windows learned to ignore changes within the ”.git” directory. Thanks to Andreas Sommer.-
Marcin Bajor
2012-05-11 20:43:41 +00:00
7cf3b98462
- Update to version 1.7.7 - Usability, bells and whistles * New and improved grep mode lets you instantly find and edit files. * New git cola grep standalone mode. * Support for passing arguments to the configured editors, e.g. gvim -p This makes it possible to select multiple files in the status window and use Ctrl-e to edit them all at once. * Remote operations now prompt on errors only. * The Tab key now jumps to the extended description when editing the summary. * More shortcut key labels and misc. UX improvements. - Fixes * Selecting an item no longer copies its filename to the copy/paste buffer. Ctrl-c or the “Copy” context-menu action can be used instead. * The repository monitoring feature on Windows learned to ignore changes within the ”.git” directory. Thanks to Andreas Sommer.-
Marcin Bajor
2012-05-11 20:43:41 +00:00
b63530f634
- Update to version 1.7.6 - git dag learned to color-code branchy edges. The edge colors change when a new branch is detected, which makes the history much easier to follow. A huge thanks to Uri Okrent for making it happen. - New GUI for editing remote repositories. - New git cola archive and git cola remote sub-commands. - git cola browser learned an ‘Untrack’ command. - The diff editor learned to staged/unstaged while amending. - The status tool can now scroll horizontally. - New git repositories can be created by clicking ‘New’ on the git cola –prompt startup screen.
Marcin Bajor
2012-03-24 14:57:24 +00:00
d7cabfde93
- Update to version 1.7.6 - git dag learned to color-code branchy edges. The edge colors change when a new branch is detected, which makes the history much easier to follow. A huge thanks to Uri Okrent for making it happen. - New GUI for editing remote repositories. - New git cola archive and git cola remote sub-commands. - git cola browser learned an ‘Untrack’ command. - The diff editor learned to staged/unstaged while amending. - The status tool can now scroll horizontally. - New git repositories can be created by clicking ‘New’ on the git cola –prompt startup screen.
Marcin Bajor
2012-03-24 14:57:24 +00:00
04f8eec74f
- Update to version 1.7.5 - Auto-completion was added to more tools. - git-dag is easier to use on smaller displays – the author field elides its text which allows for a more compact display. - Selected commits in git-dag were made more prominent and easier to see. - ‘Create Branch’ learned to fetch remote branches and uses a background thread to do so. - User-configured GUI tools are listed alphabetically in the ‘Actions’ menu. - The ‘Pull’ dialog remembers the value of the ‘Rebase’ checkbox between invocations.
Marcin Bajor
2012-01-26 21:50:39 +00:00
90efad8b61
- Update to version 1.7.5 - Auto-completion was added to more tools. - git-dag is easier to use on smaller displays – the author field elides its text which allows for a more compact display. - Selected commits in git-dag were made more prominent and easier to see. - ‘Create Branch’ learned to fetch remote branches and uses a background thread to do so. - User-configured GUI tools are listed alphabetically in the ‘Actions’ menu. - The ‘Pull’ dialog remembers the value of the ‘Rebase’ checkbox between invocations.
Marcin Bajor
2012-01-26 21:50:39 +00:00
eea17383d7
Fix version in spec file.
Marcin Bajor
2012-01-08 13:04:16 +00:00
c5bdb872f0
Fix version in spec file.
Marcin Bajor
2012-01-08 13:04:16 +00:00
d0b0c39373
- Update to version 1.7.4.1 - Detect Homebrew so that OS X users do not need to set PYTHONPATH. - git-dag can export patches again.
Marcin Bajor
2012-01-08 13:01:27 +00:00
0f962d411b
- Update to version 1.7.4.1 - Detect Homebrew so that OS X users do not need to set PYTHONPATH. - git-dag can export patches again.
Marcin Bajor
2012-01-08 13:01:27 +00:00
362b955011
- Update to version 1.7.4 - The ‘Classic’ tool was renamed to ‘Browser’ and learned to limit history to the current branch. - git-dag learned about gravatar and uses it to show images for commit authors. - git-dag learned to use OpenGL for rendering resulting in much faster rendering. - More dialogs learned vim-style keyboard shortcuts. - The commit message editor learned better arrow key navigatio
Marcin Bajor
2012-01-05 23:36:30 +00:00
86913e4ddb
- Update to version 1.7.4 - The ‘Classic’ tool was renamed to ‘Browser’ and learned to limit history to the current branch. - git-dag learned about gravatar and uses it to show images for commit authors. - git-dag learned to use OpenGL for rendering resulting in much faster rendering. - More dialogs learned vim-style keyboard shortcuts. - The commit message editor learned better arrow key navigatio
Marcin Bajor
2012-01-05 23:36:30 +00:00
6ae0d7ee53
- Update to version 1.7.3 - git-cola learned a few new sub commands: * git cola dag * git cola branch * git cola search - Return in the summary field jumps to the extended description. - Ctrl+Return is now a shortcut for ‘Commit’. - Better French translation for ‘Sign-off’. - The ‘Search’ widget now has a much simpler and streamlined user interface. - vim-style h,j,k,l navigation shortcuts were added to the DAG widget. - git-dag no longer prompts for files when diffing commits if the text field contains paths. - General user interface and performance improvements.
Marcin Bajor
2011-12-28 15:22:39 +00:00
672ece64b5
- Update to version 1.7.3 - git-cola learned a few new sub commands: * git cola dag * git cola branch * git cola search - Return in the summary field jumps to the extended description. - Ctrl+Return is now a shortcut for ‘Commit’. - Better French translation for ‘Sign-off’. - The ‘Search’ widget now has a much simpler and streamlined user interface. - vim-style h,j,k,l navigation shortcuts were added to the DAG widget. - git-dag no longer prompts for files when diffing commits if the text field contains paths. - General user interface and performance improvements.
Marcin Bajor
2011-12-28 15:22:39 +00:00
212188acf7
- Update to version 1.7.2 - git-cola can now launch sub commands, e.g.: * git cola classic * git cola stash * git cola fetch * git cola push * git cola pull * git cola tag - git-dag is more responsive when gathering tab-completions. - Keyboard shortcuts are displayed when the ‘?’ key is pressed. - Various keyboard shortcuts were added for improved usability. - The status widget now lists unmerged files before modified files. - vim-style h,j,k,l navigation shortcuts were added to the status widget. - A ‘Recently Modified Files...’ tool was added. - Tools can now be hidden with Alt + # (where # is a keyboard number) and focused with Shift + Alt + #. - The syntax highlighting colors for diffs was made less intrusive. - The commit message editor was redesigned to have a more compact and keyboard-convenient user interface. - Keyboard shortcuts for adding a Signed-off-by (Ctrl + i) and creating a commit (Ctrl + m) were added. - The status widget was adjusted to use less screen real-estate.
Marcin Bajor
2011-12-06 21:27:31 +00:00
81bfc7aa88
- Update to version 1.7.2 - git-cola can now launch sub commands, e.g.: * git cola classic * git cola stash * git cola fetch * git cola push * git cola pull * git cola tag - git-dag is more responsive when gathering tab-completions. - Keyboard shortcuts are displayed when the ‘?’ key is pressed. - Various keyboard shortcuts were added for improved usability. - The status widget now lists unmerged files before modified files. - vim-style h,j,k,l navigation shortcuts were added to the status widget. - A ‘Recently Modified Files...’ tool was added. - Tools can now be hidden with Alt + # (where # is a keyboard number) and focused with Shift + Alt + #. - The syntax highlighting colors for diffs was made less intrusive. - The commit message editor was redesigned to have a more compact and keyboard-convenient user interface. - Keyboard shortcuts for adding a Signed-off-by (Ctrl + i) and creating a commit (Ctrl + m) were added. - The status widget was adjusted to use less screen real-estate.
Marcin Bajor
2011-12-06 21:27:31 +00:00
fd0a1273e8
- Update to version 1.7.1.1 - Fixes * Further enhanced the staging/unstaging behavior in the status widget. * Unmerged files are no longer listed as modified.
Marcin Bajor
2011-11-26 10:51:12 +00:00
98d52a64de
- Update to version 1.7.1.1 - Fixes * Further enhanced the staging/unstaging behavior in the status widget. * Unmerged files are no longer listed as modified.
Marcin Bajor
2011-11-26 10:51:12 +00:00
ec3172dbdd
Upload archive.
Marcin Bajor
2011-11-03 00:10:01 +00:00
3a8cf9f28d
Upload archive.
Marcin Bajor
2011-11-03 00:10:01 +00:00
83faa3db73
- Update to version 1.7.0
Marcin Bajor
2011-11-03 00:07:46 +00:00
662e944203
- Update to version 1.7.0
Marcin Bajor
2011-11-03 00:07:46 +00:00
ee28bd58ae
Updates for SLE11 distros.
Marcin Bajor
2011-11-01 17:59:34 +00:00
614587718d
Updates for SLE11 distros.
Marcin Bajor
2011-11-01 17:59:34 +00:00