Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .idea/.idea.ClassIsland/.idea/CopilotChatHistory.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion .idea/.idea.ClassIsland/.idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 26 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"version": "0.2.0",
"configurations": [
{
// 使用 IntelliSense 找出 C# 调试存在哪些属性
// 将悬停用于现有属性的说明
// 有关详细信息,请访问 https://github.com/dotnet/vscode-csharp/blob/main/debugger-launchjson.md
"name": ".NET Core Launch (console)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
// 如果已更改目标框架,请确保更新程序路径。
"program": "${workspaceFolder}/ClassIsland/bin/Debug/net8.0-windows/ClassIsland.dll",
"args": [],
"cwd": "${workspaceFolder}/ClassIsland",
// 有关“控制台”字段的详细信息,请参阅 https://aka.ms/VSCode-CS-LaunchJson-Console
"console": "internalConsole",
"stopAtEntry": false
},
{
"name": ".NET Core Attach",
"type": "coreclr",
"request": "attach"
}
]
}
41 changes: 41 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/ClassIsland/ClassIsland.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary;ForceNoAlign"
],
"problemMatcher": "$msCompile"
},
{
"label": "publish",
"command": "dotnet",
"type": "process",
"args": [
"publish",
"${workspaceFolder}/ClassIsland/ClassIsland.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary;ForceNoAlign"
],
"problemMatcher": "$msCompile"
},
{
"label": "watch",
"command": "dotnet",
"type": "process",
"args": [
"watch",
"run",
"--project",
"${workspaceFolder}/ClassIsland/ClassIsland.csproj"
],
"problemMatcher": "$msCompile"
}
]
}
2 changes: 1 addition & 1 deletion ClassIsland.PluginSdk/ClassIsland.PluginSdk.targets
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
DestinationFile="$(ClassIslandSdk_CipxOutputPath)"/>

<!-- Generate MD5 -->
<Exec Command="$(PowershellBinaryName) -ep bypass -NoLogo -File &quot;$(ClassIslandSdk_PackageRoot)generate-md5.ps1&quot; &quot;$(CipxPackageOutputDirectory)&quot;"
<Exec Command="powershell -ep bypass -NoLogo -File &quot;$(ClassIslandSdk_PackageRoot)generate-md5.ps1&quot; &quot;$(CipxPackageOutputDirectory)&quot;"
Condition="'$(GenerateHashSummary)'=='true'"/>
</Target>
</Project>
28 changes: 11 additions & 17 deletions ClassIsland/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,8 @@
</ContextMenu>
<CollectionViewSource x:Key="ComponentsCollectionViewSource"
Source="{Binding ComponentsService.CurrentComponents}"
IsLiveGroupingRequested="True"
IsLiveSortingRequested="True">
IsLiveGroupingRequested="False"
IsLiveSortingRequested="False">
<!--<CollectionViewSource.LiveSortingProperties>
<system:String>RelativeLineNumber</system:String>
</CollectionViewSource.LiveSortingProperties>
Expand Down Expand Up @@ -360,24 +360,18 @@
</Storyboard>

<Storyboard x:Key="WindowMouseIn">
<DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.Opacity)">
<EasingDoubleKeyFrame KeyTime="00:00:00" Value="1"/>
<EasingDoubleKeyFrame KeyTime="00:00:00.1500000" Value="0.1">
<EasingDoubleKeyFrame.EasingFunction>
<DoubleAnimation Storyboard.TargetProperty="Opacity" From="1" To="0.1" Duration="0:0:0.15">
<DoubleAnimation.EasingFunction>
<CircleEase EasingMode="EaseOut"/>
</EasingDoubleKeyFrame.EasingFunction>
</EasingDoubleKeyFrame>
</DoubleAnimationUsingKeyFrames>
</DoubleAnimation.EasingFunction>
</DoubleAnimation>
</Storyboard>
<Storyboard x:Key="WindowMouseOut">
<DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.Opacity)">
<EasingDoubleKeyFrame KeyTime="00:00:00" Value="0.1"/>
<EasingDoubleKeyFrame KeyTime="00:00:00.1500000" Value="1">
<EasingDoubleKeyFrame.EasingFunction>
<DoubleAnimation Storyboard.TargetProperty="Opacity" From="0.1" To="1" Duration="0:0:0.15">
<DoubleAnimation.EasingFunction>
<CircleEase EasingMode="EaseIn"/>
</EasingDoubleKeyFrame.EasingFunction>
</EasingDoubleKeyFrame>
</DoubleAnimationUsingKeyFrames>
</DoubleAnimation.EasingFunction>
</DoubleAnimation>
</Storyboard>
<converters1:IntToStringConverter x:Key="IntToStringConverter" />
<converters1:MiniInfoGuidToMiniInfoProviderElementMultiConverter x:Key="MiniInfoGuidToMiniInfoProviderElementConverter" />
Expand Down Expand Up @@ -528,7 +522,7 @@
</ItemsControl.GroupStyle>
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Horizontal" />
<VirtualizingStackPanel Orientation="Horizontal" VirtualizingPanel.IsVirtualizing="True" VirtualizingPanel.VirtualizationMode="Recycling"/>
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
<ItemsControl.ItemTemplate>
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
<!--markdownlint-disable MD001 MD033 MD041 MD051-->

> [!caution]
> 目前我们正在进行备案更变,2025/6/25-2025/7/29 期间 ClassIsland 所有网络服务可能无法访问,届时可能无法正常下载/更新应用和插件。感谢大家的理解和支持。

<div align="center">

# <image src="ClassIsland/Assets/AppLogo_AppLogo.svg" height="28"/> ClassIsland
Expand Down
Loading