Эта страница содержит устаревшую информацию. Доступна более новая страница на английском языке

Пресса о KDevelop

software.newsforge.com (май 2004):

Newsforge (подразделение sourceforge) объявило KDevelop - "убойным" приложением ("free Software's killer application")

www.linuxformat.co.uk (декабрь 2002):

"Нет сомнения, что KDevelop программа высшего качества. Последнии версии поддерживают KDE3 и разработчики совершают большую работу, следя за развитием KDE. Этой программой могут пользоваться как новички, так и профессиональные разработчики. Она предоставляет множество возможностей почти для всех, исключая очень требовательных пользователей, и очень трудно объяснить, что KDevelop совершенно бесплатен" далее...(формат PDF)

linux-mag.com (июнь 2001):

"KDevelop обладает множеством возможностей, которые мы ожидали найти, тестируя большинство интегрированных средств разработки, но не нашли","Это действительно ошеломляющая программа, которая включает все преимущества программ с открытым кодом и интегрированная среда разработки со всякими прикольными звоночками, свисточками и другими классными штучками" далее...

Borders.com (декабрь 1999):

"Дело в том, что эта программа поднимает разработку приложений для KDE на другой уровень значимости. Потому что KDevelop позволяет легко написать KDE-приложение" ... "Я очень советую её попробовать." далее...

Linuxworld (ноябрь 1999):

"Я должен согласиться, что я впечатлён уровнем качества программы во всех отношениях. " ... " Одна вещь несомненна: Я собираюсь использовать KDevelop чтобы таки написать моё первое графическое приложение под Linux." далее...

Visual Developer (ноябрь 1999):

"Эта программа изменит Ваш стиль программирования под Linux. " ... " Вы можете использовать её для того, чтобы редактировать текст, руководить проектами, читать документацию, отлаживать программы, проектировать графические интерфейсы, управлять исходными текстами и просматривать отношения между классами во всём приложении..." далее...

Интервью с командой разработчиков KDevelop

www.freehackers.org, Philippe Fremy (август 2002):

http://www.freehackers.org/interviews/kdevelop-2002-08/

Latest blog posts from KDevelop developers RSS feed

KDevelop4 UI: Areas, Working Sets, etc.

General Progress A lot is happening in KDevelop4 these days. Now it’s nearly already 2 Months ago that we had our developer meeting in Ukraine. We had a lot of fun, although for me the trip started two days late. I didn’t get my passport in time, damn. But once there, I got quite product...

Source: Zwabel's Weblog | 21 Jun 2009 | 11:58 pm

Really rapid C++ development with KDevelop4

Code Assistants When developing for a statically typed language like C++, there usually is quite a bit of redundancy during the development, especially when creating a completely new piece of code. A powerful IDE with deep code understandic theoretically could save a significant amount of the writin...

Source: Zwabel's Weblog | 13 Mar 2009 | 9:52 pm

Typedefs in Templates, and Code-Completion

Sometimes you have to decide between being “correct”, and being user-friendly. Also, sometimes you have to do one painful change with many regressions, to reach an ultimately better state. I hope I had to do the last such step before the stable KDevelop release(Though you never know). I...

Source: Zwabel's Weblog | 6 Mar 2009 | 3:28 pm

KDevelop4: Creating a Qt slot, the cool way

In an earlier blog-post I’ve already written about automatic signal/slot matching and completion(See this). The code-completion box shows you the appropriate connectable signals and slots, and also shows exactly what signals match what slots. Now what if you have a signal, and you know want to...

Source: Zwabel's Weblog | 13 Feb 2009 | 11:52 pm

KDevelop4: Automatic include-directives and forward-declarations

Missing Include Completion C++ is a great and powerful programming-language. Yet it has the downside against some other languages, that you always have to deal with include-directives or forward-declarations before you can use a class. This is a factor that often motivates me not to create too many...

Source: Zwabel's Weblog | 4 Feb 2009 | 2:09 am

C++ IDE Evolution: From Syntax Highlighting to Semantic Highlighting

Most of us developers are so acccustomed to syntax highlighting, that we couldn't live without it. Syntax highlighting helps us keeping an overview or finding the place we're searching for. However it can not help us actually understanding the code. That's where Semantic Highlighting comes into play...

Source: Zwabel's Weblog | 8 Jan 2009 | 4:19 am

STL Visualization

