Skip to content

Commit

Permalink
prepare v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ManuelReschke committed Jan 25, 2023
1 parent 9cec955 commit 5f4b3d8
Show file tree
Hide file tree
Showing 21 changed files with 207 additions and 186 deletions.
2 changes: 1 addition & 1 deletion FyneApp.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ Website = "https://github.com/ManuelReschke/go-pd-gui"
Name = "DRAINY"
ID = "com.gopdgui.app"
Version = "1.1.0"
Build = 59
Build = 66
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@ fmt: ## format the go source files
go fmt ./...
.PHONY: fmt

setup:
curl -sSL https://git.io/g-install | sh -s
sudo g install latest
sudo apt-get -y install gcc libgl1-mesa-dev xorg-dev
go install github.com/fyne-io/fyne-cross@latest
fyne-cross linux --pull
.PHONY: setup

build:
#env GOOS=linux GOARCH=amd64 go build -o bin/linux/go-pd-gui
#env GOOS=windows GOARCH=amd64 CGO_ENABLED=1 go build -o bin/windows/go-pd-gui.exe
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
# Go-PD-GUI -DRAINY
A free easy to use cross plattform upload tool for pixeldrain.com.
* Windows x32/x64
* Linux x64
* Android APK ARM / ARM64

![Go-PD-GUI-DRAINY](assets/go-pd-gui-icon.png)

## Preview
![Go-PD](assets/go-pd-gui-example-upload.gif)
![Go-PD](assets/go-pd-gui-preview.gif)

## Download binaries
Binaries for Windows, Linux and Android are available under the /fyne-cross folder.
Expand Down
Binary file removed assets/go-pd-gui-example-upload.gif
Binary file not shown.
Binary file added assets/go-pd-gui-preview.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 19 additions & 0 deletions docker-experiment/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
FROM golang:1.19

RUN apt-get update && apt-get -y upgrade
RUN apt-get -y install gcc
RUN apt-get -y install libgl1-mesa-dev
RUN apt-get -y install xorg-dev

#COPY . /go/src/app

ADD . /usr/src/app

WORKDIR /usr/src/app

RUN go mod download && go mod verify

#RUN fyne-cross linux
#RUN go build -o main .

#CMD ["./main"]
12 changes: 12 additions & 0 deletions docker-experiment/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
version: "3.8"
services:
go-app:
container_name: "go-app"
build:
context: .
dockerfile: ./docker/go/Dockerfile
volumes:
- .:/go/src/app
working_dir: /go/src/app
ports:
- "8881:8881"
Loading

0 comments on commit 5f4b3d8

Please sign in to comment.