Skip to content
This repository was archived by the owner on May 24, 2024. It is now read-only.

Commit fd969e4

Browse files
committed
Fixed bug with "open project button", changed license, updated readme with contact info
1 parent 1e63016 commit fd969e4

File tree

7 files changed

+698
-25
lines changed

7 files changed

+698
-25
lines changed

Bcfier.Revit/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,6 @@
4949
// You can specify all the values or you can default the Build and Revision Numbers
5050
// by using the '*' as shown below:
5151
// [assembly: AssemblyVersion("1.0.*")]
52-
[assembly: AssemblyVersion("2.0.1")]
53-
[assembly: AssemblyFileVersion("2.0.1")]
52+
[assembly: AssemblyVersion("2.0.1.1")]
53+
[assembly: AssemblyFileVersion("2.0.1.1")]
5454
[assembly: GuidAttribute("59068325-ACDC-4DB3-892A-1C90C9434BF8")]

Bcfier.Win/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,6 @@
4949
// You can specify all the values or you can default the Build and Revision Numbers
5050
// by using the '*' as shown below:
5151
// [assembly: AssemblyVersion("1.0.*")]
52-
[assembly: AssemblyVersion("2.0.1")]
53-
[assembly: AssemblyFileVersion("2.0.1")]
52+
[assembly: AssemblyVersion("2.0.1.1")]
53+
[assembly: AssemblyFileVersion("2.0.1.1")]
5454
[assembly: GuidAttribute("9FC6BA85-A348-40B4-97C4-6699DA912C21")]

Bcfier/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,6 @@
5353
// You can specify all the values or you can default the Build and Revision Numbers
5454
// by using the '*' as shown below:
5555
// [assembly: AssemblyVersion("1.0.*")]
56-
[assembly: AssemblyVersion("2.0.1")]
57-
[assembly: AssemblyFileVersion("2.0.1")]
56+
[assembly: AssemblyVersion("2.0.1.1")]
57+
[assembly: AssemblyFileVersion("2.0.1.1")]
5858
[assembly: GuidAttribute("0d553633-80f8-490b-84d6-9d3d6ad4196d")]

Bcfier/UserControls/BcfierPanel.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
<themes:ButtonIcon ToolTip="New BCF Report" x:Name="NewBcfBtn" Style="{StaticResource MainMenuButton}" Content="New BCF" IconPath="{StaticResource IconNewFile}"/>
5555
<themes:ButtonIcon ToolTip="Save BCF as..." x:Name="SaveBcfBtn" Style="{StaticResource CanSaveEnablerStyle}" Content="Save as..." IconPath="{StaticResource IconSaveFile}"/>
5656
<themes:ButtonIcon ToolTip="Open a BCF..." x:Name="OpenBcfBtn" Content="Open BCF" IconPath="{StaticResource IconOpenFile}" Style="{StaticResource MainMenuButton}"/>
57-
<themes:ButtonIcon ToolTip="Open a Web Project..." x:Name="OpenProjectBtn" Content="Open Project" IconPath="{StaticResource IconOpenFile}" Style="{StaticResource MainMenuButton}"/>
57+
<!--<themes:ButtonIcon ToolTip="Open a Web Project..." x:Name="OpenProjectBtn" Content="Open Project" IconPath="{StaticResource IconOpenFile}" Style="{StaticResource MainMenuButton}"/>-->
5858
<themes:ButtonIcon ToolTip="Merge one or more BCFs with the current one" x:Name="MergeBcfBtn" Style="{StaticResource CanSaveEnablerStyle}" Content="Merge..." IconPath="{StaticResource IconMergeFile}"/>
5959
<themes:ButtonIcon ToolTip="Settings..." x:Name="SettingsBtn" Style="{StaticResource MainMenuButton}" Content="Settings" IconPath="{StaticResource IconSettings}" />
6060
<themes:ButtonIcon ToolTip="Help" x:Name="HelpBtn" HorizontalAlignment="Left" Content="Help" IconPath="{StaticResource IconHelp}" Style="{StaticResource MainMenuButton}"/>

Bcfier/UserControls/BcfierPanel.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public BcfierPanel()
3636
//top menu buttons and events
3737
NewBcfBtn.Click += delegate { _bcf.NewFile(); OnAddIssue(null,null);};
3838
OpenBcfBtn.Click += delegate { _bcf.OpenFile(); };
39-
OpenProjectBtn.Click += OnOpenWebProject;
39+
//OpenProjectBtn.Click += OnOpenWebProject;
4040
SaveBcfBtn.Click += delegate { _bcf.SaveFile(SelectedBcf()); };
4141
MergeBcfBtn.Click += delegate { _bcf.MergeFiles(SelectedBcf()); };
4242
SettingsBtn.Click += delegate

LICENSE

Lines changed: 669 additions & 17 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,3 +59,24 @@ A more detailed list of things that need to be done can be found in the [issues
5959
**New Autodesk Revit module Features**
6060
- support for crop boxes
6161
- a setting to apply vew templates to new view
62+
63+
###Contact
64+
You can contact Matteo Cominetti at: [email protected]
65+
66+
###License
67+
GNU General Public License v3
68+
69+
Copyright (c) 2015 Matteo Cominetti
70+
71+
This program is free software: you can redistribute it and/or modify
72+
it under the terms of the GNU General Public License as published by
73+
the Free Software Foundation, either version 3 of the License, or
74+
(at your option) any later version.
75+
76+
This program is distributed in the hope that it will be useful,
77+
but WITHOUT ANY WARRANTY; without even the implied warranty of
78+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
79+
GNU General Public License for more details.
80+
81+
You should have received a copy of the GNU General Public License
82+
along with this program. If not, see <http://www.gnu.org/licenses/gpl.txt>.

0 commit comments

Comments
 (0)