As of today, KDevelop can nicely display std::vector. I'll probably omit the obvious snapshot, and will point to a mailing list post with instructions for trying it. Instead, I'll tell the story of this feature. For its entire history, GDB did not have any official way to display types from the C+...

Source: Volodya's blog | 6 Jun 2009 | 7:24 pm

KDevelop error display

For quite a while I wanted KDevelop to display compilation errors directly inside the editor, as opposed to separate window you have to click in. It works now, as shown below. This was implemented by Ivan Ruchkin, a student at Moscow State University, who will be defending a term paper about vario...

Source: Volodya's blog | 20 May 2009 | 6:22 pm

Debugger stories: pending breakpoints

KDevelop 3.5 has a subtle bug. Sometimes, when you step over a function call, you don't stop on the next line. Instead, the application is resumed until it hits a breakpoint, or exits. This bug, in fact, is consequence of how breakpoints in shared libraries are implemented. Suppose you've just star...

Source: Volodya's blog | 21 Dec 2007 | 7:47 pm

Debugger stories: Watchpoints

One of my faviourite debugger changes in KDevelop 3.4 is proper watchpoint handling. Before explaining it, some introduction is due. Say you're debugging and see that the 'foo' field of 'pointer_to_some_data' is completely bogus. You are sure that it was valid some time ago, like when its containin...

Source: Volodya's blog | 31 May 2006 | 11:12 am

Introducing MI branch

For recent months, I was working on an internal reorganization of KDevelop debugger, informally known as "MI branch". Now that it mostly works, it's time to describe the goals and results. The original goal was to use a different interface with GDB, called "MI", that's specifically meant for front...

Source: Volodya's blog | 2 May 2006 | 9:17 am

Non-constant size

Quite some time ago, when I was learning STL, all information sources stressed the importance of learning complexity guarantees that methods of various containters make. One specific subtle thing is that the std::list::size() method runs in linear time, not in constant time. It was explicitly design...

Source: Volodya's blog | 27 Apr 2006 | 11:48 am

Printf debugging 2006

One of the oldest methods of debugging is "printf debugging" -- putting various print statements in the code and then staring at the output. That's useful not only if you can't use a debugger. If the program does not crash, but produces wrong results after long computation, it's hard to figure where...

Source: Volodya's blog | 6 Apr 2006 | 11:57 am

1 + 2

I've just got the following: (gdb) target remote :1234 Remote debugging using :1234 main () at main.cpp:5 5 { (gdb) p add(1, 2) $1 = 3 As you see, using the gdb debugger I've evaluated expression add(1,2), where function add presumably adds two numbers, and got the right result. What's inte...

Source: Volodya's blog | 21 Jul 2005 | 4:18 pm

kdevelop-pg-qt repository content replaced

Yeah, thats right, I just replaced the original repo content on gitorious.org via a forced-push with a newly generated repo. This was necessary as I missed a conversion-error from the svn2git rules earlier which screwed up the checked-out content of the repository. I’ve decided to do a forced...

Source: apaku | 13 May 2010 | 7:46 pm

KDevelop & Co moved to gitorious.org

Wow, I haven’t blogged this much in quite a while… This will be a relatively short announcement that kdevelop, kdevplatform, quanta and the two php plugins have been moved to gitorious.org. This will allow us to work on features more easily and hopefully also help us get the next release...

Source: apaku | 5 May 2010 | 8:22 pm

Finally KDevelop 4.0 final published

Those reading the dot regularly will already know it, the final release of KDevelop 4.0 is out. For more extensive information what it includes I suggest you read the dot story. It only took us 3 years to get there and I think what we’ve accomplished is quite amazing. And its just the beginnin...

Source: apaku | 1 May 2010 | 3:30 pm

Happy SoC coding everybody

Google just announced the official and final list of accepted students for the SoC program. KDE got more accepted students this year than past, so its a big success for us all. This will hopefully again be a successful SoC season for KDE, bringing new contributors and implementing lots of cool ideas...

Source: apaku | 26 Apr 2010 | 10:48 pm

KDevelop 4.0 Screenshots

This blog entry is a supplemental to the KDevelop 4.0 release announcement to show off the new stable release with some nice screenshots. So enjoy KDevelop after starting and opening a project and file Quick Outline of the current file PHP Quick Outline Quick Open in PHP project As-You-Type Code Com...

Source: apaku | 25 Apr 2010 | 9:18 pm

