2016年1月

Facebook 于2013年花费了 8500 万美元收购了 Parse ,这是一家为移动应用提供后台开发云服务的平台。而今,由于 Parse 一直以来未能为 Facebook 提供预期的营收,Facebook 决定一年后将其正式关闭,并将其代码开源。

Parse 的 CTO Kevin Lacker 在博客上说:“我们很荣幸帮助了这么多的开发者开发了如此多的优秀移动应用,不过我们今后需要专注在其它的事情上了。”

MBaaS 市场正在不断整合,特别是在 Facebook 收购了 Parse 之后。 Parse 的许多老员工纷纷辞职,这其中包括 Parse 的前 CEO Ilya Sukhar。不像 Instagram,Facebook 从未将 Parse 从 AWS 上移到自己的数据中心。虽然 Facebook 一直在更新 Parse 的功能,即使在其开源了 SDK 之后还是如此,但目前看起来 Facebook 已经对此彻底失望了。

Parse 提供了开发移动应用的后台服务,包括数据存储、消息推送及用户管理等等。这样开发者可专注于客户端的开发商,而不用操心太多服务器端的问题。Parse 的用户包括 Quip 和 Orbitz 等大公司,不过 Parse 并没能为 Facebook 贡献很好的营收。此外,AWS、微软 Azure 和谷歌的 GCP 都为构建和部署移动应用提供了快速交付和增强工具。

在宣布了服务即将关闭之后,Parse 也提供了数据迁移工具,以便用户可以将应用迁移到 MongoDB 数据库上去。此外,Parse 还发布了开源版的 Parse 服务器,可以运行在你自己的 Node.js 服务器上。这样用户的应用可以在新的数据库上,用自己的 Parse 服务器支持绝大部分原有的 Parse API,对于客户端的影响很小。

参考来源:parse.comventurebeat.com

