mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-05 21:07:52 +00:00
add license info to timed thread modules; update NEWS
git-svn-id: https://conky.svn.sourceforge.net/svnroot/conky/trunk/conky1@817 7f574dfc-610e-0410-a909-a81674777703
This commit is contained in:
parent
9405f780d6
commit
c42fe7b6ab
@ -1,5 +1,9 @@
|
||||
# $Id$
|
||||
|
||||
2006-12-13
|
||||
* Clarify LGPL license on timed_thread modules.
|
||||
* Update NEWS files.
|
||||
|
||||
2006-12-12
|
||||
* Split battery variable into two:
|
||||
battery, e.g. "charging 75%" and
|
||||
|
31
NEWS
31
NEWS
@ -1,3 +1,34 @@
|
||||
Summary of changes for Conky release 1.4.5:
|
||||
-------------------------------------------
|
||||
Added config items:
|
||||
- max_specials
|
||||
- max_port_monitor_connections
|
||||
|
||||
Removed config items:
|
||||
- min_port_monitors
|
||||
- min_port_monitor_connections
|
||||
|
||||
Added variables:
|
||||
- entropy_avail
|
||||
- entropy_poolsize
|
||||
- entropy_bar
|
||||
|
||||
Added length specifier to audacious_title.
|
||||
|
||||
Split battery var into:
|
||||
- battery and battery_time
|
||||
|
||||
Fixed broken texeci variable.
|
||||
Fixed build error with --disable-x11.
|
||||
Fixed build error with --disable-xdamage.
|
||||
Fixed acpi battery issues.
|
||||
Fixed mem var overflows when >= 4GB.
|
||||
Close pop3/imap sockets properly.
|
||||
Improved internal thread handling.
|
||||
Converted tcp_portmon internal hash to GLib
|
||||
for GPL compatibility.
|
||||
|
||||
|
||||
Summary of changes for Conky release 1.4.4:
|
||||
-------------------------------------------
|
||||
* fix build error for freebsd.
|
||||
|
@ -3,8 +3,8 @@ dnl $Id$
|
||||
dnl major, minor and micro version macros.
|
||||
m4_define([conky_version_major], [1])
|
||||
m4_define([conky_version_minor], [4])
|
||||
m4_define([conky_version_micro], [5])
|
||||
m4_define([conky_version_tag], []) dnl [] for releases
|
||||
m4_define([conky_version_micro], [6])
|
||||
m4_define([conky_version_tag], [svn]) dnl [] for releases
|
||||
m4_define([conky_version_revision],[r@REVISION@])
|
||||
m4_define([conky_version],
|
||||
[conky_version_major().conky_version_minor().conky_version_micro()ifelse(
|
||||
|
@ -1,10 +1,10 @@
|
||||
/* -------------------------------------------------------------------------
|
||||
/* $Id$ */
|
||||
|
||||
/*
|
||||
* audacious.c: conky support for audacious music player
|
||||
*
|
||||
* Copyright (C) 2005 Philip Kovacs kovacsp3@comcast.net
|
||||
* Copyright (C) 2005 Philip Kovacs pkovacs@users.sourceforge.net
|
||||
*
|
||||
* $Id$
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
@ -17,8 +17,10 @@
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
* --------------------------------------------------------------------------- */
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
|
||||
* USA.
|
||||
*
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
@ -1,9 +1,9 @@
|
||||
/* -------------------------------------------------------------------------
|
||||
/* $Id$ */
|
||||
|
||||
/*
|
||||
* audacious.h: conky support for audacious music player
|
||||
*
|
||||
* Copyright (C) 2005 Philip Kovacs kovacsp3@comcast.net
|
||||
*
|
||||
* $Id$
|
||||
* Copyright (C) 2005 Philip Kovacs pkovacs@users.sourceforge.net
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
@ -17,8 +17,10 @@
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
* --------------------------------------------------------------------------- */
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
|
||||
* USA.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef AUDACIOUS_H
|
||||
#define AUDACIOUS_H
|
||||
|
@ -1,10 +1,10 @@
|
||||
/* -------------------------------------------------------------------------
|
||||
/* $Id$ */
|
||||
|
||||
/*
|
||||
* libtcp-portmon.c: tcp port monitoring library.
|
||||
*
|
||||
* Copyright (C) 2005 Philip Kovacs kovacsp3@comcast.net
|
||||
* Copyright (C) 2005 Philip Kovacs pkovacs@users.sourceforge.net
|
||||
*
|
||||
* $Id$
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
@ -17,8 +17,10 @@
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
* --------------------------------------------------------------------------- */
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
|
||||
* USA.
|
||||
*
|
||||
*/
|
||||
|
||||
#include <glib/gprintf.h>
|
||||
#include "libtcp-portmon.h"
|
||||
|
@ -1,10 +1,10 @@
|
||||
/* -------------------------------------------------------------------------
|
||||
/* $Id$ */
|
||||
|
||||
/*
|
||||
* libtcp-portmon.h: tcp port monitoring library.
|
||||
*
|
||||
* Copyright (C) 2005 Philip Kovacs kovacsp3@comcast.net
|
||||
* Copyright (C) 2005 Philip Kovacs pkovacs@users.sourceforge.net
|
||||
*
|
||||
* $Id$
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
@ -17,8 +17,10 @@
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
* --------------------------------------------------------------------------- */
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
|
||||
* USA.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef LIBTCP_PORTMON_H
|
||||
#define LIBTCP_PORTMON_H
|
||||
|
@ -1,10 +1,26 @@
|
||||
/* $Id$ */
|
||||
|
||||
/* timed_thread.c
|
||||
* Author: Philip Kovacs
|
||||
/*
|
||||
* timed_thread.c: Abstraction layer for timed threads
|
||||
*
|
||||
* Abstraction layer for timed threads
|
||||
* */
|
||||
* Copyright (C) 2006 Philip Kovacs pkovacs@users.sourceforge.net
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library 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
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
|
||||
* USA.
|
||||
*
|
||||
*/
|
||||
|
||||
#include <pthread.h>
|
||||
#include <assert.h>
|
||||
|
@ -1,10 +1,26 @@
|
||||
/* $Id$ */
|
||||
|
||||
/* timed_thread.h
|
||||
* Author: Philip Kovacs
|
||||
/*
|
||||
* timed_thread.h: Abstraction layer for timed threads
|
||||
*
|
||||
* Abstraction layer for timed threads
|
||||
* */
|
||||
* Copyright (C) 2006 Philip Kovacs pkovacs@users.sourceforge.net
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library 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
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
|
||||
* USA.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _TIMED_THREAD_H_
|
||||
#define _TIMED_THREAD_H_
|
||||
|
Loading…
Reference in New Issue
Block a user