Author Topic: Win32 CBTortoiseSVN plugin under subversion control  (Read 38954 times)

Offline dmoore

  • Developer
  • Lives here!
  • *****
  • Posts: 1576
Re: Win32 CBTortoiseSVN plugin under subversion control
« Reply #15 on: September 21, 2007, 01:27:11 pm »
It would be cool if this files could be deleted before check in to save resources.

files are only committed if you "svn add" them, so there is no need to delete anything. it is dangerous for the IDE to delete files in the user space. just because they aren't part of a project doesn't mean they aren't valuable.

Offline Keyla

  • Multiple posting newcomer
  • *
  • Posts: 48
Re: Win32 CBTortoiseSVN plugin under subversion control
« Reply #16 on: September 21, 2007, 08:18:40 pm »
Of course you can. But this was just a hint that this should be considered for the plugin :)

Offline mattn2

  • Multiple posting newcomer
  • *
  • Posts: 18
Re: Win32 CBTortoiseSVN plugin under subversion control
« Reply #17 on: September 28, 2007, 10:31:42 am »
can someone please share a binary version for windows, i didn't manage to compile the plugin myself

Offline Jan van den Borst

  • Multiple posting newcomer
  • *
  • Posts: 99
Re: Win32 CBTortoiseSVN plugin under subversion control
« Reply #18 on: September 28, 2007, 11:15:40 am »
can someone please share a binary version for windows, i didn't manage to compile the plugin myself
Try this
http://www.4shared.com/file/25233258/29127683/CBTortoiseSVN.html
jan

Offline Jan van den Borst

  • Multiple posting newcomer
  • *
  • Posts: 99
Re: Win32 CBTortoiseSVN plugin under subversion control
« Reply #19 on: October 06, 2007, 06:48:02 pm »
CBTortoiseSVN updated
- Added customizable main-menu and popup menu

Jan

svn:  http://tools.assembla.com/svn/CBTortoiseSVN/CBTortoiseSVN/trunk
bin:   http://www.4shared.com/file/25233258/29127683/CBTortoiseSVN.html

Offline kisoft

  • Almost regular
  • **
  • Posts: 194
Re: Win32 CBTortoiseSVN plugin under subversion control
« Reply #20 on: October 08, 2007, 11:30:25 am »
Thank you!
More usable now! I can check entire project now!
OS: WinXPSP3
wxWidgets: 2.8.12
CodeBlocks: Master github cbMakefileGen plugin:
https://github.com/kisoft/cbmakefilegen

Offline mattn2

  • Multiple posting newcomer
  • *
  • Posts: 18
Re: Win32 CBTortoiseSVN plugin under subversion control
« Reply #21 on: March 30, 2008, 06:47:22 pm »
the link is no longer valid - can you please reupload it somewhere?

Offline Gagh

  • Multiple posting newcomer
  • *
  • Posts: 12
Re: Win32 CBTortoiseSVN plugin under subversion control
« Reply #22 on: April 09, 2008, 01:44:16 am »
the link is no longer valid - can you please reupload it somewhere?

Check here:
http://tools.assembla.com/svn/CBTortoiseSVN/

Not sure what the last update has been, but it'll give you a start.

Before you build it, just update the post-build step to:
zip -j9 bin\CBTortoiseSVN.zip manifest.xml
zip -j9 CBTortoiseSVN.plugin bin\CBTortoiseSVN.zip bin\CBTortoiseSVN.dll

PS:
Simple search with search engine gave the link, so....  :shock:
« Last Edit: April 09, 2008, 01:53:44 am by Gagh »
OS: winXP sp3 | FreeBSD 7.0-stable | Ubuntu
Compiler: mingw 5.1.3 | gcc 4.2.1 | gcc 4.2.1
IDE: Code::Blocks SVN (on all) WX: 2.8.7 | 2.8.0 | 2.8.8

EViruS

  • Guest
