summaryrefslogtreecommitdiffstats
path: root/plugins/fossil/fossileditor.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Update to upstream FilePath changesHEADtemp/fossilmasterhjk2023-01-201-2/+2
| | | | | Change-Id: I151fc9cb369bafd943dbfcfa17a301e09cd897df Reviewed-by: Orgad Shaneh <orgads@gmail.com>
* Simplify data structuresJarek Kobus2022-10-061-17/+7
| | | | | | | Do some cleanup. Change-Id: If40fefbdb646f0eb434539f8306421a40e47a3ee Reviewed-by: Orgad Shaneh <orgads@gmail.com>
* Adapt to upstream changesChristian Stenger2021-08-061-4/+2
| | | | | | | | * FilePathification * SynchronousProcess -> QtcProcess Change-Id: I973ff68585788c8742652f69a7c057e28aafbaf4 Reviewed-by: Orgad Shaneh <orgads@gmail.com>
* Fossil: Drop unneeded QRegExp includehjk2021-05-111-1/+0
| | | | | Change-Id: I64347f1df5a85aa06372eb196e22948bba1d9e2c Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
* Fossil: Adapt to upstream SynchronousProcess changeshjk2021-05-101-1/+1
| | | | | Change-Id: Idb6a2063efab8dd4b1c024bac748369105fbd0c2 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
* Adapt to 4.124.12Orgad Shaneh2020-02-211-8/+2
| | | | | Change-Id: Ibef89fafaa5a0ae89d2653219217c617cd918839 Reviewed-by: AndrΓ© Hartmann <aha_1980@gmx.de>
* Adapt to upstream changesOrgad Shaneh2020-02-201-36/+4
| | | | | Change-Id: Icc1f048523381e949a7eb824e373af6d4c3ceba3 Reviewed-by: hjk <hjk@qt.io>
* Adapt to recent VCS base changeshjk2020-02-101-2/+2
| | | | | Change-Id: Ia55808cb0e0959ab77333120dabd5401ec51d2a3 Reviewed-by: Orgad Shaneh <orgads@gmail.com>
* Adapt to upstream changesOrgad Shaneh2020-01-311-2/+2
| | | | | Change-Id: I3c55a84419b22d02bf275729220572c10ca11e35 Reviewed-by: hjk <hjk@qt.io>
* Adapt to upstream changesOrgad Shaneh2020-01-311-2/+2
| | | | | Change-Id: Ibdbd3abcfd65b091744451830625e2135c6573d9 Reviewed-by: hjk <hjk@qt.io>
* Add support for annotation of any given revision4.7Artur Shepilko2018-08-081-1/+41
| | | | | | | | | - Parent commits are also accessible from Annotate context menu - The client functionality was added in `fossil v2.4` Change-Id: Ia6096432cb1151388b5aebca30a6d25c1c6079f4 Reviewed-by: Eike Ziller <eike.ziller@qt.io> Reviewed-by: Orgad Shaneh <orgads@gmail.com>
* Update copyright yearArtur Shepilko2018-07-161-1/+1
| | | | | Change-Id: I2b1db2013cad9d25d2a54439866aae63a62623f0 Reviewed-by: Orgad Shaneh <orgads@gmail.com>
* Adapt to changes in VcsBase4.4Eike Ziller2017-10-061-19/+1
| | | | | | | | | The VCS editors now directly keep a pointer to their editor config. Changed in qt-creator/a36536813f9aa00944fd8fcab2e2689a385d5387 Change-Id: Icd1c8b0628677b3b6da305ca294b2d67810c7992 Reviewed-by: Tobias Hunger <tobias.hunger@qt.io> Reviewed-by: Orgad Shaneh <orgads@gmail.com>
* Vcs: Jump to the current source line in Fossil Annotate editorv4.3.04.3Artur Shepilko2017-04-261-10/+47
| | | | | | | | | | | | | | | | * Keep track of the current source line number and pass it to Annotate action. * Add a 'List Versions' toggle in Annotate editor to prepend a list of commits that make up the annotated source. * By default do not show the version list so that annotated line number could be matched to the source line. NOTE: VcsBaseEditorWidget::configurationWidget() query is no longer available, yet Fossil client needs it in order to process the effective arguments. So we re-implement it in FossilEditorWidget sub-class. Change-Id: Idc4c21d074ccf4e1c6d041cce2abceb78665c8f2 Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
* Vcs: Add Fossil SCM integration pluginArtur Shepilko2017-02-091-0/+115
* Qt Creator base-commit: f77af5e3362cc6c4360ea1d197fb834cd5b072fa * Stand-alone plugin source tree for integration into qtc super-project * Original release: https://github.com/nomadbyte/qtcreator-plugin-fossil * Adapted from Bazaar plugin implementation Configuring Fossil ------------------ 1. Download the [Fossil SCM client](http://fossil-scm.org) and install `fossil` executable file in your `PATH`. 2. Create or designate a directory to store local Fossil repositories and remote clones. For example: `~/fossils/qt`. 3. Configure Version Control Options for the Fossil plugin to use the designated directory as `Local Repositories Default path`. Now Fossil should become available as a VCS choice to create new local repositories, as well as a choice in `New File or Project` to clone a remote Fossil repository. Change-Id: I630184c1b344184d9e08ae2fc24a5e4766f834b9 Reviewed-by: Eike Ziller <eike.ziller@qt.io>