-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #22 from LipPkg/develop
Release 0.2.6
- Loading branch information
Showing
150 changed files
with
15,956 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Auto detect text files and perform LF normalization | ||
* text=auto |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: 'Bug: ' | ||
labels: 'bug' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Describe the bug** | ||
|
||
<!-- A clear and concise description of what the bug is. --> | ||
|
||
**To Reproduce** | ||
|
||
Steps to reproduce the behavior: | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
|
||
**Expected behavior** | ||
|
||
<!-- A clear and concise description of what you expected to happen. --> | ||
|
||
**Screenshots** | ||
|
||
<!-- If applicable, add screenshots to help explain your problem. --> | ||
|
||
**Platform (please complete the following information):** | ||
|
||
- OS: <!-- [e.g. Windows 10 21H2] --> | ||
- Version: <!-- [e.g. 0.1.0] --> | ||
|
||
**Additional context** | ||
|
||
<!-- Add any other context about the problem here. --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
title: '' | ||
labels: 'enhancement' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Is your feature request related to a problem? Please describe.** | ||
|
||
<!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] --> | ||
|
||
**Describe the solution you'd like** | ||
|
||
<!-- A clear and concise description of what you want to happen. --> | ||
|
||
**Describe alternatives you've considered** | ||
|
||
<!-- A clear and concise description of any alternative solutions or features you've considered. --> | ||
|
||
**Additional context** | ||
|
||
<!-- Add any other context or screenshots about the feature request here. --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
## What does this PR do? | ||
|
||
|
||
|
||
## Which issues does this PR resolve? | ||
|
||
|
||
|
||
## Checklist before merging | ||
|
||
Thank you for your contribution to the repository. | ||
Before submitting this PR, please make sure: | ||
|
||
- [ ] Your code builds clean without any errors or warnings | ||
- [ ] Your code follows the code style | ||
- [ ] You have tested all functions | ||
- [ ] You have not used code without license | ||
- [ ] You have added statement for third-party code |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
on: | ||
pull_request: | ||
push: | ||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
build: | ||
runs-on: windows-latest | ||
strategy: | ||
matrix: | ||
framework: | ||
- net462 | ||
- net7.0-windows | ||
runtime: | ||
- win10-x64 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: 7.0.x | ||
|
||
- name: Build | ||
run: | | ||
dotnet publish src/LipUI/LipUI.csproj -c Release -f ${{ matrix.framework }} -o build/ -r ${{ matrix.runtime }} --sc true | ||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: ${{ matrix.framework }}-${{ matrix.runtime }} | ||
path: | | ||
build/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
on: | ||
release: | ||
types: | ||
- published | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
build: | ||
runs-on: windows-latest | ||
strategy: | ||
matrix: | ||
framework: | ||
- net462 | ||
- net7.0-windows | ||
runtime: | ||
- win10-x64 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: 7.0.x | ||
|
||
- name: Build | ||
run: | | ||
dotnet publish src/LipUI/LipUI.csproj -c Release -f ${{ matrix.framework }} -o build/ -r ${{ matrix.runtime }} --sc true | ||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: ${{ matrix.framework }}-${{ matrix.runtime }} | ||
path: | | ||
build/ | ||
upload-to-release: | ||
needs: | ||
- build | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
framework: | ||
- net462 | ||
- net7.0-windows | ||
runtime: | ||
- win10-x64 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: actions/download-artifact@v3 | ||
with: | ||
name: ${{ matrix.framework }}-${{ matrix.runtime }} | ||
path: artifacts/ | ||
|
||
- name: Copy essential files | ||
run: | | ||
cp CHANGELOG.md LICENSE README.md artifacts/ | ||
- name: Pack artifacts | ||
run: | | ||
cd artifacts | ||
zip -9r ../lipui-${{ matrix.framework }}-${{ matrix.runtime }}.zip * | ||
cd .. | ||
- name: Upload artifacts to release | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
append_body: true | ||
files: | | ||
lipui-${{ matrix.framework }}-${{ matrix.runtime }}.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
## community/DotNet/core.gitignore | ||
*.swp | ||
*.*~ | ||
project.lock.json | ||
.DS_Store | ||
*.pyc | ||
nupkg/ | ||
|
||
# Visual Studio Code | ||
.vscode | ||
|
||
# Rider | ||
.idea | ||
|
||
# User-specific files | ||
*.suo | ||
*.user | ||
*.userosscache | ||
*.sln.docstates | ||
|
||
# Build results | ||
[Dd]ebug/ | ||
[Dd]ebugPublic/ | ||
[Rr]elease/ | ||
[Rr]eleases/ | ||
x64/ | ||
x86/ | ||
build/ | ||
bld/ | ||
[Bb]in/ | ||
[Oo]bj/ | ||
[Oo]ut/ | ||
msbuild.log | ||
msbuild.err | ||
msbuild.wrn | ||
|
||
# Visual Studio 2015 | ||
.vs/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
|
||
## [0.2.6] - 2023-04-24 | ||
|
||
### Fixed | ||
|
||
- Wrong visibility of the `skip dependency` texts. | ||
|
||
## [0.2.5] - 2023-04-04 | ||
|
||
### Added | ||
|
||
- i18n support. | ||
|
||
### Changed | ||
|
||
- Optimize the UI. | ||
|
||
### Changed | ||
|
||
- Optimize the UI. | ||
|
||
## [0.2.4] - 2023-03-11 | ||
|
||
### Added | ||
|
||
- Animations. | ||
|
||
### Fixed | ||
|
||
- Unicode encoding. | ||
|
||
### Changed | ||
|
||
- Optimize user experience. | ||
|
||
### Removed | ||
|
||
- Icon at status bar. | ||
|
||
## [0.2.3] - 2023-03-07 | ||
|
||
### Added | ||
|
||
- Pop up EULA. | ||
- Packages now can be filtered by tags. | ||
- Upgrade support for packages. | ||
|
||
### Changed | ||
|
||
- Optimize the UI. | ||
|
||
## [0.2.2] - 2023-02-19 | ||
|
||
### Fixed | ||
|
||
- Some bugs. | ||
|
||
## [0.2.1] - 2023-02-18 | ||
|
||
### Fixed | ||
|
||
- Some bugs. | ||
|
||
## [0.2.0] - 2023-02-15 | ||
|
||
### Added | ||
|
||
- More functionalities. | ||
|
||
## [0.1.0] - 2023-02-13 | ||
|
||
- Initial release. | ||
|
||
[unreleased]: https://github.com/LipPkg/LipUI/compare/v0.2.6...HEAD | ||
[0.2.6]: https://github.com/LipPkg/LipUI/compare/v0.2.5...v0.2.6 | ||
[0.2.5]: https://github.com/LipPkg/LipUI/compare/v0.2.4...v0.2.5 | ||
[0.2.4]: https://github.com/LipPkg/LipUI/compare/v0.2.3...v0.2.4 | ||
[0.2.3]: https://github.com/LipPkg/LipUI/compare/v0.2.2...v0.2.3 | ||
[0.2.2]: https://github.com/LipPkg/LipUI/compare/v0.2.1...v0.2.2 | ||
[0.2.1]: https://github.com/LipPkg/LipUI/compare/v0.2.0...v0.2.1 | ||
[0.2.0]: https://github.com/LipPkg/LipUI/compare/v0.1.0...v0.2.0 | ||
[0.1.0]: https://github.com/LipPkg/LipUI/releases/tag/v0.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
> 1% | ||
last 2 versions | ||
not dead | ||
not ie 11 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[*.{js,jsx,ts,tsx,vue}] | ||
indent_style = space | ||
indent_size = 2 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
.DS_Store | ||
node_modules | ||
/dist | ||
|
||
|
||
# local env files | ||
.env.local | ||
.env.*.local | ||
|
||
# Log files | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
pnpm-debug.log* | ||
|
||
# Editor directories and files | ||
.idea | ||
.vscode | ||
*.suo | ||
*.ntvs* | ||
*.njsproj | ||
*.sln | ||
*.sw? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# LipWeb | ||
## Project setup | ||
``` | ||
npm install | ||
``` | ||
### Compiles and hot-reloads for development | ||
``` | ||
npm run dev | ||
``` | ||
### Compiles and minifies for production | ||
``` | ||
npm run build | ||
``` | ||
### Customize configuration | ||
See [Configuration Reference](https://vitejs.dev/config/). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<!DOCTYPE html> | ||
<html lang="zh"> | ||
|
||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<link rel="icon" href="/favicon.ico" type="image/vnd.microsoft.icon" /> | ||
<title>LipWeb</title> | ||
</head> | ||
|
||
<body> | ||
<div id="app"></div> | ||
<script type="module" src="/src/main.ts"></script> | ||
</body> | ||
|
||
</html> |
Oops, something went wrong.