summaryrefslogtreecommitdiff
path: root/src/plugins/cpaster
Commit message (Collapse)AuthorAgeFilesLines
* Version bump.con2009-10-021-4/+4
|
* Version bump.con2009-09-101-4/+4
|
* long live the kinghjk2009-08-1419-19/+19
|
* API naming.con2009-08-121-1/+1
| | | | Reviewed-by: hjk
* cpaster: compile fix for namespaced qt plus code cosmeticshjk2009-08-107-39/+49
| | | | QListWidget forward declaration was not namespaced.
* Fixed warnings about removing null-objects from Plugin-Manager.Friedemann Kleint2009-07-311-9/+2
|
* Pimpin' the UI a bit.Erik Verbruggen2009-07-312-3/+13
|
* fix crashMaurice Kalinowski2009-07-311-1/+1
| | | | check for errorstring of the correct variable
* add pastebin.ca support for codepasterMaurice Kalinowski2009-07-314-2/+173
| | | | | - cannot list and does not need any preferences, as there is only one server
* ensure editor is visibleMaurice Kalinowski2009-07-311-1/+3
| | | | | after fetching a codesnippet, we should switch to edit mode and open the editor
* move editor creation to pluginMaurice Kalinowski2009-07-315-12/+41
| | | | | | each protocol needed to create the editor on their own. Instead emit fetchDone and let the plugin instantiate it for every protocol
* refactor and add support for pastebin.comMaurice Kalinowski2009-07-2721-216/+1601
| | | | | | | | | | | | - created protocol class as basis for different paste servers - removed custom classes and replaced functionality with simple QHttp* usage - removed poster and fetcher classes copied from cpaster application. It not getting updated anyways in creator - Known issue: Listing does not update, when user changes protocol - TODO: add pastebin.ca support. Code is done already, just needs to be placed inside plugin.
* Removing some unused semicolons after Q_UNUSEDAlessandro Portale2009-07-131-2/+2
| | | | There were both variants, with and without extra semicolon.
* Update license headers and sales contact details.Jason McDonald2009-06-174-8/+8
| | | | Reviewed-by: Trust Me
* Version bump also in master.con2009-06-041-4/+4
|
* ifdef Q_?S_* cleanupOswald Buddenhagen2009-06-031-2/+2
| | | | | | - clear up some Q_OS_LINUX vs. Q_OS_UNIX - clear up Q_WS_* vs. Q_OS_* (relatively theoretical exercise) - use proper #if-#else cascades instead of free-standing #ifs
* Version bump.con2009-06-021-4/+4
|
* Polishing Settings Ui:Alessandro Portale2009-05-181-64/+53
| | | | Putting CPaster settings into a GroupBox
* Merge commit 'enrico/master'Oswald Buddenhagen2009-05-122-6/+0
|\
| * Remove unneeded strings from translation.Enrico Ros2009-05-112-6/+0
| |
* | Fixed two dialogs to use the main window as parentThorbjørn Lindeijer2009-05-121-1/+1
|/ | | | | Setting a parent makes sure the dialog is correctly centered and shares the taskbar entry.
* Rename qworkbenchplugin.pri to qtcreatorplugin.priAlessandro Portale2009-05-081-1/+1
|
* add missing tr()s, etc., add some //: commentsOswald Buddenhagen2009-04-201-5/+5
|
* Version bump.con2009-04-081-4/+4
|
* Version bump.con2009-04-081-4/+4
|
* Fixes: Introduce a cpp settingspage containing file naming conventions ↵Friedemann Kleint2009-03-182-4/+10
| | | | | | | | | (lower case and suffixes). Reorder VCS settings pages. Task: 241959, 248085 RevBy: Optics/Naming checked by con Details: Give IOptionPage an id() to differentiate from trName(). Make showOptionsDialog return a bool (applied) and give it an optional parent. Change Cpp and form class wizards, give them a Configure... button to change those settings.
* Fixes: - Don't use multiple key shortcuts on Maccon2009-03-051-0/+4
| | | | | | Task: - 244529 Details: - It just doesn't work in Mac menus (at least not with Qt, but I suspect it's some Mac thingy), so just don't do it.
* Fixes: Bump Creator version after releaseDaniel Molkentin2009-03-041-4/+4
| | | | | | Task: - RevBy: Thorbjorn AutoTest: -
* Fixes: simplify ProjectExplorerPlugin::instance() accesshjk2009-03-042-5/+0
|
* Fixes: - New license, new website.v1.0.0con2009-02-271-2/+16
|
* Fixes: change license headers to LGPLhjk2009-02-254-84/+68
|
* Fixes: - Updated version numbercon2009-02-241-4/+4
|
* Fixes: rename some commands to get something like a 'naming scheme'hjk2009-02-201-4/+4
| | | | | in place RevBy: con
* Fixes: cpaster plugin optionslowinu2009-02-132-3/+5
| | | | | RevBy: andre Details: - the settings have not been taken into respect so far.
* Fixes: cpaster: fix potential double deletion testhjk2009-02-041-2/+7
| | | | | | Task: 180315 RevBy: Details:
* Fixes: cpaster: make complete urls also acceptable.hjk2009-02-042-3/+15
| | | | Details: also accept trailing slashes
* Fixes: - Copyright datecon2009-02-041-1/+1
|
* Fixes: move all files in shared/* to src/shared/*hjk2009-01-261-1/+1
|
* Avoid going through ICore when it's not necessaryThorbjørn Lindeijer2009-01-211-5/+3
| | | | | Many singletons have their own instance() method, in which case there is no need to use ICore::instance() to get access to them.
* replace ExtensionSystem::PluginManager::instance()->getObject<Core::ICore>() ↵hjk2009-01-202-18/+10
| | | | by Core::ICore::instance()
* Remove #include <extensionsystem/pluginmanager.h> from icore.h, ahjk2009-01-191-1/+2
| | | | forward declaration is sufficient.
* remove ProjectExplorerInterface and ExtensionSystemInterfaces fileshjk2009-01-141-1/+1
|
* Fixes: - ICommand --> Commandcon2009-01-141-1/+1
| | | | Details: - Naming convention
* Fixes: - IActionContainer --> ActionContainercon2009-01-141-2/+2
| | | | Details: - Conform to naming convention
* Bump year in licence header.Daniel Molkentin2009-01-134-4/+4
|
* Modified IOptionsPage interface for Apply buttonThorbjørn Lindeijer2009-01-132-5/+3
| | | | | | | | | | | The previous interface wasn't sufficient to properly support the Apply button, since it didn't separate applying the changes from the cleanup phase. Designer settings pages still need some fixing. Fixes Apply button causing problems for certain plugins, for example the QuickOpen.
* Fixes: - Rename ActionManagerInterface --> ActionManagercon2009-01-131-2/+2
| | | | Details: - To make it conform to naming convention.
* Bump version from 0.9.1 to 0.9.2goro2008-12-181-4/+4
|
* Merge branch '0.9.1-beta' of git@scm.dev.nokia.troll.no:creator/mainline ↵dt2008-12-164-4/+4
|\ | | | | | | into 0.9.1-beta
| * chancge Nokia GPL exception version from 1.2 to 1.3hjk2008-12-164-4/+4
| |