aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2014-11-19 09:52:05 -0500
committerKen Moore <ken@pcbsd.org>2014-11-19 09:52:05 -0500
commit78e1fa6acde232ddd12e9bf0e733cf7a70d1492a (patch)
treeff0f11e87cb3d2aba88889a0c9e6a936237f3f49
parentClean up the lumina-desktop usage of the new way defaults are registered (for... (diff)
downloadlumina-78e1fa6acde232ddd12e9bf0e733cf7a70d1492a.tar.gz
lumina-78e1fa6acde232ddd12e9bf0e733cf7a70d1492a.tar.bz2
lumina-78e1fa6acde232ddd12e9bf0e733cf7a70d1492a.zip
Tag Lumina version 0.7.2:
Changes: Streamlined startup process and utilities Enable login/logout chimes New Desktop Plugins: - Note Pad: Take text notes on your desktop - Desktop View: Auto-generate icons for everything in the ~/Desktop folder New Utility: - lumina-search: Quickly search for applications/files/directories New Color Schemes: - Lumina-[Green, Gold, Purple, Red, Glass] now available out of box (default: Glass) New Backend system for registering default applications: - Uses mime-types instead of extensions now - All lumina utilities have been updated to work with the new system - WARNING: Previously registered defaults might not be transfered to the new system, so you may need to reset your default web browser/email client through lumina-config.
-rw-r--r--lumina-desktop/LSession.cpp2
-rw-r--r--port-files/Makefile2
2 files changed, 2 insertions, 2 deletions
diff --git a/lumina-desktop/LSession.cpp b/lumina-desktop/LSession.cpp
index d1bd77c0..de3d9307 100644
--- a/lumina-desktop/LSession.cpp
+++ b/lumina-desktop/LSession.cpp
@@ -22,7 +22,7 @@
LSession::LSession(int &argc, char ** argv) : QApplication(argc, argv){
this->setApplicationName("Lumina Desktop Environment");
- this->setApplicationVersion("0.7.1");
+ this->setApplicationVersion("0.7.2");
this->setOrganizationName("LuminaDesktopEnvironment");
this->setQuitOnLastWindowClosed(false); //since the LDesktop's are not necessarily "window"s
//Enabled a few of the simple effects by default
diff --git a/port-files/Makefile b/port-files/Makefile
index d448bd3e..e625c4b4 100644
--- a/port-files/Makefile
+++ b/port-files/Makefile
@@ -3,7 +3,7 @@
PORTNAME= lumina
GITVERSION= CHGVERSION
-PORTVERSION= 0.7.1.${GITVERSION}
+PORTVERSION= 0.7.2.${GITVERSION}
PORTEPOCH= 1
CATEGORIES= x11
DISTNAME= ${PORTNAME}-${GITVERSION}
bgstack15