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 3
3
# GoFrame Idea Changelog
4
4
5
5
## [ 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
2
2
3
3
import com.github.oldmegit.goframeidea.ui.AppSettingsState
4
4
import 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
2
2
3
3
import com.github.oldmegit.goframeidea.data.Cache
4
4
import 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
2
2
3
3
import com.goide.inspections.core.GoCallableDescriptorSet
4
4
import 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
2
2
3
3
import com.goide.psi.*
4
4
import com.goide.psi.impl.GoPsiUtil
Original file line number Diff line number Diff line change 1
1
package com.github.oldmegit.goframeidea.listener
2
2
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
5
5
import com.goide.GoFileType
6
6
import com.intellij.openapi.project.Project
7
7
import com.intellij.openapi.vfs.newvfs.BulkFileListener
Original file line number Diff line number Diff line change 1
1
package com.github.oldmegit.goframeidea.provider
2
2
3
- import com.github.oldmegit.goframeidea.goFrame .Gf
3
+ import com.github.oldmegit.goframeidea.gf .Gf
4
4
import com.goide.psi.GoAnonymousFieldDefinition
5
5
import com.goide.psi.GoFieldDefinition
6
6
import com.goide.psi.GoStructType
Original file line number Diff line number Diff line change 1
1
package com.github.oldmegit.goframeidea.provider
2
2
3
- import com.github.oldmegit.goframeidea.goFrame .GfGoMod
3
+ import com.github.oldmegit.goframeidea.gf .GfGoMod
4
4
import com.intellij.codeInsight.completion.CompletionParameters
5
5
import com.intellij.codeInsight.completion.CompletionProvider
6
6
import com.intellij.codeInsight.completion.CompletionResultSet
You can’t perform that action at this time.
0 commit comments