public inbox for cygwin-apps-cvs@sourceware.org
help / color / mirror / Atom feed
From: ffes@sourceware.org
To: cygwin-apps-cvs@sourceware.org
Subject: [shutdown - Shutdown, reboot, hibernate or suspend the machine] branch master, updated. v2.0.0
Date: Tue, 20 Dec 2016 10:28:00 -0000	[thread overview]
Message-ID: <20161220102805.79020.qmail@sourceware.org> (raw)




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");


                 reply	other threads:[~2016-12-20 10:28 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20161220102805.79020.qmail@sourceware.org \
    --to=ffes@sourceware.org \
    --cc=cygwin-apps-cvs@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).