Skip to content
This repository has been archived by the owner on Dec 31, 2022. It is now read-only.

Commit

Permalink
Merge pull request #193 from inkyblackness/discontinuation
Browse files Browse the repository at this point in the history
Add discontinuation notices
  • Loading branch information
dertseha authored Dec 31, 2022
2 parents d55c0f4 + aa831a2 commit 6bc27bb
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/golangci-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,13 @@ jobs:
name: lint
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '1.17.8'
check-latest: false
- uses: actions/checkout@v2
- name: golangci-lint
uses: golangci/golangci-lint-action@v3.2.0
uses: golangci/golangci-lint-action@v3
with:
version: v1.44.0
version: v1.44.2
2 changes: 2 additions & 0 deletions Context.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ type Context struct {

// CreateContext produces a new internal state scope.
// Passing nil for the fontAtlas creates a default font.
//
// Deprecated: Unmaintained wrapper. Use an alternative; see README of https://github.com/inkyblackness/imgui-go .
func CreateContext(fontAtlas *FontAtlas) *Context {
var fontAtlasPtr C.IggFontAtlas
if fontAtlas != nil {
Expand Down
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@
[![Go Report Card](https://goreportcard.com/badge/github.com/inkyblackness/imgui-go)](https://goreportcard.com/report/github.com/inkyblackness/imgui-go)
[![Lint Status](https://github.com/inkyblackness/imgui-go/workflows/golangci-lint/badge.svg)](https://github.com/inkyblackness/imgui-go/actions)

## Sunsetting announcement
**This wrapper is about to be discontinued. Please consider using https://github.com/AllenDang/cimgui-go instead.
## Discontinued
**This repository is no longer maintained as per 2022-12-31.
Please consider using https://github.com/AllenDang/cimgui-go instead.
That project is an auto-generated wrapper and makes it easier to be at the latest version of *Dear ImGui*.**

**This repository here, along with the examples, is planned to become read-only on 2022-12-31.**
**You may also have a look at this fork https://github.com/eliasdaler/imgui-go , the owner intended to
continue to support it.**

---

Expand Down

0 comments on commit 6bc27bb

Please sign in to comment.