Re: Win32 CBTortoiseSVN plugin under subversion control
« Reply #23 on: August 11, 2008, 09:54:37 pm »
Can anybody public binary version of plugin?

Offline Gagh

  • Multiple posting newcomer
  • *
  • Posts: 12
Re: Win32 CBTortoiseSVN plugin under subversion control
« Reply #24 on: August 11, 2008, 10:38:23 pm »
Can anybody public binary version of plugin?

It's not to hard to build, just had to remove -Wno-attributes from the project compiler flags and it builds. Haven't fully tested it, as I'm test-driving my own SCM plugin, but it installs, gives the menu's and at least does Log...

I'll send it through mail, as it's a bit to big to attach.

Don't know if Jan is still working on it...
OS: winXP sp3 | FreeBSD 7.0-stable | Ubuntu
Compiler: mingw 5.1.3 | gcc 4.2.1 | gcc 4.2.1
IDE: Code::Blocks SVN (on all) WX: 2.8.7 | 2.8.0 | 2.8.8

Offline Fizick

  • Multiple posting newcomer
  • *
  • Posts: 13
Re: Win32 CBTortoiseSVN plugin under subversion control
« Reply #25 on: October 22, 2008, 02:42:55 pm »
Ii is not compilerd for we with gcc 4.3.2, latest codeblocks SVN

Code
utils.cpp|40|error: no matching function for call to 'find(__gnu_cxx::__normal_iterator<CBTSVN::ILogSink**, std::vector<CBTSVN::ILogSink*, std::allocator<CBTSVN::ILogSink*> > >, __gnu_cxx::__normal_iterator<CBTSVN::ILogSink**, std::vector<CBTSVN::ILogSink*, std::allocator<CBTSVN::ILogSink*> > >, CBTSVN::ILogSink*)'|

Code
void CBTSVN::Logger::Subscribe(ILogSink& client)
{
    if (std::find(m_subscribers.begin(),
                  m_subscribers.end(), &client) == m_subscribers.end())
        m_subscribers.push_back(&client);
}





UPDATE:
I found, that plugin is compiled fine, if we add one line to utils.cpp (or utils.h):

#include <algorithm>

:)
« Last Edit: October 22, 2008, 07:06:32 pm by Fizick »

Offline Jan van den Borst

  • Multiple posting newcomer
  • *
  • Posts: 99
Re: Win32 CBTortoiseSVN plugin under subversion control
« Reply #26 on: October 26, 2008, 11:47:28 pm »
Just checked this in (I put #include <algorithm> in precompiled header file)

Jan


Ii is not compilerd for we with gcc 4.3.2, latest codeblocks SVN

Code
utils.cpp|40|error: no matching function for call to 'find(__gnu_cxx::__normal_iterator<CBTSVN::ILogSink**, std::vector<CBTSVN::ILogSink*, std::allocator<CBTSVN::ILogSink*> > >, __gnu_cxx::__normal_iterator<CBTSVN::ILogSink**, std::vector<CBTSVN::ILogSink*, std::allocator<CBTSVN::ILogSink*> > >, CBTSVN::ILogSink*)'|

Code
void CBTSVN::Logger::Subscribe(ILogSink& client)
{
    if (std::find(m_subscribers.begin(),
                  m_subscribers.end(), &client) == m_subscribers.end())
        m_subscribers.push_back(&client);
}





UPDATE:
I found, that plugin is compiled fine, if we add one line to utils.cpp (or utils.h):

#include <algorithm>

:)

Offline Fizick

  • Multiple posting newcomer
  • *
  • Posts: 13
Re: Win32 CBTortoiseSVN plugin under subversion control
« Reply #27 on: October 27, 2008, 05:07:24 pm »
Hm, I do not see it at svn trunk.

Offline Jan van den Borst

  • Multiple posting newcomer
  • *
  • Posts: 99

Offline Jan van den Borst

  • Multiple posting newcomer
  • *
  • Posts: 99