diff --git a/ChangeLog b/ChangeLog index 02450c29..a514752f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,33 +1,41 @@ +2013 -08-10 Akshay Ratan - v1.0.95-rc + * Show list of all music as default in All Music mode + * GridView scroll using mouse wheel + * Center Play All button + + * Bug fixes + 323254: Keeping single license within a file i.e LGPL + 2013 -07-31 Sinny Kumari - v1.1.0-beta * better keyboard navigation * Detailed information of playlist item like artist name, song duration * Places now integrated into browsing flow 2013 -06-16 Sinny Kumari - v1.1.0-alpha * Youtube backend for watching online videos * Option to go back to currently playing media on clicking empty area in home-screen * Bug fixes 313097: Clearing Playlist search breaks current media highlight in Playlist 317451: A way to return to media from main screen 318870: Space pauses media when typing into playlist filter 319626: Can't remove an another song from playlist without stopping the current media 312102: Play All doesn't really play them 320239: When starting PMC directly with a file, the Welcome screen is shown instead of the correct view 318816: Audio and video files cannot be opened from Files with Plasma Media Center 319621: Can't reorder the songs from playlist 317810: plasma-mediacenter --version" gives 0.1, while the public known version is 1.0.0 317084: Plasma media center crash on startup 2013 -03-15 Sinny Kumari - 1.0.0 * First stable release 2012 -10-02 Lamarque V. Souza - 0.8.90 * Beta release 2012 -04-18 Lamarque V. Souza - 0.8.80 * Initial tag of Plasma Media Center diff --git a/shells/newshell/main.cpp b/shells/newshell/main.cpp index 361ed194..3ed63cc8 100644 --- a/shells/newshell/main.cpp +++ b/shells/newshell/main.cpp @@ -1,66 +1,66 @@ /*************************************************************************** * Copyright 2009 by Alessandro Diaferia * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA . * ***************************************************************************/ #include #include #include #include #include "mainwindow.h" int main(int argc, char *argv[]) { Q_UNUSED(argc); Q_UNUSED(argv); KAboutData aboutData("plasma-mediacenter", 0, ki18n("Plasma Mediacenter Shell"), - "1.0.90", + "1.0.95", ki18n("A convenient shell for the Plasma Media Center Components"), KAboutData::License_GPL_V2, ki18n("Copyright (c) 2009-2013")); aboutData.addAuthor(ki18n("Alessandro Diaferia"), ki18n("developer"), "alediaferia@gmail.com", "http://alediaferia.wordpress.com"); aboutData.addAuthor(ki18n("Sinny Kumari"), ki18n("Maintainer and main developer"), "ksinny@gmail.com", "http://www.sinny.in"), aboutData.addAuthor(ki18n("Shantanu Tushar"), ki18n("developer"), "shantanu@kde.org", "http://www.shantanutushar.com"); aboutData.addCredit(ki18n("Marco Martin"), ki18n("GSoC project mentor"), "notmart@gmail.com", ""); KCmdLineArgs::init(argc, argv, &aboutData); KCmdLineOptions options; options.add("fullscreen", ki18n("Starts Plasma Media Center in fullscreen mode")); options.add("disable-opengl", ki18n("Starts Plasma Media Center without OpenGL support")); options.add("+[Url]", ki18nc("@info:shell", "Document to open")); KCmdLineArgs::addCmdLineOptions(options); KApplication app; MainWindow *mw = new MainWindow; mw->show(); return app.exec(); }