News:

Accounts with zero posts and zero activity during the last months will be deleted periodically to fight SPAM!

Main Menu

Position of 'cb-xxx.cbp' in 'cb-xxx.workspace' files

Started by LETARTARE, May 18, 2022, 12:08:07 PM

Previous topic - Next topic

LETARTARE

In the file 'cb-xxx.workspace' of the nightly deliveries from 'r-12813' I noticed that 'cb-xxx.cbp' was in the last position, whereas previously it was in the first position.
Why such a change?
CB-13834, plugins-sdk-2.25.0 : Collector-2.6.5, AddOnForQt-5.1.2
1- Win7 Business Pack1 64bits : wx-3.2.8, gcc-15.2.0,
2- OpenSuse::Leap-15.6-64bits : wx-3.2.8;gtk3-u, gcc-15.2.0,
=> !! The messages are translated by 'Deepl'

AndrewCot

The https://sourceforge.net/p/codeblocks/code/HEAD/tree/trunk/src/CodeBlocks_wx31_64.workspace file has the CodeBlocks_wx31_64.cbp as the first entry:

<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<CodeBlocks_workspace_file>
<Workspace title="CodeBlocks Workspace wx3.1.x (64 bit)">
<Project filename="CodeBlocks_wx31_64.cbp" active="1" />
<Project filename="tools/Addr2LineUI/Addr2LineUI_wx31_64.cbp" />

Miguel Gimenez

Probably you are looking at the dependency of the last project:

        <Project filename="plugins/contrib/ToolsPlus/ToolsPlus_wx31.cbp">
            <Depends filename="CodeBlocks_wx31.cbp" />
        </Project>
    </Workspace>
</CodeBlocks_workspace_file>


LETARTARE

#3
Here is mine :
<Project filename="plugins/contrib/symtab/symtab_wx31_64.cbp" />
<Project filename="plugins/contrib/ThreadSearch/ThreadSearch_wx31_64.cbp">
<Depends filename="plugins/contrib/wxContribItems/wxContribItems_wx31_64.cbp" />
</Project>
<Project filename="plugins/contrib/ToolsPlus/ToolsPlus_wx31_64.cbp" />
<Project filename="CodeBlocks_wx31_64.cbp" />
</Workspace>
</CodeBlocks_workspace_file>

I don't know where this anomaly comes from, I just checked with 'cb-12814' : it is correct.
CB-13834, plugins-sdk-2.25.0 : Collector-2.6.5, AddOnForQt-5.1.2
1- Win7 Business Pack1 64bits : wx-3.2.8, gcc-15.2.0,
2- OpenSuse::Leap-15.6-64bits : wx-3.2.8;gtk3-u, gcc-15.2.0,
=> !! The messages are translated by 'Deepl'

Miguel Gimenez

If you modified the workspace in the past, "svn update" will not overwrite it; this may explain why yours is different. Use "svn status" and it will tell you if there are more files in this situation.