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

Commit

Permalink
Fixed bug with "open project button", changed license, updated readme…
Browse files Browse the repository at this point in the history
… with contact info
  • Loading branch information
teocomi committed Oct 6, 2015
1 parent 1e63016 commit fd969e4
Show file tree
Hide file tree
Showing 7 changed files with 698 additions and 25 deletions.
4 changes: 2 additions & 2 deletions Bcfier.Revit/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,6 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.0.1")]
[assembly: AssemblyFileVersion("2.0.1")]
[assembly: AssemblyVersion("2.0.1.1")]
[assembly: AssemblyFileVersion("2.0.1.1")]
[assembly: GuidAttribute("59068325-ACDC-4DB3-892A-1C90C9434BF8")]
4 changes: 2 additions & 2 deletions Bcfier.Win/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,6 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.0.1")]
[assembly: AssemblyFileVersion("2.0.1")]
[assembly: AssemblyVersion("2.0.1.1")]
[assembly: AssemblyFileVersion("2.0.1.1")]
[assembly: GuidAttribute("9FC6BA85-A348-40B4-97C4-6699DA912C21")]
4 changes: 2 additions & 2 deletions Bcfier/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,6 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.0.1")]
[assembly: AssemblyFileVersion("2.0.1")]
[assembly: AssemblyVersion("2.0.1.1")]
[assembly: AssemblyFileVersion("2.0.1.1")]
[assembly: GuidAttribute("0d553633-80f8-490b-84d6-9d3d6ad4196d")]
2 changes: 1 addition & 1 deletion Bcfier/UserControls/BcfierPanel.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
<themes:ButtonIcon ToolTip="New BCF Report" x:Name="NewBcfBtn" Style="{StaticResource MainMenuButton}" Content="New BCF" IconPath="{StaticResource IconNewFile}"/>
<themes:ButtonIcon ToolTip="Save BCF as..." x:Name="SaveBcfBtn" Style="{StaticResource CanSaveEnablerStyle}" Content="Save as..." IconPath="{StaticResource IconSaveFile}"/>
<themes:ButtonIcon ToolTip="Open a BCF..." x:Name="OpenBcfBtn" Content="Open BCF" IconPath="{StaticResource IconOpenFile}" Style="{StaticResource MainMenuButton}"/>
<themes:ButtonIcon ToolTip="Open a Web Project..." x:Name="OpenProjectBtn" Content="Open Project" IconPath="{StaticResource IconOpenFile}" Style="{StaticResource MainMenuButton}"/>
<!--<themes:ButtonIcon ToolTip="Open a Web Project..." x:Name="OpenProjectBtn" Content="Open Project" IconPath="{StaticResource IconOpenFile}" Style="{StaticResource MainMenuButton}"/>-->
<themes:ButtonIcon ToolTip="Merge one or more BCFs with the current one" x:Name="MergeBcfBtn" Style="{StaticResource CanSaveEnablerStyle}" Content="Merge..." IconPath="{StaticResource IconMergeFile}"/>
<themes:ButtonIcon ToolTip="Settings..." x:Name="SettingsBtn" Style="{StaticResource MainMenuButton}" Content="Settings" IconPath="{StaticResource IconSettings}" />
<themes:ButtonIcon ToolTip="Help" x:Name="HelpBtn" HorizontalAlignment="Left" Content="Help" IconPath="{StaticResource IconHelp}" Style="{StaticResource MainMenuButton}"/>
Expand Down
2 changes: 1 addition & 1 deletion Bcfier/UserControls/BcfierPanel.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public BcfierPanel()
//top menu buttons and events
NewBcfBtn.Click += delegate { _bcf.NewFile(); OnAddIssue(null,null);};
OpenBcfBtn.Click += delegate { _bcf.OpenFile(); };
OpenProjectBtn.Click += OnOpenWebProject;
//OpenProjectBtn.Click += OnOpenWebProject;
SaveBcfBtn.Click += delegate { _bcf.SaveFile(SelectedBcf()); };
MergeBcfBtn.Click += delegate { _bcf.MergeFiles(SelectedBcf()); };
SettingsBtn.Click += delegate
Expand Down
686 changes: 669 additions & 17 deletions LICENSE

Large diffs are not rendered by default.

21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,24 @@ A more detailed list of things that need to be done can be found in the [issues
**New Autodesk Revit module Features**
- support for crop boxes
- a setting to apply vew templates to new view

###Contact
You can contact Matteo Cominetti at: hello@teocomi.com

###License
GNU General Public License v3

Copyright (c) 2015 Matteo Cominetti

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/gpl.txt>.

0 comments on commit fd969e4

Please sign in to comment.