为了完成课程作业,我写了很多 C 语言代码并把它们保存为 /home/user/c/*.c 和 *.h。那么在 UNIX shell 窗口中我如何能通过字符串或者单词(例如函数名 main())文件内容来查找文件呢?

你需要用到以下工具:

[a] grep 命令 : 输出匹配模式的行。

[b] find 命令: 在目录层次中查找文件。

使用 grep 命令根据内容查找文件

输入以下命令:

grep 'string' *.txt
grep 'main(' *.c
grep '#include<example.h>' *.c
grep 'getChar*' *.c
grep -i 'ultra' *.conf
grep -iR 'ultra' *.conf

其中

  • -i : 忽略模式(匹配字符串 valid、 VALID、 ValID )和输入文件(匹配 file.c FILE.c FILE.C)的大小写。
  • -R : 递归读取每个目录下的所有文件。

高亮匹配到的模式

在搜索大量文件的时候你可以轻松地高亮模式:

$ grep --color=auto -iR 'getChar();' *.c

为查找到的模式显示文件名和行号

你也许需要显示文件名和行号:

$ grep --color=auto -iRnH 'getChar();' *.c

其中,

  • -n : 在输出的每行前面添加以 1 开始的行号。
  • -H : 为每个匹配打印文件名。要搜索多个文件时这是默认选项。(LCTT 译注:-h 选项强制隐藏文件名;另外 -l 和 -L 选项用于仅显示匹配/不匹配的文件名,而 -H 和 -h用于控制在显示匹配行前显示/不显示文件名,注意区分。)
$grep --color=auto -nH 'DIR' *

输出样例:

Fig.01: grep 命令显示搜索到的模式

图 01: grep 命令显示搜索到的模式

你也可以使用 find 命令:

$ find . -name "*.c" -print | xargs grep "main("

via: http://www.cyberciti.biz/faq/unix-linux-finding-files-by-content/

作者:Vivek Gite 译者:ictlyh 校对:wxy

本文由 LCTT 原创编译,Linux中国 荣誉推出

理查德·马修·斯托曼(Richard Matthew Stallman, RMS)

(题图来自:wikimedia)

理查德·马修·斯托曼 Richard Matthew Stallman (RMS) – 神级程序员之一。他是一名程序员,是 GCC、GDB、Emacs 的构建者,软件自由的传教士,GNU ProjectFSF 的创办人。

GNU 是 “GNU’s Not Unix!”的递归缩写。GNU 是一系列用于基于 Unix 的操作系统的自由软件集合。它能用于 GNU/Hurd 和 Linux 内核。于1983年9月27日公诸于众。常用组件有:

  • GNU Compiler Collection (GCC)
  • GNU C library (glibc)
  • GNU Core Utilities (coreutils)
  • GNU Debugger (GDB)
  • GNU Binary Utilities (binutils)
  • GNU Bash shell
  • GNOME desktop environment

自由软件基金会 Free Software Foundation (FSF) – 一个自由软件的非营利组织,致力于推进计算机用户的自由和捍卫他们的权力。于 1985年10月4日成立。阅读更多

许多人不理解 开源代码 open source code 自由软件 free software 的区别。每个程序都应该是自由软件:

  • 与目的无关,随心运行程序的自由(自由0)。
  • 学习程序如何运作,并改变它为你所用的自由(自由1)。可以访问源码是这一条的前提。
  • 重新发布副本的自由,如此你便可以帮助你周围的人(自由 2)。
  • 发布自己修改版本给他人的自由(自由 3)。这样能让整个社区有机会从你的改变中受益。可以访问源码是这条的前提。

以上为自由软件的四项自由原则。

以下为理查德·斯托曼关于自由、软件、社交、哲学等方面的名言摘引。

关于 Facebook:

Facebook is not your friend, it is a surveillance engine.

Facebook 不是你的朋友,是监控引擎。

关于 Android:

Android is very different from the GNU/Linux operating system because it contains very little of GNU. Indeed, just about the only component in common between Android and GNU/Linux is Linux, the kernel.

Android 和 GNU/Linux 有很大的区别,因为其中几乎没有 GNU。的确,Android 和 GNU/Linux 之间仅有一个共同组件,那就是内核 - Linux。

关于计算机行业:

The computer industry is the only industry that is more fashion-driven than women's fashion.

计算机行业是唯一一个比女性时尚业更容易受潮流影响的行业了。(LCTT 译注:感谢 BIAOXYZ 的修正意见。)

关于云计算:

The interesting thing about cloud computing is that we've redefined cloud computing to include everything that we already do.

关于云计算,有趣的是我们已经重新定义了云计算来包含我们曾干过的所有事。

关于伦理:

Whether gods exist or not, there is no way to get absolute certainty about ethics. Without absolute certainty, what do we do? We do the best we can.

无论神存在与否,都没有绝对的伦理道德。没有这份理所当然,我们该如何?也唯有尽善吧。

关于自由:

Free software is software that respects your freedom and the social solidarity of your community. So it's free as in freedom.

自由软件是尊重个人自由和社会团结的软件。所以才能如自由般自由自在。

关于目标和理想:

If you want to accomplish something in the world, idealism is not enough - you need to choose a method that works to achieve the goal.

如果你想为这世界做些什么,仅有理想是不够的,你需要找条通往目标的道路并走完。

关于分享:

Sharing is good, and with digital technology, sharing is easy.

分享很棒,而且数字化技术也使分享变得容易。

关于 facebook(进阶版):

Facebook mistreats its users. Facebook is not your friend; it is a surveillance engine. For instance, if you browse the Web and you see a 'like' button in some page or some other site that has been displayed from Facebook. Therefore, Facebook knows that your machine visited that page.

Facebook 蹂躏它们的用户。它不是你们的朋友;它就是个监控引擎。举个例子,你是否曾在一些网页或网站上看到 Facebook 的 “like” 按键。对,Facebook 知道你的电脑曾访问过那些网页。

关于 web 应用:

One reason you should not use web applications to do your computing is that you lose control.

给你个为什么不应该使用 web 应用的理由,因为你失去了计算机的控制权。

If you use a proprietary program or somebody else's web server, you're defenceless. You're putty in the hands of whoever developed that software.

如果你使用私有程序或他人的 web 服务器,那么你只能任人鱼肉。被软件的开发者轻易操纵。

关于书:

With paper printed books, you have certain freedoms. You can acquire the book anonymously by paying cash, which is the way I always buy books. I never use a credit card. I don't identify to any database when I buy books. Amazon takes away that freedom.

印刷出来的书,当然是自由的。你可以付现金匿名买书,这也是我一直买书的方式。我绝不会使用信用卡,我买书时不会被任何数据库记下。是亚马逊把自由夺走了。

关于 MPAA:

Officially, MPAA stands for Motion Picture Association of America, but I suggest that MPAA stands for Malicious Power Attacking All.

MPAA 其实是 美国电影协会 Motion Picture Association of America ,但我认为叫做 攻击万物的邪恶力量 Malicious Power Attacking All 更为合适。

关于金钱与职业:

I could have made money this way, and perhaps amused myself writing code. But I knew that at the end of my career, I would look back on years of building walls to divide people, and feel I had spent my life making the world a worse place.

我可以找份工作赚钱,并沉浸在编码的快乐中。但在职业生涯结束后,回首目睹自己筑就的高墙将人与人分隔开,我会觉得我耗尽毕生精力只换来了一个更糟糕的世界。

关于私有软件:

Proprietary software keeps users divided and helpless. Divided because each user is forbidden to redistribute it to others, and helpless because the users can't change it since they don't have the source code. They can't study what it really does. So the proprietary program is a system of unjust power.

私有软件使用户孤立、无助。因为禁止将软件给他人使用所以孤立,因为无法改变源码所以无助。他们不能学习其中真正的工作方式,所以整个私有软件体系就是一种不公的力量。

关于智能手机:

A smartphone is a computer - it's not built using a computer - the job it does is the job of being a computer. So, everything we say about computers, that the software you run should be free - you should insist on that - applies to smart phones just the same. And likewise to those tablets.

智能手机就是电脑 —— 虽然做的和常用的电脑不同 —— 但是却能干电脑能干的活。所以我们所说的一切有关于电脑上的软件应该能自由运行 —— 必须坚持这一点 —— 在智能手机上也是这样,当然也包括平板。

关于 CD 和数字内容:

CD stores have the disadvantage of an expensive inventory, but digital bookshops would need no such thing: they could write copies at the time of sale on to memory sticks, and sell you one if you forgot your own.

CD 商店有一个弱势就是需要昂贵的库存,但是电子商店就没有这方面的需求:他们只需要将售卖的副本写入记忆棒,并在你忘带自己的记忆棒时卖你一个就是了。

关于 竞争范式 paradigm of competition

The paradigm of competition is a race: by rewarding the winner, we encourage everyone to run faster. When capitalism really works this way, it does a good job; but its defenders are wrong in assuming it always works this way.

竞争范式就像是赛跑:奖励胜者,鼓励每一个跑得更快的人。当资本主义真的这样运作时,当然是件好事;但是维护它的人若是假设它一直这样运作的话那就大错特错了。

关于 vi 和 emacs:

People sometimes ask me if it is a sin in the Church of Emacs to use vi. Using a free version of vi is not a sin; it is a penance. So happy hacking.

有时会有人问我在 Emacs 的阵营使用 vi 是不是一种罪过。使用自由版的 vi 并不是一种罪过;是一种自我惩罚。所以好好享受其中乐趣吧。

关于自由和历史:

Value your freedom or you will lose it, teaches history. 'Don't bother us with politics', respond those who don't want to learn.

历史告诉我们不珍惜自由便失去自由,然而有的人不懂吸取教训,只知道说“别拿政治烦我们”。(LCTT 译注:感谢 肖岚 的修正意见。)

关于专利:

Fighting patents one by one will never eliminate the danger of software patents, any more than swatting mosquitoes will eliminate malaria.

和专利一个一个的战斗并不能解决软件专利带来的危害,就像打再多的蚊子也消灭不了疟疾一样。

Software patents are dangerous to software developers because they impose monopolies on software ideas.

软件专利对于软件的开发者来说十分危险,因为它们加剧了对于软件理念的垄断。

关于版权:

In practice, the copyright system does a bad job of supporting authors, aside from the most popular ones. Other authors' principal interest is to be better known, so sharing their work benefits them as well as readers.

其实,版权制度对作者也没有什么好处,撇开最受欢迎的那个,其他作者的主旨可能更好理解,所以分享无论对他们还是你的读者都是一件好事。

关于工作与报酬:

There is nothing wrong with wanting pay for work, or seeking to maximize one's income, as long as one does not use means that are destructive.

劳有所得,或寻求收入的最大化并没有什么错,只要不是不择手段。

关于 Chrome OS:

In essence, Chrome OS is the GNU/Linux operating system. However, it is delivered without the usual applications, and rigged up to impede and discourage installing applications.

Chrome OS 确实是 GNU/Linux 的操作系统。但是,它在发布时没有安装常用应用,并为安装他们设置了阻碍。

关于 Linux 用户:

Many users of the GNU/Linux system will not have heard the ideas of free software. They will not be aware that we have ideas, that a system exists because of ethical ideals, which were omitted from ideas associated with the term 'open source.'

许多的 GNU/Linux 用户并没有听过自由软件。他们并没有意识到,这个系统是因为道德理想才存在的,与此一起被忽视的还有所谓的“开源”。

关于 facebook 的隐私:

If there is a Like button in a page, Facebook knows who visited that page. And it can get IP address of the computer visiting the page even if the person is not a Facebook user.

如果页面上有 “like” 按键,Facebook 就能知道谁访问了页面。即使不是 Facebook 的用户,也可以得到访问该页面电脑的 IP 地址。

关于编程:

Programming is not a science. Programming is a craft.

编程不是科学,编程是手艺。

My favorite programming languages are Lisp and C. However, since around 1992 I have worked mainly on free software activism, which means I am too busy to do much programming. Around 2008 I stopped doing programming projects.

Lisp 和 C 语言是我的最爱。然自 1992 年以来我主要工作在自由软件活动上,导致我太忙了,没法做更多的编程。大概在 2008 年我便停止了做编程项目。

C++ is a badly designed and ugly language. It would be a shame to use it in Emacs.

C++ 设计的真糟糕、真丑陋。在 Emacs 上用它应该觉得羞愧。

关于 钻研 hacking 和学习编程:

People could no longer learn hacking the way I did, by starting to work on a real operating system, making real improvements. In fact, in the 1980s I often came across newly graduated computer science majors who had never seen a real program in their lives. They had only seen toy exercises, school exercises, because every real program was a trade secret. They never had the experience of writing features for users to really use, and fixing the bugs that real users came across. The things you need to know to do real work.

(时过境迁,)人们没法再像我当初那样通过改进实实在在的操作系统来学习编程了。上世纪 80 年代,我常遇见计算机专业的毕业生,有生以来没见过真正的程序。他们接触的到的只有小玩意和学校的作业,因为每一个程序都是商业机密。他们没有机会为用户去写真正实用的特性,修复用户真正遭遇的问题。而这些正是真正的工作中你需要掌握的(东西)。(LCTT 译注:感谢 肖岚 的改进意见。)

It is hard to write a simple definition of something as varied as hacking, but I think what these activities have in common is playfulness, cleverness, and exploration. Thus, hacking means exploring the limits of what is possible, in a spirit of playful cleverness. Activities that display playful cleverness have "hack value".

对于如“hacking”这般多样化的东西真的很难简单的下定义,不过在我看来诸如此类的行为都会有以下的这些共同点:嬉乐、智慧和探索。因此,hacking 意味着对可能的极限的探索,一颗向往快乐与智慧的心。能带来快乐与智慧的行为就有 “hack 的价值” 。

关于浏览网页:

For personal reasons, I do not browse the web from my computer. (I also have no net connection much of the time.) To look at page I send mail to a daemon which runs wget and mails the page back to me. It is very efficient use of my time, but it is slow in real time.

出于个人原因,我不会在我的电脑上浏览网页。(大部分时间处于没有网络连接的状态。)要浏览网页,我需要给一个守护进程发 mail,然后它会运行 wget 并把页面通过 mail 发还给我。这对我而言已经是最效率了,但那真的比实时慢太多了。

关于音乐共享:

Friends share music with each other, they don't allow themselves to be divided by a system that says that nobody is supposed to have copies.

朋友之间彼此分享音乐,绝不会希望因为系统的一句:“禁止私下拷贝!”而生分。


via: https://tlhp.cf/fsf-richard-stallman/

作者:Pavlo Rudyi 译者:martin2011qi 校对:wxy

本文由 LCTT 原创编译,Linux中国 荣誉推出

我怎样从几个文件中搜索(grep),并只显示匹配到的文件的文件名?

当你从不止一个的文件中搜索时,默认它将显示文件名:

grep "word" 文件名
grep root /etc/*

示例输出:

/etc/bash.bashrc:       See "man sudo_root" for details.
/etc/crontab:17 *       * * *   root    cd / && run-parts --report /etc/cron.hourly
/etc/crontab:25 6       * * *   root    test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
/etc/crontab:47 6       * * 7   root    test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )
/etc/crontab:52 6       1 * *   root    test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )
/etc/group:root:x:0:
grep: /etc/gshadow: Permission denied
/etc/logrotate.conf:    create 0664 root utmp
/etc/logrotate.conf:    create 0660 root utmp

每行开始的第一个部分是文件名(如:/etc/crontab、/etc/group)。使用 -l 选项可以只显示文件名:

grep -l "string" filename
grep -l root /etc/*

示例输出:

/etc/aliases
/etc/arpwatch.conf
grep: /etc/at.deny: Permission denied
/etc/bash.bashrc
/etc/bash_completion
/etc/ca-certificates.conf
/etc/crontab
/etc/group

你也可以逆转输出;使用 -L 选项来输出那些不匹配的文件的文件名

grep -L "word" filename
grep -L root /etc/*

示例输出:

/etc/apm
/etc/apparmor
/etc/apparmor.d
/etc/apport
/etc/apt
/etc/avahi
/etc/bash_completion.d
/etc/bindresvport.blacklist
/etc/blkid.conf
/etc/bluetooth
/etc/bogofilter.cf
/etc/bonobo-activation
/etc/brlapi.key

via: http://www.cyberciti.biz/faq/grep-from-files-and-display-the-file-name/

作者:Vivek Gite 译者:wxy 校对:wxy

本文由 LCTT 原创编译,Linux中国 荣誉推出

在 Linux 或 UNIX 操作系统下,对于给定的单词或字符串,我们应该怎么统计它们在每个输入文件中存在的行数呢?

您需要通过添加 -c 或者 --count 选项参数来抑制正常的输出。它将会显示对输入文件单词匹配的行数,如下所示:

$ grep -c vivek /etc/passwd

或者

$ grep -w -c vivek /etc/passwd

输出的示例:

1

相反的,使用 -v 或者 --invert 选项参数可以统计出不匹配的输入文件行数,键入:

$ grep -c vivek /etc/passwd

输出的示例:

45

via: http://www.cyberciti.biz/faq/grep-count-lines-if-a-string-word-matches/

作者:Vivek Gite 译者:runningwater 校对:wxy

本文由 LCTT 原创编译,Linux中国 荣誉推出

概述

KDE – 史上功能最强大的桌面环境之一;开源且可自由使用。19年前,1996年10月14日,德国程序员 Matthias Ettrich 开始了这个美观的桌面环境的开发。KDE 提供了用户界面以及其他很多日常使用的程序。今日,KDE 被成千上万人在 Unix 和 Windows 上使用。19年,一个对软件项目而言极为漫长的年岁。现在是时候让我们回到最初,看看这一切肇始于何处。

K Desktop Environment(KDE)有很多创新之处:新设计,美观,一致的体验,易于使用,对普通用户和专业用户都足够强大的应用库。“KDE”这个名字是对单词 “通用桌面环境” Common Desktop Environment 玩的一个简单谐音游戏,“K”即“Cool”。 第一代 KDE 在双许可证授权下使用了 Trolltech 公司专利的 Qt framework(现 Qt 的前身),这两个许可证分别是开源的 QPL(Q public license)和 商业专利许可证 proprietary commercial license 。在2000年 Trolltech 公司让一部分 Qt 软件库开始发布在 GPL 证书下; Qt 4.5 发布在了 LGPL 2.1 许可证下。自2009起 KDE 桌面环境由三部分构成:Plasma Workspaces(用做交互界面),KDE Applications,作为 KDE Software 编译的 KDE Platform。

各发布版本

预发布版本 – 1996年10月14日

当时名称为 Kool Desktop Environment;“Kool”这个单词在很快就被弃用了。最初,所有 KDE 的组件都是被单独发布在开发社区里的,它们并没有被一个大的项目所贯穿起来。开发组邮件列表中的首选通信是发往 [email protected] 邮件列表。

KDE 1.0 – 1998年7月12日

这个版本受到了颇有争议的反馈。很多人反对使用 Qt 框架,因为当时的 FreeQt 许可证和自由软件许可证并不兼容,他们建议开发组使用 Motif 或者 LessTif 替代。尽管有着这些反对声,KDE 仍然被很多用户所青睐,并且成功作为第一个 Linux 发行版的环境被集成了进去。

28 January 1999

1999年1月28日

有一次升级,K Desktop Environment 1.1,更快,更稳定的同时加入了很多小的改进。这个版本同时也加入了很多新的图标,背景和材质纹理。和这些全面翻新同时出现的还有 Torsten Rahn 绘制的全新 KDE 图标----一个放在齿轮前的字母 K ;这个图标的修改版也一直沿用至今。

KDE 2.0 – 2000年10月23日

重大更新:

  • DCOP (Desktop COmmunication Protocol),一个端到端的通信协议
  • KIO,一个应用程序 I/O 库
  • KParts,组件对象模型
  • KHTML,一个符合 HTML 4.0 标准的渲染绘制引擎。

26 February 2001

2001年2月26日

K Desktop Environment 2.1 首次发布了媒体播放器 noatun,它使用了模组化、插件设计。为了便利开发者,K Desktop Environment 2.1 打包了 KDevelop。

15 August 2001

2001年8月15日

KDE 2.2版本在 GNU/Linux 上加快了50%的应用启动速度,同时提高了 HTML 渲染、JavaScript 稳定性和性能,同时还增加了一些 KMail 的功能。

KDE 3.0 – 2002年4月3日

K Desktop Environment 3.0 加入了更好的限制使用功能,这个功能在电话亭、网咖,企业公用电脑上被广泛需求,它可以禁止用户完全使用软件的某些能力。

28 January 2003

2003年1月28日

K Desktop Environment 3.1 加入了新的默认窗口(Keramik)和图标样式(Crystal)和其他一些改进。

3 February 2004

2004年2月3日

K Desktop Environment 3.2 加入了诸如在网页表格、书写邮件中拼写检查的新功能;增强了邮件和日历功能。完善了 Konqueror 中的标签机制和对 Microsoft Windows 桌面共享协议(RDP)的支持。

19 August 2004

2004年8月19日

K Desktop Environment 3.3 侧重于组合不同的桌面组件。Kontact 被放进了群件应用 Kolab 并与 Kpilot 结合。Konqueror 的加入让 KDE 有了更好的 IM 交流功能,比如支持发送文件,以及其他 IM 协议(如IRC)的支持。

16 March 2005

2005年3月16日

K Desktop Environment 3.4 侧重于提高易用性。这次更新为 Konqueror、Kate、KPDF 加入了文字-语音转换功能;也在桌面系统中加入了独立的 KSayIt 文字-语音转换软件。

29 November 2005

2005年11月29日

The K Desktop Environment 3.5 发布加入了 SuperKaramba,为桌面环境提供了易于安装的 插件 widgets 机制。 Konqueror 加入了广告屏蔽功能并成为了有史以来第二个通过 Acid2 CSS 测试的浏览器。

KDE SC 4.0 – 2008年1月11日

大部分的开发投身于把最新的技术和开发框架整合进 KDE 4 当中。Plasma 和 Oxygen 是两次最大的用户界面风格变更。同时,Dolphin 替代 Konqueror 成为默认文件管理器,Okular 成为了默认文档浏览器。

29 July 2008

2008年7月29日

KDE 4.1 引入了一个在 PIM 和 Kopete 中共享使用的表情主题系统;引入了可以让用户便利地从互联网上一键下载数据的 DXS。同时引入了 GStreamer、QuickTime 和 DirectShow 9 Phonon 后端。加入了新应用如:

  • Dragon Player
  • Kontact
  • Skanlite — 扫描仪软件
  • Step —— 物理模拟软件
  • 新游戏: Kdiamond、Kollision、KBreakout 和更多......

27 January 2009

2009年1月27日

KDE 4.2 被认为是在已经极佳的 KDE 4.1 基础上的又一次全面超越,同时也成为了大多数用户替换旧 3.5 版本的完美选择。

4 August 2009

2009年8月4日

KDE 4.3 修复了超过10000个 bug,同时加入了让近2000个用户要求的功能。整合一些新的技术例如:PolicyKit、NetworkManage & Geolocation services 等也是这个版本的一大重点。

9 February 2010

2010年2月9日

KDE SC 4.4 基于 Qt 4 toolkit 的 4.6 版本,加入新的应用 KAddressBook。

10 August 2010

2010年8月10日

KDE SC 4.5 增加了一些新特性:整合了开源的浏览器引擎 WebKit 库,其现在也在 Apple Safari 和 Google Chrome 中广泛使用。KPackageKit 替换了 Kpackage。

26 January 2011

2011年1月26日

KDE SC 4.6 加强了 OpenGl 的性能,同时照常更新了无数bug和小改进。

27 July 2011

2011年7月27日

KDE SC 4.7 升级 KWin 以兼容 OpenGL ES 2.0 ,更新了 Qt Quick,Plasma Desktop 带来许多增强和在应用里的大量新特性, 修复了1.2万个 bug。

25 January 2012

2012年1月25日

KDE SC 4.8: 更好的 KWin 性能与 Wayland 支持,更崭新的 Doplhin 的外观设计。

1 August 2012

2012年8月1日

KDE SC 4.9: 向 Dolphin 文件管理器增加了一些更新,比如重新加入了实时文件重命名,鼠标辅助按钮支持,更好的位置面板和更多文件分类管理功能。

6 February 2013

2013年2月6日

KDE SC 4.10: 很多 Plasma 插件使用 QML 重写; Nepomuk、Kontact 和 Okular 得到了很大程度的性能和功能提升。

14 August 2013

2013年8月14日

KDE SC 4.11: Kontact 和 Nepomuk 有了很多优化。 第一代 Plasma Workspaces 进入了单纯维护阶段。

18 December 2013

2013年12月18日

KDE SC 4.12: Kontact 得到了极大的提升,包括许多小的改进。

16 April 2014

2014年4月16日

KDE SC 4.13: Nepomuk 语义搜索功能替代了桌面上的原有的 Baloo 搜索。 KDE SC 4.13 以53个语言版本发布。

20 August 2014

2014年8月20日

KDE SC 4.14: 这个发布版本侧重于稳定性提升:大量的 bug 修复和增加了一些小的功能。这是最后一个 KDE SC 4 发布版本。

KDE Plasma 5.0 – 2014年7月15日

KDE Plasma 5 – 第五代 KDE。大幅改进了设计和系统,新的默认主题 Breeze 完全迁移到了 QML,更好的 OpenGL 性能,更完美的 HiDPI (高分辨率)显示支持。

11 November 2014

2014年11月11日

KDE Plasma 5.1:迁移了从 Plasma 4 里丢失的功能。

27 January 2015

2015年1月27日

KDE Plasma 5.2:新组件:BlueDevil、KSSHAskPass、Muon、SDDM 主题设置、KScreen、GTK+ 样式设置和 KDecoration。

28 April 2015

2015年4月28日

KDE Plasma 5.3:Plasma Media Center 技术预览。新的蓝牙和触摸板小程序;改良了电源管理。

25 August 2015

2015年8月25日

KDE Plasma 5.4:Wayland 登场,新的基于 QML 的音频管理程序,一个全屏的程序启动器替代品。

万分感谢 KDE 开发者及社区,并感谢 Wikipedia 为书写 概述 带来的帮助,同时,感谢所有读者。让我们保持自由精神(be free)并继续支持如同 KDE 一样的开源的自由软件发展。


via: https://tlhp.cf/kde-history/

作者:Pavlo Rudyi 译者:jerryling315 校对:wxy

本文由 LCTT 原创编译,Linux中国 荣誉推出