-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
18 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
Xsensors was written by: | ||
|
||
Kris Kersey <[email protected]> (Original core author) | ||
Kris Kersey <[email protected]> (Original core author) | ||
Jean Delvare <[email protected]> (lib3 support) | ||
Joaquim Fellmann <[email protected]> (Initial autoconf and automake) | ||
Joaquim Fellmann <[email protected]> (Initial autoconf and automake) | ||
Nanley Chery (patches for cairo, various) | ||
Jeremy Newton <mystro256> (GTK3/UI improvements, preferences, fixes) | ||
|
||
Please send bug fixes to: [email protected] | ||
Please send bug fixes to: https://github.com/Mystro256/xsensors/issues |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Please files bugs here: | ||
https://github.com/Mystro256/xsensors/issues |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
chips.c - Part of xsensors | ||
Copyright (c) 2002-2007 Kris Kersey <[email protected]> | ||
2012-2016 Jeremy Newton (mystro256) | ||
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
chips.h - Part of xsensors | ||
Copyright (c) 2002-2007 Kris Kersey <[email protected]> | ||
2012-2016 Jeremy Newton (mystro256) | ||
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
gui.c - Part of xsensors | ||
Copyright (c) 2002-2007 Kris Kersey <[email protected]> | ||
2012-2016 Jeremy Newton (mystro256) | ||
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 | ||
|
@@ -38,9 +39,12 @@ gint destroy_gui( GtkWidget *widget, gpointer data ) | |
/* About Dialog */ | ||
gboolean about_callback( GtkWidget *widget, GdkEvent *event ) | ||
{ | ||
char* authors [4] = {"Kris Kersey", | ||
char* authors [6] = {"Kris Kersey", | ||
"Jean Delvare", | ||
"Joaquim Fellmann", | ||
"Jeremy Newton (mystro256)", | ||
"with patches from Nanley Chery",NULL}; | ||
"with patches from Nanley Chery", | ||
NULL}; | ||
|
||
gtk_show_about_dialog( GTK_WINDOW (mainwindow), | ||
"version", VERSION, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
gui.h - Part of xsensors | ||
Copyright (c) 2002-2007 Kris Kersey <[email protected]> | ||
2012-2016 Jeremy Newton (mystro256) | ||
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
main.c - Part of xsensors | ||
Copyright (c) 2002-2007 Kris Kersey <[email protected]> | ||
2012-2016 Jeremy Newton (mystro256) | ||
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
main.h - Part of xsensors | ||
Copyright (c) 2002-2007 Kris Kersey <[email protected]> | ||
2012-2016 Jeremy Newton (mystro256) | ||
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 | ||
|