Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.0.1 #1

Merged
merged 33 commits into from
Jun 17, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
da5f530
WIP: draft analysis logic.
SilkyFowl Jun 3, 2022
33ce97c
WIP: add etc...
SilkyFowl Jun 4, 2022
63d2b89
WIP: add etc.
SilkyFowl Jun 4, 2022
cf3ade8
Pinned dependencies viewsion.
SilkyFowl Jun 5, 2022
7ae32b4
LiveView Improvements
SilkyFowl Jun 6, 2022
59eeb0a
Update Sample code.
SilkyFowl Jun 6, 2022
05aadfb
LiveView Improvements
SilkyFowl Jun 7, 2022
ed4aa0c
LiveView Improvements
SilkyFowl Jun 7, 2022
b33a499
Improved LivePreview results.
SilkyFowl Jun 8, 2022
0a76df2
Fix layout.
SilkyFowl Jun 8, 2022
9a943cc
LiveView-related compiler directives changed
SilkyFowl Jun 8, 2022
489daff
Update Sample
SilkyFowl Jun 8, 2022
a0a86a1
Addressing a bug related to line feed codes in the Windows environment.
SilkyFowl Jun 8, 2022
2167923
bug Fix:StreamGeometry.Parse
SilkyFowl Jun 10, 2022
50b1193
update settings.
SilkyFowl Jun 10, 2022
f785b2e
LivePreviewFunc restriction relaxed.
SilkyFowl Jun 10, 2022
9acf937
Added tests and sample code for dotnet/fsharp#8854
SilkyFowl Jun 10, 2022
9fe64e9
WIP: Improved error handling
SilkyFowl Jun 11, 2022
f991cb3
WIP:Add TestCase DUs bug
SilkyFowl Jun 11, 2022
7cf3a54
Rename SampleCode.
SilkyFowl Jun 11, 2022
4669dcf
Add active pattern:NotSuppurtPatternMessage
SilkyFowl Jun 12, 2022
b2c153d
Update build sctipt.
SilkyFowl Jun 12, 2022
1086464
Fixed omission of validation of InvalidStringCall
SilkyFowl Jun 12, 2022
1c260e5
Refactor InvalidStringCall
SilkyFowl Jun 12, 2022
2ba7a9f
Fix Live Preview lanch setting.
SilkyFowl Jun 12, 2022
3b29717
WIP: Update sample
SilkyFowl Jun 13, 2022
542ea1c
Pin Avalonia.Angle.Windows.Natives 2.1.0.2020091801
SilkyFowl Jun 13, 2022
66981a5
Create LICENSE.md
SilkyFowl Jun 14, 2022
14f8626
v0.0.1-alpha2:Refactor build script, and add License.
SilkyFowl Jun 15, 2022
d2ca089
WIP:Update README.ja.md
SilkyFowl Jun 16, 2022
b16e8d8
Update README.ja.md
SilkyFowl Jun 16, 2022
493960c
Update README.md
SilkyFowl Jun 16, 2022
dc88338
Update README
SilkyFowl Jun 16, 2022
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
23 changes: 19 additions & 4 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"version": "0.2.0",
"configurations": [
{
"name": ".NET Core Launch (console)",
"name": "Sample",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "Build: solution",
Expand All @@ -21,9 +21,24 @@
}
},
{
"name": ".NET Core Attach",
"name": "Sample(Live Preview)",
"type": "coreclr",
"request": "attach"
}
"request": "launch",
"preLaunchTask": "Build: solution",
"program": "${workspaceFolder}/src/Sample/bin/Debug/net6.0/Sample.dll",
"args": [],
"cwd": "${workspaceFolder}",
"console": "internalConsole",
"stopAtEntry": false,
"env": {
"FUNCUI_LIVEPREVIEW": "1"
},
"linux": {
"env": {
"LANG": "en_US.UTF-8",
"FUNCUI_LIVEPREVIEW": "1"
}
}
},
]
}
14 changes: 14 additions & 0 deletions Avalonia.FuncUI.LiveView.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.30114.105
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".paket", ".paket", "{0A4244DC-3284-4E74-A62E-1A04BF2F016D}"
ProjectSection(SolutionItems) = preProject
paket.dependencies = paket.dependencies
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{DB8DF710-E6E6-4722-99D4-514834AEEB16}"
EndProject
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Avalonia.FuncUI.LiveView.Core", "src\Avalonia.FuncUI.LiveView.Core\Avalonia.FuncUI.LiveView.Core.fsproj", "{AA59F86F-40EC-4935-928E-ACE854A73DE4}"
Expand All @@ -15,6 +20,10 @@ Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Avalonia.FuncUI.LiveView",
EndProject
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Sample", "src\Sample\Sample.fsproj", "{5C2F7CB8-7EC7-4C46-855C-0D9D2B195EA5}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{77D972B7-9F97-4C02-959F-C95D4B35CD61}"
EndProject
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Avalonia.FuncUI.LiveView.Core.Tests", "tests\Avalonia.FuncUI.LiveView.Core.Tests\Avalonia.FuncUI.LiveView.Core.Tests.fsproj", "{20DD3B4D-46C8-4F78-B114-6ED2CCAA1433}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -44,12 +53,17 @@ Global
{5C2F7CB8-7EC7-4C46-855C-0D9D2B195EA5}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5C2F7CB8-7EC7-4C46-855C-0D9D2B195EA5}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5C2F7CB8-7EC7-4C46-855C-0D9D2B195EA5}.Release|Any CPU.Build.0 = Release|Any CPU
{20DD3B4D-46C8-4F78-B114-6ED2CCAA1433}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{20DD3B4D-46C8-4F78-B114-6ED2CCAA1433}.Debug|Any CPU.Build.0 = Debug|Any CPU
{20DD3B4D-46C8-4F78-B114-6ED2CCAA1433}.Release|Any CPU.ActiveCfg = Release|Any CPU
{20DD3B4D-46C8-4F78-B114-6ED2CCAA1433}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{AA59F86F-40EC-4935-928E-ACE854A73DE4} = {DB8DF710-E6E6-4722-99D4-514834AEEB16}
{4D51DD74-3547-4077-8821-BAA46F554C60} = {DB8DF710-E6E6-4722-99D4-514834AEEB16}
{285A3E92-3E68-40A0-8167-D5227798D489} = {DB8DF710-E6E6-4722-99D4-514834AEEB16}
{012E7FAA-B6D4-4FCE-B9C9-F795C53FEA46} = {DB8DF710-E6E6-4722-99D4-514834AEEB16}
{5C2F7CB8-7EC7-4C46-855C-0D9D2B195EA5} = {DB8DF710-E6E6-4722-99D4-514834AEEB16}
{20DD3B4D-46C8-4F78-B114-6ED2CCAA1433} = {77D972B7-9F97-4C02-959F-C95D4B35CD61}
EndGlobalSection
EndGlobal
21 changes: 21 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2022 SilkyFowl

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Loading