KDevelop4 RC3 released (RC2 tarballs are broken)

This time around svn got me, I’ve used the createtarball script from kdesdk to generate the RC2 tarballs so we ship translations. This worked just fine, except that for some unknown reason svn likes to not check out svn:externals when doing an svn co of kdevplatform. This resulted in a kdevpla...

Source: apaku | 16 Apr 2010 | 8:50 pm

KDevelop4 Release Candidate 1

Finally getting around to blog about this. We’ve released RC1 of KDevelop4 today. We’ve fixed a couple of bugs and got some good performance improvements, but even more will be in RC2. RC2 will also ship with translations, for RC1 we’ve discovered a severe problem that we couldn...

Source: apaku | 8 Apr 2010 | 8:51 am

KDevelop4 Beta9 released

Yeah, finally, this marks the end of a rather long line of beta’s. The first one is more than a year old! But it also means we’re finally getting closer to a 4.0 release. Now its time to go through the open bugreports for KDevelop and KDevPlatform. Also make sure you read the dot story [...

Source: apaku | 8 Mar 2010 | 10:37 pm

Custom Buildsystem Support for KDevelop4

A bit of background first: The buildsystem we (as in froglogic) use for Squish is custom written using Javascript and that means its not very nice to use KDevelop for hacking on the code. The reason is that KDevelop4 needs to know about includes and defines from the projects buildsystem to provide p...

Source: apaku | 19 Feb 2010 | 10:58 pm

Beware of KDevelop Master and KDELibs 4.5.1 or lower

Hey all, please don’t use KDevelop master with KDELibs 4.5.1 or lower. Katepart in that version misses a crucial commit that makes KDevelop crash. It is fixed for 4.5.2. In the meantime you have on of the following options: Build kate from sources Switch to the stable branches, i.e.: KDevpl...

Source: Milian Wolff - kdevelop | 8 Sep 2010 | 5:57 pm

KDevelop 4.0.2 and KDevelop 4.1 Beta 1 released

Good news everyone, this time in a double feature! I’m happy to announce the availability of two new additions to the KDevelop release family: KDevelop 4.0.2 stable release Lets begin with the boring part: We have released KDevelop 4.0.2, together with KDevplatform and the PHP plugins. Yo...

Source: Milian Wolff - kdevelop | 5 Sep 2010 | 7:13 pm

Final days of Quanta GSOC 2010

Hey everyone, as the pencils down for this years GSOC is approaching I thought it’s time to write another blog entry to notify the world about my current status. These past weeks (boy, the time flies…) I’ve mostly spent on hardcore KDevplatform internals. Especially getting multi...

Source: Milian Wolff - kdevelop | 4 Aug 2010 | 1:38 am

KDevelop 4.0.1 released

Good news everyone! I’m happy to announce the availability of our first patch level release for KDevelop 4. You can get it and the related packages from: http://download.kde.org/download.php?url=stable/kdevelop/4.0.1/src/ This is a bugfix only release and everyone is urged to upgrade as soo...

Source: Milian Wolff - kdevelop | 21 Jul 2010 | 4:28 pm

KDevelop 4 talk at 12:15 today!

Hey everyone! Apparently “Application Integration from KDE Finance Group” is not taking place, instead Aleix and me will fill the gap and talk about KDevelop 4. We haven’t got any slides and only prepared roughly yesterday, but we decided just to show KDevelop 4 in action. Lets ho...

Source: Milian Wolff - kdevelop | 4 Jul 2010 | 8:43 am

KDevelop PHP Advancements: Namespaces and Error Recovery

Hi there, just a quicky before I head off to bed and go on a short vacation the next few days: PHP support in KDevelop now has support for the first PHP 5.3 feature, namely namespaces. I’m still convinced that the syntax sucks pretty bad in PHP’s implementation of namespaces but well,...

Source: Milian Wolff - kdevelop | 24 Jun 2010 | 2:08 am

KDevelop - ExternalScript plugin

Heyho, me again :) Seems like I have quite the urge to write blog posts recently… Anyhow: The last two days I reimplemented / ported two features from Quanta 3 times to KDevelop (if you still didn’t get it: everything is a plugin, hece it will be reused in Quanta 4). What I’m tal...

Source: Milian Wolff - kdevelop | 16 Jun 2010 | 2:06 pm

KDevelop Webdev plugins merged into Quanta GIT

