Page 1 of 1
SVN and diffs
Posted: Sun Oct 03, 2010 9:31 am
by bigbro
How to see diffs from files into SVN?? I need that for upgrading my server!
Re: SVN and diffs
Posted: Sun Oct 03, 2010 9:39 am
by Aikimaniac
right click on project and then team/update to head

Re: SVN and diffs
Posted: Sun Oct 03, 2010 10:13 am
by jurchiks
NO, right-click -> compare to ->latest from repository OR team->synchronize with repository
Re: SVN and diffs
Posted: Sun Oct 03, 2010 11:56 am
by bigbro
trunk/L2_GameServer/java/com/l2jserver/gameserver/model/actor/knownlist/AttackableKnownList.java (modified)
(view diffs)
I mean
videw diffs is not working on trac...

Re: SVN and diffs
Posted: Sun Oct 03, 2010 12:12 pm
by jurchiks
that's TRAC and afaik ThePhoenixBird said he'll make an announcement sometime soon about that.
Re: SVN and diffs
Posted: Sun Oct 03, 2010 2:51 pm
by bigbro
ok guys,
do you know what changes are made in
java/com/l2jserver/gameserver/network/serverpackets/ExBasicActionList.java
on adding my patches, I get errors on compile
Code: Select all
cannot find symbol [javac] symbol : constructor ExBasicActionList(com.l2jserver.gameserver.model.actor.instance.L2PcInstance) [javac] location: class com.l2jserver.gameserver.network.serverpackets.ExBasicActionList [javac] final ExBasicActionList actionList = new ExBasicActionList(player);
and second one is maybe becouse of me.. but not sure
Code: Select all
168: incomparable types: boolean and int [javac] if (player.isOnline() == 0 && player._haveFlagCTF)
please help me..., someone
Re: SVN and diffs
Posted: Mon Oct 04, 2010 9:31 am
by jurchiks
player.isOnline() is a boolean itself, you don't need to compare it to zero.