This is the mail archive of the cygwin-apps-cvs mailing list for the cygwin-apps project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[shutdown - Shutdown, reboot, hibernate or suspend the machine] branch master, updated. v2.0.0




https://sourceware.org/git/gitweb.cgi?p=cygwin-apps/shutdown.git;h=316a9db92eadfdb2b245053ce9a437b11dc527e7

commit 316a9db92eadfdb2b245053ce9a437b11dc527e7
Author: Frank Fesevur <ffes@users.sourceforge.net>
Date:   Thu Dec 15 10:55:46 2016 +0100

    Release of v2.0


Diff:
---
 ReadMe.md               |    6 +++---
 extras/shutdown.cygport |    4 ++--
 reboot.8                |    4 ++--
 shutdown.8              |    4 ++--
 shutdown.c              |    6 +++---
 5 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/ReadMe.md b/ReadMe.md
index 446ce12..b183de9 100644
--- a/ReadMe.md
+++ b/ReadMe.md
@@ -14,12 +14,12 @@ The repo can also be found at https://sourceware.org/git/?p=cygwin-apps/shutdown
 Version history
 ---------------
 
-Version 2.0 (Yet To Be Released)
+Version 2.0 (2016-12-15)
 
-* Added `--install` to install Windows Updates during shutdown/reboot. The `InitiateShutdown()` Windows API call is used for this. This function is only available from Windows 6.0 (aka Vista or Server 2008) or higher. To assure backwards compatibility with WinXP and Server 2003, `InitiateShutdown()` is loaded dynamically at runtime.
+* Added `--install` to install Windows Updates during shutdown/reboot. The `InitiateShutdown()` Windows API call is used for this. This function is only available from Windows 6.0 (aka Vista or Server 2008) or higher. To assure backwards compatibility with WinXP and Server 2003, `InitiateShutdown()` is loaded dynamically at runtime. Since Cygwin 2.6 support for WinXP and Server 2003 has been dropped, so this backward compatibility is likely to be removed in a future release.
+* Added `--hybrid` to shutdown in hybrid mode. Hybrid is the default shutdown method with shutting down with the UI of Windows 8.x and higher.
 * Changed the default shutdown messages.
 * User can supply his own shutdown message on the command line.
-* Added `--hybrid` to shutdown in hybrid mode. Hybrid is the default shutdown method with shutting down with the UI of Windows 8.x and higher.
 
 
 Version 1.10 (2013-06-03)
diff --git a/extras/shutdown.cygport b/extras/shutdown.cygport
index be2fb25..a4c8ea0 100644
--- a/extras/shutdown.cygport
+++ b/extras/shutdown.cygport
@@ -1,5 +1,5 @@
 NAME="shutdown"
-VERSION="1.10"
+VERSION="2.0"
 RELEASE=1
 CATEGORY="Admin"
 SUMMARY="Shutdown, reboot, hibernate or suspend the machine"
@@ -7,7 +7,7 @@ DESCRIPTION="Shutdown, reboot, hibernate or suspend the machine"
 HOMEPAGE="http://cygwin.com/";
 
 GIT_URI="https://github.com/cygwin/shutdown";
-GIT_TAG="v1.10.0"
+GIT_TAG="v2.0.0"
 inherit git
 
 src_compile() {
diff --git a/reboot.8 b/reboot.8
index 69c9659..62ab46c 100644
--- a/reboot.8
+++ b/reboot.8
@@ -1,6 +1,6 @@
 .\"             -*-Nroff-*-
 .\"
-.TH REBOOT "8" "June 2013" "" ""
+.TH REBOOT "8" "December 2016" "" ""
 .SH NAME
 reboot, halt, poweroff, hibernate, suspend \- reboot, stop or suspend the system.
 .SH SYNOPSIS
@@ -47,7 +47,7 @@ Display version information and exit.
 .B reboot
 was written by Corinna Vinschen and Frank Fesevur.
 .SH COPYRIGHT
-Copyright 2005-2013 Corinna Vinschen, Frank Fesevur. License GPLv3+: GNU GPL version 3 or later
+Copyright 2005-2016 Corinna Vinschen, Frank Fesevur. License GPLv3+: GNU GPL version 3 or later
 .UR
 <http://gnu.org/licenses/gpl.html>.
 .PP
diff --git a/shutdown.8 b/shutdown.8
index a459191..e1eb0e8 100644
--- a/shutdown.8
+++ b/shutdown.8
@@ -1,6 +1,6 @@
 .\"             -*-Nroff-*-
 .\"
-.TH SHUTDOWN "8" "June 2013" "" ""
+.TH SHUTDOWN "8" "December 2016" "" ""
 .SH NAME
 shutdown \- bring the system down.
 .SH SYNOPSIS
@@ -68,7 +68,7 @@ Display version information and exit.
 .B shutdown
 was written by Corinna Vinschen and Frank Fesevur.
 .SH COPYRIGHT
-Copyright 2005-2013 Corinna Vinschen, Frank Fesevur. License GPLv3+: GNU GPL version 3 or later
+Copyright 2005-2016 Corinna Vinschen, Frank Fesevur. License GPLv3+: GNU GPL version 3 or later
 .UR
 <http://gnu.org/licenses/gpl.html>.
 .PP
diff --git a/shutdown.c b/shutdown.c
index c189a64..bec1f1c 100644
--- a/shutdown.c
+++ b/shutdown.c
@@ -2,7 +2,7 @@
  * shutdown.c: implementation of shutdown(1) as part of a Cygwin environment
  *
  * Copyright 1998, 2001, 2003, 2005, 2012, 2013  Corinna Vinschen,
- *           2013 Frank Fesevur
+ *           2013, 2016  Frank Fesevur
  * Bug reports to  cygwin@cygwin.com
  *
  * This program is free software; you can redistribute it and/or modify
@@ -38,7 +38,7 @@
 #define SUSPEND		 64
 #define ABORT		128
 
-static char *SCCSid = "@(#)shutdown V1.10, Corinna Vinschen, " __DATE__ "\n";
+static char *SCCSid = "@(#)shutdown V2.0, Corinna Vinschen, Frank Fesevur, " __DATE__ "\n";
 
 #define MAXBUF 4096
 
@@ -125,7 +125,7 @@ int usage_reboot(void)
 int version(void)
 {
 	printf ("%s\n", SCCSid + 4);
-	printf ("Copyright (C) 2005-2013 Corinna Vinschen, Frank Fesevur\n");
+	printf ("Copyright (C) 2005-2016 Corinna Vinschen, Frank Fesevur\n");
 	printf ("This is free software; see the source for copying conditions.\n");
 	printf ("There is NO warranty; not even for MERCHANTABILITY or FITNESS\n");
 	printf ("FOR A PARTICULAR PURPOSE.\n");


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]