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 #20 from inkyblackness/discontinuation
Browse files Browse the repository at this point in the history
Discontinuation
  • Loading branch information
dertseha authored Dec 31, 2022
2 parents bcadf4e + c49c217 commit c0f92f1
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 6 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/golangci-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,14 @@ jobs:
sudo apt-get update
sudo apt-get install -y mesa-utils mesa-common-dev libsdl2-dev libglfw3-dev
- name: golangci-lint
uses: golangci/golangci-lint-action@v3.2.0
- name: Set up Go
uses: actions/setup-go@v3
with:
version: v1.28.3
go-version: '1.17.8'
check-latest: false
# Disabled because a "clean" build was not in store for archiving this repository.
# Still, keeping the action "alive" as a shell, to showcase what would be necessary to build the programs.
# - name: golangci-lint
# uses: golangci/golangci-lint-action@v3
# with:
# version: v1.44.2
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
[![Go Report Card](https://goreportcard.com/badge/github.com/inkyblackness/imgui-go-examples)](https://goreportcard.com/report/github.com/inkyblackness/imgui-go-examples)
[![Lint Status](https://github.com/inkyblackness/imgui-go-examples/workflows/golangci-lint/badge.svg)](https://github.com/inkyblackness/imgui-go-examples/actions)

## Discontinued
**This repository is no longer maintained as per 2022-12-31.
Please refer to the README of the main repository for details and alternatives: https://github.com/inkyblackness/imgui-go .**

--

This project contains a set of [Go](https://www.golang.org) examples for [imgui-go](https://github.com/inkyblackness/imgui-go), which is a wrapper for [**Dear ImGui**](https://github.com/ocornut/imgui).

It provides reference implementations on how to use and integrate **Dear ImGui** in Go.
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/inkyblackness/imgui-go-examples
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/go-gl/glfw v0.0.0-20210727001814-0db043d8d5be
github.com/inkyblackness/imgui-go/v4 v4.5.0
github.com/inkyblackness/imgui-go/v4 v4.7.0
github.com/veandco/go-sdl2 v0.4.10
)

Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/go-gl/glfw v0.0.0-20210727001814-0db043d8d5be h1:UVW91pfMB1GRQfVwC7//RGVbqX6Ea8jURmJhlANak1M=
github.com/go-gl/glfw v0.0.0-20210727001814-0db043d8d5be/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU=
github.com/inkyblackness/imgui-go/v4 v4.5.0 h1:iUon7q0Hr0c0/Gc2V6bTP7Anu9WH7H26dI7JkPBmMEA=
github.com/inkyblackness/imgui-go/v4 v4.5.0/go.mod h1:g8SAGtOYUP7rYaOB2AsVKCEHmPMDmJKgt4z6d+flhb0=
github.com/inkyblackness/imgui-go/v4 v4.7.0 h1:Gc169uXvSydsr/gjw3p1cmHCI1XIpqX7I3KBmfeMMOo=
github.com/inkyblackness/imgui-go/v4 v4.7.0/go.mod h1:g8SAGtOYUP7rYaOB2AsVKCEHmPMDmJKgt4z6d+flhb0=
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
Expand Down

0 comments on commit c0f92f1

Please sign in to comment.