Skip to content
This repository was archived by the owner on Jan 14, 2021. It is now read-only.

Commit 7cdd0ea

Browse files
committed
2008-01-23 Aaron Bockover <[email protected]>
0.7.4 Released * NEWS: Updated with 0.7.4 release notes * configure.ac: Output a zip file during dist for our Windows friends * Makefile.am: Rename the zip file containing the binaries for Windows so it doesn't conflict with the source zip file * COPYING: Updated copyright svn path=/trunk/Mono.Zeroconf/; revision=93620
1 parent 3d9e105 commit 7cdd0ea

File tree

6 files changed

+42
-12
lines changed

6 files changed

+42
-12
lines changed

COPYING

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2007 Novell, Inc.
1+
Copyright (c) 2005-2008 Novell, Inc.
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
44

ChangeLog

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
2008-01-23 Aaron Bockover <[email protected]>
2+
3+
0.7.4 Released
4+
5+
* NEWS: Updated with 0.7.4 release notes
6+
7+
* configure.ac: Output a zip file during dist for our Windows friends
8+
9+
* Makefile.am: Rename the zip file containing the binaries for Windows
10+
so it doesn't conflict with the source zip file
11+
12+
* COPYING: Updated copyright
13+
114
2008-01-23 Aaron Bockover <[email protected]>
215

316
* Mono.Zeroconf.sln:

Makefile.am

+10-8
Original file line numberDiff line numberDiff line change
@@ -12,23 +12,25 @@ MAINTAINERCLEANFILES = \
1212
missing
1313

1414
EXTRA_DIST = \
15-
Mono.Zeroconf.sln
15+
Mono.Zeroconf.sln \
16+
README.Windows
1617

1718
collect:
1819
rm -rf bin; \
1920
mkdir bin; \
2021
find src \( -iname *.exe -o -iname *.dll \) -exec cp {} bin \;
2122

2223
PKV=$(PACKAGE)-$(VERSION)
24+
PKB=$(PKV)-binary
2325

2426
dist-windows: all
25-
@rm -rf $(PKV) && \
26-
mkdir -p $(PKV)/bin && \
27-
cp src/MZClient/MZClient.exe src/Mono.Zeroconf/Mono.Zeroconf.dll src/Mono.Zeroconf.Providers.Bonjour/Mono.Zeroconf.Providers.Bonjour.dll $(PKV)/bin && \
28-
cp AUTHORS NEWS README README.Windows $(PKV) && \
29-
cp COPYING $(PKV)/LICENSE && \
30-
zip -r9 $(PKV).zip $(PKV) && \
31-
rm -rf $(PKV)
27+
@rm -rf $(PKB) && \
28+
mkdir -p $(PKB)/bin && \
29+
cp src/MZClient/MZClient.exe src/Mono.Zeroconf/Mono.Zeroconf.dll src/Mono.Zeroconf.Providers.Bonjour/Mono.Zeroconf.Providers.Bonjour.dll $(PKB)/bin && \
30+
cp AUTHORS NEWS README README.Windows $(PKB) && \
31+
cp COPYING $(PKB)/LICENSE && \
32+
zip -r9 $(PKB).zip $(PKB) && \
33+
rm -rf $(PKB)
3234

3335
release:
3436
@test -z $$MONO_USER && { echo "Please set MONO_USER for the commit"; exit 1; }; \

NEWS

+16-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,16 @@
1-
2007-12-19: Released 0.7.3, works on Linux, Mac, and Windows
1+
2008-01-23: 0.7.4 Release
2+
3+
* Fixed a big IP address resolution bug in the Bonjour provider
4+
that manifested only under .NET on Windows XP SP2
5+
6+
* Minor bug fix in MZClient
7+
8+
* Make it easy to build and use on Windows
9+
- Added Visual Studio 2008 solution
10+
- Publish the source code as a Zip archive (along with tar gz and bzip2)
11+
- Publish a -binary.zip file for Windows containing pre-built assemblies
12+
13+
2007-12-19: 0.7.3 Release
14+
15+
* First release that works on Linux, Mac, and Windows
16+

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
AC_INIT([Mono.Zeroconf], [0.7.4])
22
AC_CANONICAL_SYSTEM
33
AC_PREREQ(2.13)
4-
AM_INIT_AUTOMAKE([1.9 dist-bzip2 tar-ustar])
4+
AM_INIT_AUTOMAKE([1.9 dist-bzip2 tar-ustar dist-zip])
55
AM_MAINTAINER_MODE
66

77
DISTCHECK_CONFIGURE_FLAGS="--disable-docs"

src/Mono.Zeroconf.Providers.Bonjour/Mono.Zeroconf.Providers.Bonjour/BrowseService.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// Authors:
55
// Aaron Bockover <[email protected]>
66
//
7-
// Copyright (C) 2006-2007 Novell, Inc (http://www.novell.com)
7+
// Copyright (C) 2006-2008 Novell, Inc (http://www.novell.com)
88
//
99
// Permission is hereby granted, free of charge, to any person obtaining
1010
// a copy of this software and associated documentation files (the

0 commit comments

Comments
 (0)