Module: wine
Branch: refs/heads/master
Commit: e5def1c39273afb4a8251c88e6e2c22f1449fca9
URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=e5def1c39273afb4a8251c8…
Author: Antonio Codazzi <f_sophia(a)libero.it>
Date: Sat Apr 1 17:46:33 2006 +0200
clock: Esperanto language support.
---
programs/clock/Eo.rc | 48 ++++++++++++++++++++++++++++++++++++++++++++++++
programs/clock/rsrc.rc | 1 +
2 files changed, 49 insertions(+), 0 deletions(-)
create mode 100644 programs/clock/Eo.rc
diff --git a/programs/clock/Eo.rc b/programs/clock/Eo.rc
new file mode 100644
index 0000000..d9b159f
--- /dev/null
+++ b/programs/clock/Eo.rc
@@ -0,0 +1,48 @@
+/*
+ * Clock (Esperanto resources)
+ *
+ * Copyright 2006 Antonio Codazzi
+ *
+ * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+
+LANGUAGE LANG_ESPERANTO, SUBLANG_DEFAULT
+
+MAIN_MENU MENU
+{
+ POPUP "&Ecoj" {
+ MENUITEM "Ana&loga", IDM_ANALOG
+ MENUITEM "Di�i&ta", IDM_DIGITAL
+ MENUITEM SEPARATOR
+ MENUITEM "Ti&paro", IDM_FONT
+ MENUITEM SEPARATOR
+ MENUITEM "Se&n titolstango", IDM_NOTITLE
+ MENUITEM SEPARATOR
+ MENUITEM "&Sekundoj", IDM_SECONDS
+ MENUITEM "&Dato", IDM_DATE
+ MENUITEM SEPARATOR
+ MENUITEM "&�iam supre", IDM_ONTOP
+ }
+ POPUP "Inf&o" {
+ MENUITEM "&Licenco", IDM_LICENSE
+ MENUITEM "&SEN GARANTIO...", IDM_NOWARRANTY
+ MENUITEM "&Pri Horlo�o", IDM_ABOUT
+ }
+}
+
+STRINGTABLE DISCARDABLE
+{
+IDS_CLOCK, "Horlo�o"
+}
diff --git a/programs/clock/rsrc.rc b/programs/clock/rsrc.rc
index 61d07fe..a08d702 100644
--- a/programs/clock/rsrc.rc
+++ b/programs/clock/rsrc.rc
@@ -26,6 +26,7 @@
#include "Da.rc"
#include "De.rc"
#include "En.rc"
+#include "Eo.rc"
#include "Es.rc"
#include "Fi.rc"
#include "Fr.rc"
Module: wine
Branch: refs/heads/master
Commit: a7063774b91116e80a28d5ce09d06b0118280fe4
URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=a7063774b91116e80a28d5c…
Author: Stefan Dösinger <stefandoesinger(a)gmx.at>
Date: Sat Apr 1 19:34:20 2006 +0200
wined3d: Do not set the mipmap level count every time a texture is used.
---
dlls/wined3d/basetexture.c | 10 ----------
1 files changed, 0 insertions(+), 10 deletions(-)
diff --git a/dlls/wined3d/basetexture.c b/dlls/wined3d/basetexture.c
index 8d420cf..9938abd 100644
--- a/dlls/wined3d/basetexture.c
+++ b/dlls/wined3d/basetexture.c
@@ -275,16 +275,6 @@ HRESULT WINAPI IWineD3DBaseTextureImpl_B
/* Bind the texture */
if (This->baseTexture.textureName != 0) {
- /* Always need to reset the number of mipmap levels when rebinding as it is
- a property of the active texture unit, and another texture may have set it
- to a different value */
- if (This->baseTexture.levels > 1) {
- TRACE("Setting GL_TEXTURE_MAX_LEVEL to %d\n", This->baseTexture.levels - 1);
- glTexParameteri(textureDimensions, GL_TEXTURE_MAX_LEVEL, This->baseTexture.levels - 1);
- checkGLcall("glTexParameteri(textureDimensions, GL_TEXTURE_MAX_LEVEL, This->baseTexture.levels)");
- } else {
- glTexParameteri(textureDimensions, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
- }
glBindTexture(textureDimensions, This->baseTexture.textureName);
checkGLcall("glBindTexture");
if (isNewTexture) {
Module: wine
Branch: refs/heads/master
Commit: 5656fa8f0079a620d8a8beb238f2dc7f85c7d260
URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=5656fa8f0079a620d8a8beb…
Author: Alexander N. Sørnes <alex(a)thehandofagony.com>
Date: Sat Apr 1 20:45:31 2006 +0200
regedit: Fix typo in Norwegian resources.
---
programs/regedit/No.rc | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/programs/regedit/No.rc b/programs/regedit/No.rc
index 439c530..7212321 100644
--- a/programs/regedit/No.rc
+++ b/programs/regedit/No.rc
@@ -1,7 +1,7 @@
/*
* Regedit Norwegian Bokm�l resources
*
- * Copyright 2005 Alexander N. S�rnes <alex(a)thehandofagony.com>
+ * Copyright 2005-2006 Alexander N. S�rnes <alex(a)thehandofagony.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
@@ -79,7 +79,7 @@ BEGIN
MENUITEM SEPARATOR
MENUITEM "Oppdate&r\tF5", ID_VIEW_REFRESH
END
- POPUP "&Favoritters"
+ POPUP "&Favoritter"
BEGIN
MENUITEM "Legg til i f&avoritter", ID_FAVORITES_ADDTOFAVORITES
MENUITEM "Fje&rn favoritt", ID_FAVORITES_REMOVEFAVORITE
ChangeSet ID: 23914
CVSROOT: /opt/cvs-commit
Module name: lostwages
Changes by: wineowner(a)winehq.org 2006/04/03 00:16:19
Modified files:
wwn : wn20060402_310.xml
Log message:
Correctly attribute some quotes in WWN #310
Patch: http://cvs.winehq.org/patch.py?id=23914
Old revision New revision Changes Path
1.1 1.2 +3 -2 lostwages/wwn/wn20060402_310.xml
Index: lostwages/wwn/wn20060402_310.xml
diff -u -p lostwages/wwn/wn20060402_310.xml:1.1 lostwages/wwn/wn20060402_310.xml:1.2
--- lostwages/wwn/wn20060402_310.xml:1.1 3 Apr 2006 5:16:19 -0000
+++ lostwages/wwn/wn20060402_310.xml 3 Apr 2006 5:16:19 -0000
@@ -194,7 +194,8 @@ interested to hear your feedback on this
that bit in next thread. The other issue that provoked discussion concerned
copyrights. Here's my theory: there's no better way to get a bunch of
software developers to care about law than to mention licenses or copyrights.
-Two comments stand out (keeping in mind IANAL nor do I play one on TV):
+Two comments stand out (keeping in mind IANAL nor do I play one on TV), the
+first from Scott Ritchie:
</p><quote who="Scott Ritchie"><p>
Fortunately, in order to enforce the license they don't really need
@@ -203,7 +204,7 @@ portions of the useful stuff. Heck, Ale
could probably be enough code to cover virtually the entire project.
</p></quote>
-<p>And:</p>
+<p>And the second from Kai Blin:</p>
<quote who="Kai Blin"><p>
I'm still unsure about this "assigning the copyright to someone else"
thing. I'm living in the EU, where the copyright is split into "usage