Module: wine
Branch: master
Commit: 50a047b1bb370bb02ffbbe945454236f24d0ac7c
URL: http://source.winehq.org/git/wine.git/?a=commit;h=50a047b1bb370bb02ffbbe945…
Author: Lauri Kenttä <lauri.kentta(a)gmail.com>
Date: Thu Mar 2 16:44:11 2017 +0200
readme: Update Swedish translation.
The actual updates concern the removal of wineinstall.
Use the opportunity to convert to UTF-8 as well.
Signed-off-by: Lauri Kenttä <lauri.kentta(a)gmail.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
documentation/README.sv | 174 ++++++++++++++++++++++++------------------------
1 file changed, 88 insertions(+), 86 deletions(-)
Diff: http://source.winehq.org/git/wine.git/?a=commitdiff;h=50a047b1bb370bb02ffbb…
Module: wine
Branch: master
Commit: 9333f6e3300bb29a8012815433c0075ab1072bb2
URL: http://source.winehq.org/git/wine.git/?a=commit;h=9333f6e3300bb29a801281543…
Author: Lauri Kenttä <lauri.kentta(a)gmail.com>
Date: Thu Mar 2 16:43:57 2017 +0200
readme: Update Finnish translation.
Signed-off-by: Lauri Kenttä <lauri.kentta(a)gmail.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
documentation/README.fi | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/documentation/README.fi b/documentation/README.fi
index 5e03199..4109090 100644
--- a/documentation/README.fi
+++ b/documentation/README.fi
@@ -12,11 +12,10 @@ lisenssistä on englanniksi tiedostossa LICENSE.
2. PIKAOPAS
-Kun Wine käännetään lähdekoodeistaan, on suositeltavaa käyttää Winen omaa
-asennusohjelmaa, joka ajetaan seuraavalla komennolla Winen lähdekoodin
-juurihakemistosta:
+Aja Winen lähdekoodin juurihakemistossa seuraavat komennot:
-./tools/wineinstall
+./configure
+make
Ohjelmat ajetaan komennolla "wine ohjelma". Lisätietoja sekä apua ongelmien
ratkaisemiseen on jäljempänä tässä tiedostossa, Winen man-sivuilla sekä
@@ -81,8 +80,7 @@ Valinnaisia tukikirjastoja:
4. KÄÄNTÄMINEN
-Aiemmin mainitun wineinstall-skriptin sijaan Winen voi kääntää myös
-seuraavilla komennoilla:
+Winen voi kääntää seuraavilla komennoilla:
./configure
make
@@ -95,6 +93,8 @@ kääntämiseen Unixissa.
Komento './configure --help' näyttää asetuksia ja valintoja, joita
käännösprosessiin voi lisätä.
+Lisätietoja on osoitteessa https://wiki.winehq.org/Building_Wine
+
5. ASENNUS
Kun Wine on käännetty, komento "make install" asentaa Winen sekä sen man-sivut
Module: wine
Branch: master
Commit: 55fa550a02991b94c2981a630746a9fd45f5dc84
URL: http://source.winehq.org/git/wine.git/?a=commit;h=55fa550a02991b94c2981a630…
Author: Louis Lenders <xerox.xerox2000x(a)gmail.com>
Date: Wed Mar 1 19:53:06 2017 +0100
wmvcore: Add version resource.
Signed-off-by: Louis Lenders <xerox.xerox2000x(a)gmail.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
dlls/wmvcore/Makefile.in | 2 ++
dlls/wmvcore/version.rc | 26 ++++++++++++++++++++++++++
2 files changed, 28 insertions(+)
diff --git a/dlls/wmvcore/Makefile.in b/dlls/wmvcore/Makefile.in
index bec1032..ba3539b 100644
--- a/dlls/wmvcore/Makefile.in
+++ b/dlls/wmvcore/Makefile.in
@@ -4,3 +4,5 @@ IMPORTS = kernel32
C_SRCS = \
wmvcore_main.c \
writer.c
+
+RC_SRCS = version.rc
diff --git a/dlls/wmvcore/version.rc b/dlls/wmvcore/version.rc
new file mode 100644
index 0000000..445a399
--- /dev/null
+++ b/dlls/wmvcore/version.rc
@@ -0,0 +1,26 @@
+/*
+ * Copyright 2017 Louis Lenders
+ *
+ * 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
+ */
+
+#define WINE_FILEDESCRIPTION_STR "Wine Media Playback dll"
+#define WINE_FILENAME_STR "wmvcore.dll"
+#define WINE_FILEVERSION 12,0,7601,17514
+#define WINE_FILEVERSION_STR "12.0.7601.17514"
+#define WINE_PRODUCTVERSION 12,0,7601,17514
+#define WINE_PRODUCTVERSION_STR "12.0.7601.17514"
+
+#include "wine/wine_common_ver.rc"