Quick note: I’ve just merged all webdevelopment related plugins except PHP & PHP-Docs into Quanta git. You can get them all in one place now by cloning Quanta: http://gitorious.org/kdevelop/quanta Since I also moved all halfworking plugins to UNPORTED (they don’t get installed), yo...

Source: Milian Wolff - kdevelop | 13 Jun 2010 | 5:18 pm

First Days of Quanta+ GSOC 2010

Ok, finally I take the time to blog again. The last two weeks have been a busy time for me and I couldn’t find as much time for GSOC as I would have wanted. I had to finish up some things at KDAB where I spent the last three months doing an internship (maybe I should write another blog about...

Source: Milian Wolff - kdevelop | 4 Jun 2010 | 10:16 pm

KDevelop Git support

KDE is moving to Git, Qt did a while ago, like many other free software project did before. I’m sure you would expect your favorite IDE to properly integrate with your Free Software projects seemlessly, well from the upcoming KDevelop 4.1 version you’re going to find them supported by de...

Source: TheBlindCow | 1 Sep 2010 | 5:38 pm

Working with KDevelop master along with KDE trunk

As some of you will know, given some kate recent changes, now it’s not possible to work with KDevelop/KDevPlatform master together with up-to-date kdelibs trunk, so if you want to keep up to date with KDevelop development you will want to freeze your svn trunk to some revision before r1162564.

Source: TheBlindCow | 17 Aug 2010 | 1:40 am

GSoC Progress

Hi, I’ve been willing to talk about my progress on the GSoC project for a while, never found the time though, so I decided to do it today given my sleepy state. The first part that’s working (besides some little issues) is the new Import Wizard page for importing projects from the VCS lo...

Source: TheBlindCow | 7 Jul 2010 | 12:53 am

Buzzing

I haven’t found the laptop of my dreams yet (yes, I’m a romantic, probably I should write some series about How I Met My Laptop when I’m done) but life has not stopped, au contraire, it just kept moving on. For starters, I spent last week with the KDE Edu and KDE Multimedia teams i...

Source: TheBlindCow | 28 May 2010 | 2:02 pm

api.kde.org and Qt Assistant

The KDE API Reference (api.kde.org) web site is now providing ".qch" files suitable for loading into Nokia's Qt Assistant. Look for the "[qt]" links. Currently, auto-regeneration of these files happens on a nightly basis for kdelibs and kdepimlibs trunk, and for kdelibs and kdepimlibs 4.5. More ca...

Source: kdedevelopers.org blogs | 6 Sep 2010 | 2:40 pm

Milian Wolff (milianw): Beware of KDevelop Master and KDELibs 4.5.1 or lower

Hey all, please don’t use KDevelop master with KDELibs 4.5.1 or lower. Katepart in that version misses a crucial commit that makes KDevelop crash. It is fixed for 4.5.2. In the meantime you have on of the following options: Build kate from sources Switch to the stable branches, i.e.: KDevpl...

Source: Planet KDE | 8 Sep 2010 | 5:57 pm

Allen Winter: api.kde.org and Qt Assistant

The KDE API Reference (api.kde.org) web site is now providing ".qch" files suitable for loading into Nokia's Qt Assistant. Look for the "[qt]" links. Currently, auto-regeneration of these files happens on a nightly basis for kdelibs and kdepimlibs trunk, and for kdelibs and kdepimlibs 4.5. More ca...

Source: Planet KDE | 6 Sep 2010 | 2:40 pm

Milian Wolff (milianw): KDevelop 4.0.2 and KDevelop 4.1 Beta 1 released

Good news everyone, this time in a double feature! I’m happy to announce the availability of two new additions to the KDevelop release family: KDevelop 4.0.2 stable release Lets begin with the boring part: We have released KDevelop 4.0.2, together with KDevplatform and the PHP plugins. Yo...

Source: Planet KDE | 5 Sep 2010 | 7:13 pm

Эта страница была обновлена: Втр 10 Июн 2008 01:20:48

Сайт перевели и переводят: Nick Shaforostoff, Nikolay Melekhin

В случае проблем с сайтом, свяжитесь с webmaster.
Английский Арабский Чешский Немецкий Испанский Французский Венгерский Индонезийский Итальянский Голландский Польский Португальский Бразильский португальский Румынский Русский Турецкий Украинский Упрощенный китайский
Powered by Google
www www.kdevelop.org