Skip to content

Commit 6bc27bb

Browse files
authored
Merge pull request inkyblackness#193 from inkyblackness/discontinuation
Add discontinuation notices
2 parents d55c0f4 + aa831a2 commit 6bc27bb

File tree

3 files changed

+14
-5
lines changed

3 files changed

+14
-5
lines changed

.github/workflows/golangci-lint.yaml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,13 @@ jobs:
55
name: lint
66
runs-on: ubuntu-latest
77
steps:
8+
- name: Set up Go
9+
uses: actions/setup-go@v3
10+
with:
11+
go-version: '1.17.8'
12+
check-latest: false
813
- uses: actions/checkout@v2
914
- name: golangci-lint
10-
uses: golangci/golangci-lint-action@v3.2.0
15+
uses: golangci/golangci-lint-action@v3
1116
with:
12-
version: v1.44.0
17+
version: v1.44.2

Context.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ type Context struct {
1717

1818
// CreateContext produces a new internal state scope.
1919
// 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 .
2022
func CreateContext(fontAtlas *FontAtlas) *Context {
2123
var fontAtlasPtr C.IggFontAtlas
2224
if fontAtlas != nil {

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@
44
[![Go Report Card](https://goreportcard.com/badge/github.com/inkyblackness/imgui-go)](https://goreportcard.com/report/github.com/inkyblackness/imgui-go)
55
[![Lint Status](https://github.com/inkyblackness/imgui-go/workflows/golangci-lint/badge.svg)](https://github.com/inkyblackness/imgui-go/actions)
66

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.
910
That project is an auto-generated wrapper and makes it easier to be at the latest version of *Dear ImGui*.**
1011

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.**
1214

1315
---
1416

0 commit comments

Comments
 (0)