-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit d86d3b2
Showing
62 changed files
with
9,345 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
## Intellij | ||
.idea/**/workspace.xml | ||
.idea/**/tasks.xml | ||
.idea/**/encodings.xml | ||
.idea/**/compiler.xml | ||
.idea/**/misc.xml | ||
.idea/**/modules.xml | ||
.idea/**/vcs.xml | ||
|
||
## VSCode | ||
.vscode/ | ||
|
||
## File-based project format: | ||
*.iws | ||
*.iml | ||
.idea/ | ||
|
||
# Binaries for programs and plugins | ||
*.exe | ||
*.exe~ | ||
*.dll | ||
*.so | ||
*.dylib | ||
*.dat | ||
*.DS_Store | ||
|
||
# Test binary, built with `go test -c` | ||
*.test | ||
|
||
# Output of the go coverage tool, specifically when used with LiteIDE | ||
*.out | ||
|
||
# Goreleaser builds | ||
**/dist/** | ||
|
||
# This is my wip ideas folder | ||
experiments/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# This is an example goreleaser.yaml file with some sane defaults. | ||
# Make sure to check the documentation at http://goreleaser.com | ||
# Run locally with: goreleaser --rm-dist --snapshot --skip-publish | ||
project_name: g2d | ||
before: | ||
hooks: | ||
- go mod tidy | ||
- go mod download | ||
builds: | ||
- binary: '{{ .ProjectName }}' | ||
main: ./main.go | ||
env: | ||
- CGO_ENABLED=0 | ||
ldflags: | ||
- -s -w -X main.Version={{.Version}} -X main.GitCommit={{.Commit}} | ||
- -a -extldflags "-static" | ||
goos: | ||
- windows | ||
- linux | ||
- darwin | ||
goarch: | ||
- amd64 | ||
archives: | ||
- replacements: | ||
darwin: macOS | ||
windows: win | ||
amd64: 64-bit | ||
checksum: | ||
name_template: 'checksums.txt' | ||
snapshot: | ||
name_template: "{{ .ProjectName }}_{{ .Tag }}" | ||
nfpms: | ||
- | ||
package_name: g2d | ||
vendor: Luca Sepe | ||
homepage: https://lucasepe.it/ | ||
maintainer: Luca Sepe <[email protected]> | ||
description: g2D Programming Language - Create beatiful drawings using an adhoc interpreted language. | ||
license: MIT | ||
replacements: | ||
amd64: 64-bit | ||
formats: | ||
- deb | ||
- rpm | ||
changelog: | ||
sort: asc | ||
filters: | ||
exclude: | ||
- '^docs:' | ||
- '^test:' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
## 0.5.0 (Unreleased) | ||
|
Oops, something went wrong.