Skip to content

Commit

Permalink
Merge branch 'refs/heads/dev'
Browse files Browse the repository at this point in the history
# Conflicts:
#	source/RevitLookup/Core/ComponentModel/Descriptors/FamilyDescriptor.cs
  • Loading branch information
Nice3point committed May 17, 2024
2 parents b85a394 + b8910d3 commit 18e7991
Show file tree
Hide file tree
Showing 37 changed files with 171,920 additions and 468 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/Qodana.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,12 @@ jobs:
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
ref: ${{ github.event.pull_request.merge_commit_sha }}
fetch-depth: 0
- name: 'Qodana Scan'
uses: JetBrains/qodana-action@main
uses: JetBrains/qodana-action@v2023.3
with:
args: --ide,QDNET
args: --baseline,qodana.sarif.json,--ide,QDNET
pr-mode: ${{ github.event_name == 'pull_request_target' }}
env:
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}
29 changes: 29 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,34 @@
# Changelog

# 2025-05-17 **2025.0.4**

A new Release focused on improving core functionalities and robustness of the product.

## Improvements

- Introducing a preview feature for **Family Size Table**, making it easier to manage and visualize family sizes by @SergeyNefyodov in https://github.com/jeremytammik/RevitLookup/pull/236
![изображение](https://github.com/jeremytammik/RevitLookup/assets/20504884/57001fab-cc5b-4973-a42a-70ffe3420b69)
To access it:
- Enable **Show Extensions** in the view menu
- Select any **FamilyInstance**
- Navigate to the **Symbol**
- Navigate to the **Family** (or just search for Family class objects in the **Snoop database** command)
- Navigate to the **GetFamilySizeTableManager** method
- Navigate to the **GetSizeTable** method
- Right-click on one of the tables and select the **Show table** command

_Note: Family size table is currently in read-only mode_

- Added new context menu item for selecting Element classes without showing
- Added new fresh, intuitive icons to the context menu for a more user-friendly interface.
- Refined labels, class names, and exception messages

## Bugs

- Resolved an issue where the delete action was not displayed in the context menu for ElementType classes
- Fixed the context menu display issue for Element classes, broken in previous release
- Fixed the order of descriptors to prevent missing extensions and context menu items in some classes, broken in previous release by @SergeyNefyodov in https://github.com/jeremytammik/RevitLookup/pull/235

# 2025-05-13 **2025.0.3**

## General
Expand Down
10 changes: 5 additions & 5 deletions build/Build.Configuration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ protected override void OnBuildInitialized()

VersionMap = new()
{
{"Release R21", "2021.3.3"},
{"Release R22", "2022.3.3"},
{"Release R23", "2023.3.3"},
{"Release R24", "2024.1.3"},
{"Release R25", "2025.0.3"}
{"Release R21", "2021.3.4"},
{"Release R22", "2022.3.4"},
{"Release R23", "2023.3.4"},
{"Release R24", "2024.1.4"},
{"Release R25", "2025.0.4"}
};
}
}
Loading

0 comments on commit 18e7991

Please sign in to comment.