File tree Expand file tree Collapse file tree 3 files changed +14
-5
lines changed Expand file tree Collapse file tree 3 files changed +14
-5
lines changed Original file line number Diff line number Diff line change 5
5
name : lint
6
6
runs-on : ubuntu-latest
7
7
steps :
8
+ - name : Set up Go
9
+ uses : actions/setup-go@v3
10
+ with :
11
+ go-version : ' 1.17.8'
12
+ check-latest : false
8
13
- uses : actions/checkout@v2
9
14
- name : golangci-lint
10
- uses : golangci/golangci-lint-action@v3.2.0
15
+ uses : golangci/golangci-lint-action@v3
11
16
with :
12
- version : v1.44.0
17
+ version : v1.44.2
Original file line number Diff line number Diff line change @@ -17,6 +17,8 @@ type Context struct {
17
17
18
18
// CreateContext produces a new internal state scope.
19
19
// Passing nil for the fontAtlas creates a default font.
20
+ //
21
+ // Deprecated: Unmaintained wrapper. Use an alternative; see README of https://github.com/inkyblackness/imgui-go .
20
22
func CreateContext (fontAtlas * FontAtlas ) * Context {
21
23
var fontAtlasPtr C.IggFontAtlas
22
24
if fontAtlas != nil {
Original file line number Diff line number Diff line change 4
4
[ ![ Go Report Card] ( https://goreportcard.com/badge/github.com/inkyblackness/imgui-go )] ( https://goreportcard.com/report/github.com/inkyblackness/imgui-go )
5
5
[ ![ Lint Status] ( https://github.com/inkyblackness/imgui-go/workflows/golangci-lint/badge.svg )] ( https://github.com/inkyblackness/imgui-go/actions )
6
6
7
- ## Sunsetting announcement
8
- ** This wrapper is about to be discontinued. Please consider using https://github.com/AllenDang/cimgui-go instead.
7
+ ## Discontinued
8
+ ** This repository is no longer maintained as per 2022-12-31.
9
+ Please consider using https://github.com/AllenDang/cimgui-go instead.
9
10
That project is an auto-generated wrapper and makes it easier to be at the latest version of * Dear ImGui* .**
10
11
11
- ** This repository here, along with the examples, is planned to become read-only on 2022-12-31.**
12
+ ** You may also have a look at this fork https://github.com/eliasdaler/imgui-go , the owner intended to
13
+ continue to support it.**
12
14
13
15
---
14
16
You can’t perform that action at this time.
0 commit comments