Are you planning on resurrecting this branch Thomas?
On 23/12/2012 10:25, "tfaber(a)svn.reactos.org" <tfaber(a)svn.reactos.org>
wrote:
>Author: tfaber
>Date: Sun Dec 23 10:25:19 2012
>New Revision: 57976
>
>URL: http://svn.reactos.org/svn/reactos?rev=57976&view=rev
>Log:
>[EXPLORER_NEW]
>- Add a manifest file to support theming
>- Formatting fixes
>- Based on Andrew Green's GSoC branch
>
>Added:
> trunk/reactos/base/shell/explorer-new/explorer.exe.manifest (with
>props)
>Modified:
> trunk/reactos/base/shell/explorer-new/explorer.rc
> trunk/reactos/base/shell/explorer-new/taskswnd.c
> trunk/reactos/base/shell/explorer-new/trayntfy.c
Fixed as well.
Forgot that one, sorry.
Le samedi 15 décembre 2012 à 12:48 +0000, buildbot(a)reactos.org a écrit :
> The Buildbot has detected a failed build on builder Trunk_x86_GCCLin Release while building ReactOS.
> Full details are available at:
> http://build.reactos.org/builders/Trunk_x86_GCCLin%20Release/builds/289
>
> Buildbot URL: http://build.reactos.org/
>
> Buildslave for this Build: Linux_AMD64_1B
>
> Build Reason: The Periodic scheduler named 'release' triggered this build
> Build Source Stamp: HEAD
> Blamelist:
>
> BUILD FAILED: failed compile_1
>
> sincerely,
> -The Buildbot
>
>
--
Pierre Schweitzer <pierre(a)reactos.org>
Systems Administrator
ReactOS Foundation
Fixed.
The needed env variable is now exported.
Le vendredi 14 décembre 2012 à 21:56 +0000, buildbot(a)reactos.org a
écrit :
> The Buildbot has detected a failed build on builder Trunk_x86_GCCLin Debug while building ReactOS.
> Full details are available at:
> http://build.reactos.org/builders/Trunk_x86_GCCLin%20Debug/builds/2066
>
> Buildbot URL: http://build.reactos.org/
>
> Buildslave for this Build: Linux_AMD64_1
>
> Build Reason: scheduler
> Build Source Stamp: 57913
> Blamelist: akhaldi
>
> BUILD FAILED: failed compile_1
>
> sincerely,
> -The Buildbot
>
>
--
Pierre Schweitzer <pierre(a)reactos.org>
Systems Administrator
ReactOS Foundation
YAY!
Finally this is fixed!
Am 07.12.2012 19:00, schrieb tfaber(a)svn.reactos.org:
> Author: tfaber
> Date: Fri Dec 7 18:00:30 2012
> New Revision: 57815
>
> URL: http://svn.reactos.org/svn/reactos?rev=57815&view=rev
> Log:
> [SPIDER]
> - Only dissolve a stack of cards if they're of the same color
> - Allow easier recognition of suit in concealed cards
> - Patch by Marcel Leyendeckers, m dot leyendeckers at gmx dot de
> CORE-6808 #resolve #comment Committed. Thanks!
>
> Modified:
> trunk/reactos/base/applications/games/spider/spigame.cpp
>
> Modified: trunk/reactos/base/applications/games/spider/spigame.cpp
> URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/applications/games/sp…
> ==============================================================================
> --- trunk/reactos/base/applications/games/spider/spigame.cpp [iso-8859-1] (original)
> +++ trunk/reactos/base/applications/games/spider/spigame.cpp [iso-8859-1] Fri Dec 7 18:00:30 2012
> @@ -249,7 +249,8 @@
> int i, max = NUM_ONECOLOR_CARDS - dragcards.NumCards() - 1;
>
> /* Dragged cards have been checked to be in order, check stack cards */
> - if (stackLookingGood(mystack, max))
> + if (mystack[0].Suit() == dragcard.Suit() &&
> + stackLookingGood(mystack, max))
> {
> CardStack s = stackobj.GetCardStack();
> CardStack f;
> @@ -279,8 +280,8 @@
> {
> int i, pos;
>
> - /* Compute the value for yRowStackCardOffset based on the height of the card, so the card number isn't hidden on larger cards */
> - yRowStackCardOffset = (int)(__cardheight / 6.7);
> + /* Compute the value for yRowStackCardOffset based on the height of the card, so the card number and suite isn't hidden on larger cards except Ace */
> + yRowStackCardOffset = (int)(__cardheight / 6.4);
>
> pDeck = SpiderWnd.CreateRegion(0, true, 0, 0, -15, 0);
> pDeck->SetFaceDirection(CS_FACE_DOWN, 0);
>
>
>
On 04.12.2012 2:15, pschweitzer(a)svn.reactos.org wrote:
> - ExFreePool(SharedRange);
> + ExFreePoolWithTag(SharedRange, 'FSRA');
> /* We need to rebuild the list of shared ranges. */
> DPRINT("Removing the lock entry %wZ (%08x%08x:%08x%08x)\n",
> &FileObject->FileName,
> @@ -1287,7 +1287,7 @@
> SharedRange = CONTAINING_RECORD(SharedEntry, LOCK_SHARED_RANGE, Entry);
> SharedEntry = SharedEntry->Flink;
> RemoveEntryList(SharedEntry);
> - ExFreePool(SharedRange);
> + ExFreePoolWithTag(SharedRange, 'FSRA');
> }
> while ((Entry = RtlGetElementGenericTable(&InternalInfo->RangeTable, 0)) != NULL)
> {
>
>
It would be a good idea to add this to TAG_ list of defines.
Hello,
Let me invite you to the monthly status meeting taking place last
Thursday of this month, 29th of November, 19:00 UTC.
The meeting will be at irc://dev.reactos.org (Port 6667, no SSL) in the
channel #meeting, or as Pierre/Colin say. Note that the IRC service will
only be started shortly before the meeting. Your participation passwords
will be emailed to you shortly before the meeting starts, and they are
going to be different once again as they are not stored in any database.
Hopefully it's not much of inconvenience.
If someone still is not getting passwords sent before a meeting - please
email Colin or Pierre before the meeting started to get one.
The agenda will be posted shortly before the meeting, suggestions are
welcome (send them to my email as usual). Hot topics would include
progress made during this month, contracts updates, release plans (if
any), web site progress (if any).
With the best regards,
Aleksey Bragin