Skip to content

Commit 552721d

Browse files
committed
v1.0.0-alpha
1 parent 4489a10 commit 552721d

File tree

13 files changed

+737
-13
lines changed

13 files changed

+737
-13
lines changed

.github/workflows/release.yaml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
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 }}

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,11 @@
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

LICENSE

Lines changed: 674 additions & 0 deletions
Large diffs are not rendered by default.

src/main/kotlin/com/github/oldmegit/goframeidea/goFrame/Gf.kt renamed to src/main/kotlin/com/github/oldmegit/goframeidea/gf/Gf.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.github.oldmegit.goframeidea.goFrame
1+
package com.github.oldmegit.goframeidea.gf
22

33
import com.github.oldmegit.goframeidea.ui.AppSettingsState
44
import com.intellij.openapi.project.Project

src/main/kotlin/com/github/oldmegit/goframeidea/goFrame/GfGoMod.kt renamed to src/main/kotlin/com/github/oldmegit/goframeidea/gf/GfGoMod.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.github.oldmegit.goframeidea.goFrame
1+
package com.github.oldmegit.goframeidea.gf
22

33
import com.github.oldmegit.goframeidea.data.Cache
44
import com.intellij.openapi.project.Project

src/main/kotlin/com/github/oldmegit/goframeidea/goFrame/OrmCallables.kt renamed to src/main/kotlin/com/github/oldmegit/goframeidea/gf/OrmCallables.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.github.oldmegit.goframeidea.goFrame
1+
package com.github.oldmegit.goframeidea.gf
22

33
import com.goide.inspections.core.GoCallableDescriptorSet
44
import com.goide.inspections.core.GoMethodDescriptor

src/main/kotlin/com/github/oldmegit/goframeidea/goFrame/OrmUtil.kt renamed to src/main/kotlin/com/github/oldmegit/goframeidea/gf/OrmUtil.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.github.oldmegit.goframeidea.goFrame
1+
package com.github.oldmegit.goframeidea.gf
22

33
import com.goide.psi.*
44
import com.goide.psi.impl.GoPsiUtil

src/main/kotlin/com/github/oldmegit/goframeidea/listener/Listener.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package 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
55
import com.goide.GoFileType
66
import com.intellij.openapi.project.Project
77
import com.intellij.openapi.vfs.newvfs.BulkFileListener

src/main/kotlin/com/github/oldmegit/goframeidea/provider/ApiTagProvider.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package com.github.oldmegit.goframeidea.provider
22

3-
import com.github.oldmegit.goframeidea.goFrame.Gf
3+
import com.github.oldmegit.goframeidea.gf.Gf
44
import com.goide.psi.GoAnonymousFieldDefinition
55
import com.goide.psi.GoFieldDefinition
66
import com.goide.psi.GoStructType

src/main/kotlin/com/github/oldmegit/goframeidea/provider/GfProvider.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package com.github.oldmegit.goframeidea.provider
22

3-
import com.github.oldmegit.goframeidea.goFrame.GfGoMod
3+
import com.github.oldmegit.goframeidea.gf.GfGoMod
44
import com.intellij.codeInsight.completion.CompletionParameters
55
import com.intellij.codeInsight.completion.CompletionProvider
66
import com.intellij.codeInsight.completion.CompletionResultSet

0 commit comments

Comments
 (0)