File tree Expand file tree Collapse file tree 13 files changed +737
-13
lines changed
kotlin/com/github/oldmegit/goframeidea Expand file tree Collapse file tree 13 files changed +737
-13
lines changed Original file line number Diff line number Diff line change 1+ name : GoFrame-IDEA Release
2+
3+ on :
4+ push :
5+ tags :
6+ - " v*"
7+
8+ env :
9+ TZ : Asia/Shanghai
10+
11+ jobs :
12+ create_release :
13+ name : Create Release
14+ runs-on : ubuntu-latest
15+ steps :
16+ - name : Get version from tag
17+ id : tag_name
18+ run : |
19+ echo ::set-output name=current_version::${GITHUB_REF#refs/tags/v}
20+ shell : bash
21+
22+ - name : Checkout Code
23+ uses : actions/checkout@v4
24+
25+ - name : Get Changelog Entry
26+ id : changelog_reader
27+ uses : mindsers/changelog-reader-action@v2
28+ with :
29+ version : ${{ steps.tag_name.outputs.current_version }}
30+ path : CHANGELOG.md
31+
32+ - name : Create Release
33+ id : create_release
34+ uses : softprops/action-gh-release@v1
35+ env :
36+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
37+ with :
38+ tag_name : ${{ github.ref }}
39+ name : GoFrame-IDEA ${{ github.ref_name }}
40+ draft : false
41+ prerelease : false
42+ body : ${{ steps.changelog_reader.outputs.changes }}
Original file line number Diff line number Diff line change 33# GoFrame Idea Changelog
44
55## [ Unreleased]
6+
7+ ## [ 1.0.0-alpha] - 2023-12-08
8+ ### Added
9+ - OpenApi Tag Completion
10+ - Orm Completion
11+ - Api file watch
12+ - Service file watch
13+ - live template
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 1- package com.github.oldmegit.goframeidea.goFrame
1+ package com.github.oldmegit.goframeidea.gf
22
33import com.github.oldmegit.goframeidea.ui.AppSettingsState
44import com.intellij.openapi.project.Project
Original file line number Diff line number Diff line change 1- package com.github.oldmegit.goframeidea.goFrame
1+ package com.github.oldmegit.goframeidea.gf
22
33import com.github.oldmegit.goframeidea.data.Cache
44import com.intellij.openapi.project.Project
Original file line number Diff line number Diff line change 1- package com.github.oldmegit.goframeidea.goFrame
1+ package com.github.oldmegit.goframeidea.gf
22
33import com.goide.inspections.core.GoCallableDescriptorSet
44import com.goide.inspections.core.GoMethodDescriptor
Original file line number Diff line number Diff line change 1- package com.github.oldmegit.goframeidea.goFrame
1+ package com.github.oldmegit.goframeidea.gf
22
33import com.goide.psi.*
44import com.goide.psi.impl.GoPsiUtil
Original file line number Diff line number Diff line change 11package com.github.oldmegit.goframeidea.listener
22
3- import com.github.oldmegit.goframeidea.goFrame .Gf
4- import com.github.oldmegit.goframeidea.goFrame .GfGoMod
3+ import com.github.oldmegit.goframeidea.gf .Gf
4+ import com.github.oldmegit.goframeidea.gf .GfGoMod
55import com.goide.GoFileType
66import com.intellij.openapi.project.Project
77import com.intellij.openapi.vfs.newvfs.BulkFileListener
Original file line number Diff line number Diff line change 11package com.github.oldmegit.goframeidea.provider
22
3- import com.github.oldmegit.goframeidea.goFrame .Gf
3+ import com.github.oldmegit.goframeidea.gf .Gf
44import com.goide.psi.GoAnonymousFieldDefinition
55import com.goide.psi.GoFieldDefinition
66import com.goide.psi.GoStructType
Original file line number Diff line number Diff line change 11package com.github.oldmegit.goframeidea.provider
22
3- import com.github.oldmegit.goframeidea.goFrame .GfGoMod
3+ import com.github.oldmegit.goframeidea.gf .GfGoMod
44import com.intellij.codeInsight.completion.CompletionParameters
55import com.intellij.codeInsight.completion.CompletionProvider
66import com.intellij.codeInsight.completion.CompletionResultSet
You can’t perform that action at this time.
0 commit comments