Compare commits
1 Commits
linux-dial
...
angular-fi
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
288feee1d9 |
12
.github/FUNDING.yml
vendored
@@ -1,12 +0,0 @@
|
|||||||
# These are supported funding model platforms
|
|
||||||
|
|
||||||
github: [ leaanthony ]
|
|
||||||
patreon: # Replace with a single Patreon username
|
|
||||||
open_collective: # Replace with a single Open Collective username
|
|
||||||
ko_fi: # Replace with a single Ko-fi username
|
|
||||||
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
|
|
||||||
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
|
|
||||||
liberapay: # Replace with a single Liberapay username
|
|
||||||
issuehunt: # Replace with a single IssueHunt username
|
|
||||||
otechie: # Replace with a single Otechie username
|
|
||||||
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
|
|
||||||
10
.github/ISSUE_TEMPLATE/bug_report.md
vendored
@@ -8,12 +8,8 @@ assignees: ''
|
|||||||
---
|
---
|
||||||
|
|
||||||
#####################################################
|
#####################################################
|
||||||
**V1 users: If you have a technical issue, please do not open a bug this way!**
|
If you have a technical issue, please do not open a bug this way!
|
||||||
Please use the `wails issue` command!
|
Please use the `wails issue` command!
|
||||||
If you do not do this then the issue may be closed automatically.
|
|
||||||
|
|
||||||
NOTE: If your bug is related to Windows, make sure you read
|
|
||||||
the [Windows Developer Guide](https://wails.app/guides/windows/)
|
|
||||||
#####################################################
|
#####################################################
|
||||||
|
|
||||||
**Description**
|
**Description**
|
||||||
@@ -33,9 +29,7 @@ A clear and concise description of what you expected to happen.
|
|||||||
If applicable, add screenshots to help explain your problem.
|
If applicable, add screenshots to help explain your problem.
|
||||||
|
|
||||||
**System Details**
|
**System Details**
|
||||||
V2 users: Please add the output of `wails doctor`.
|
Please provide your platform, GO version and variables, etc
|
||||||
|
|
||||||
**Additional context**
|
**Additional context**
|
||||||
Add any other context about the problem here.
|
Add any other context about the problem here.
|
||||||
|
|
||||||
- [ ] This issue is for Windows and I have read the [Windows Developer Guide](https://wails.app/guides/windows/)
|
|
||||||
|
|||||||
20
.github/ISSUE_TEMPLATE/feature_request.md
vendored
@@ -1,20 +0,0 @@
|
|||||||
---
|
|
||||||
name: Feature request
|
|
||||||
about: Suggest an idea for this project
|
|
||||||
title: ''
|
|
||||||
labels: enhancement
|
|
||||||
assignees: ''
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
**Is your feature request related to a problem? Please describe.**
|
|
||||||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
|
||||||
|
|
||||||
**Describe the solution you'd like**
|
|
||||||
A clear and concise description of what you want to happen.
|
|
||||||
|
|
||||||
**Describe alternatives you've considered**
|
|
||||||
A clear and concise description of any alternative solutions or features you've considered.
|
|
||||||
|
|
||||||
**Additional context**
|
|
||||||
Add any other context or screenshots about the feature request here.
|
|
||||||
@@ -1,35 +0,0 @@
|
|||||||
name: Deploy mirror | 部署镜像
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches: [master]
|
|
||||||
# pull_request:
|
|
||||||
# branches: [ main ]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build-and-deploy:
|
|
||||||
name: Automatic deployment | 自动部署
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
if: github.repository == 'misitebao/wails'
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Checkout | 切换到部署分支
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
with:
|
|
||||||
ref: "master"
|
|
||||||
submodules: true
|
|
||||||
fetch-depth: 0
|
|
||||||
|
|
||||||
- name: Build Site | 构建网站
|
|
||||||
run: |
|
|
||||||
cd website &&
|
|
||||||
npm install && npm run build
|
|
||||||
|
|
||||||
- name: Deploy to Server | 部署到服务器
|
|
||||||
uses: hengkx/ssh-deploy@v1.0.1
|
|
||||||
with:
|
|
||||||
HOST: ${{ secrets.DEPLOY_HOST }}
|
|
||||||
USERNAME: ${{ secrets.DEPLOY_HOST_USER }}
|
|
||||||
PASSWORD: ${{ secrets.DEPLOY_HOST_PASSWORD }}
|
|
||||||
SOURCE: "website/build"
|
|
||||||
TARGET: "/www/wwwroot/wails.top"
|
|
||||||
34
.github/workflows/latest-pre.yml
vendored
@@ -1,34 +0,0 @@
|
|||||||
name: latest pre-release
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- develop
|
|
||||||
tags:
|
|
||||||
- '**-pre**'
|
|
||||||
jobs:
|
|
||||||
|
|
||||||
build:
|
|
||||||
name: Test Build Latest Pre-Release
|
|
||||||
runs-on: ${{ matrix.os }}
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
os: [ubuntu-latest, windows-latest, macOS-latest]
|
|
||||||
steps:
|
|
||||||
|
|
||||||
- name: Set up Go 1.16
|
|
||||||
uses: actions/setup-go@v1
|
|
||||||
with:
|
|
||||||
go-version: 1.16
|
|
||||||
id: go
|
|
||||||
|
|
||||||
- name: Check out code into the Go module directory
|
|
||||||
uses: actions/checkout@v1
|
|
||||||
|
|
||||||
- name: Get dependencies
|
|
||||||
run: |
|
|
||||||
go get -v -d ./...
|
|
||||||
- name: Build
|
|
||||||
run: go build -v ./cmd/wails
|
|
||||||
|
|
||||||
- name: Test
|
|
||||||
run: ./wails version
|
|
||||||
32
.github/workflows/pr.yml
vendored
@@ -1,32 +0,0 @@
|
|||||||
name: pr
|
|
||||||
on:
|
|
||||||
pull_request:
|
|
||||||
branches:
|
|
||||||
- develop
|
|
||||||
jobs:
|
|
||||||
|
|
||||||
build:
|
|
||||||
name: Test Build PR
|
|
||||||
runs-on: ${{ matrix.os }}
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
os: [ubuntu-latest, windows-latest, macOS-latest]
|
|
||||||
steps:
|
|
||||||
|
|
||||||
- name: Set up Go 1.16
|
|
||||||
uses: actions/setup-go@v1
|
|
||||||
with:
|
|
||||||
go-version: 1.16
|
|
||||||
id: go
|
|
||||||
|
|
||||||
- name: Check out code into the Go module directory
|
|
||||||
uses: actions/checkout@v1
|
|
||||||
|
|
||||||
- name: Get dependencies
|
|
||||||
run: |
|
|
||||||
go get -v -d ./...
|
|
||||||
- name: Build
|
|
||||||
run: go build -v ./cmd/wails
|
|
||||||
|
|
||||||
- name: Test
|
|
||||||
run: ./wails version
|
|
||||||
34
.github/workflows/release.yml
vendored
@@ -1,34 +0,0 @@
|
|||||||
name: release
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
tags:
|
|
||||||
- '!**pre**'
|
|
||||||
jobs:
|
|
||||||
|
|
||||||
build:
|
|
||||||
name: Test Build Latest Release
|
|
||||||
runs-on: ${{ matrix.os }}
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
os: [ubuntu-latest, windows-latest, macOS-latest]
|
|
||||||
steps:
|
|
||||||
|
|
||||||
- name: Set up Go 1.16
|
|
||||||
uses: actions/setup-go@v1
|
|
||||||
with:
|
|
||||||
go-version: 1.16
|
|
||||||
id: go
|
|
||||||
|
|
||||||
- name: Check out code into the Go module directory
|
|
||||||
uses: actions/checkout@v1
|
|
||||||
|
|
||||||
- name: Get dependencies
|
|
||||||
run: |
|
|
||||||
go get -v -d ./...
|
|
||||||
- name: Build
|
|
||||||
run: go build -v ./cmd/wails
|
|
||||||
|
|
||||||
- name: Test
|
|
||||||
run: ./wails version
|
|
||||||
29
.github/workflows/runtime.yml
vendored
@@ -1,29 +0,0 @@
|
|||||||
name: Runtime
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- v2-alpha
|
|
||||||
paths:
|
|
||||||
- 'v2/internal/frontend/runtime/**'
|
|
||||||
jobs:
|
|
||||||
rebuild-runtime:
|
|
||||||
name: Rebuild the runtime
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
- uses: actions/setup-node@v2
|
|
||||||
with:
|
|
||||||
node-version: 14.17.6
|
|
||||||
cache: 'npm'
|
|
||||||
cache-dependency-path: v2/internal/frontend/runtime/package-lock.json
|
|
||||||
- run: npm install
|
|
||||||
working-directory: v2/internal/frontend/runtime
|
|
||||||
- run: npm run build
|
|
||||||
working-directory: v2/internal/frontend/runtime
|
|
||||||
|
|
||||||
- name: Commit changes
|
|
||||||
uses: devops-infra/action-commit-push@master
|
|
||||||
with:
|
|
||||||
github_token: "${{ secrets.GITHUB_TOKEN }}"
|
|
||||||
commit_prefix: "[AUTO]"
|
|
||||||
commit_message: "The runtime was rebuilt"
|
|
||||||
14
.gitignore
vendored
@@ -17,17 +17,3 @@ cmd/wails/wails
|
|||||||
.DS_Store
|
.DS_Store
|
||||||
tmp
|
tmp
|
||||||
node_modules/
|
node_modules/
|
||||||
package.json.md5
|
|
||||||
v2/test/**/frontend/dist
|
|
||||||
v2/test/**/build/
|
|
||||||
v2/test/frameless/icon.png
|
|
||||||
v2/test/hidden/icon.png
|
|
||||||
v2/test/kitchensink/frontend/public/bundle.*
|
|
||||||
v2/pkg/parser/testproject/frontend/wails
|
|
||||||
v2/test/kitchensink/frontend/public
|
|
||||||
v2/test/kitchensink/build/darwin/desktop/kitchensink
|
|
||||||
v2/test/kitchensink/frontend/package.json.md5
|
|
||||||
/v2/internal/ffenestri/windows/test/cmake-build-debug/
|
|
||||||
!v2/internal/ffenestri/windows/x64/webview2.dll
|
|
||||||
!v2/internal/ffenestri/windows/x64/WebView2Loader.dll
|
|
||||||
.idea/
|
|
||||||
|
|||||||
6
.vscode/settings.json
vendored
@@ -1,8 +1,4 @@
|
|||||||
{
|
{
|
||||||
"go.formatTool": "goimports",
|
"go.formatTool": "goimports",
|
||||||
"eslint.alwaysShowStatus": true,
|
"eslint.alwaysShowStatus": true
|
||||||
"files.associations": {
|
|
||||||
"__locale": "c",
|
|
||||||
"ios": "c"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -2,47 +2,22 @@
|
|||||||
|
|
||||||
Wails is what it is because of the time and effort given by these great people. A huge thank you to each and every one!
|
Wails is what it is because of the time and effort given by these great people. A huge thank you to each and every one!
|
||||||
|
|
||||||
* [Dustin Krysak](https://wiki.ubuntu.com/bashfulrobot)
|
* [Dustin Krysak](https://wiki.ubuntu.com/bashfulrobot)
|
||||||
* [Qais Patankar](https://github.com/qaisjp)
|
* [Qais Patankar](https://github.com/qaisjp)
|
||||||
* [Anthony Lee](https://github.com/alee792)
|
* [Anthony Lee](https://github.com/alee792)
|
||||||
* [Adrian Lanzafame](https://github.com/lanzafame)
|
* [Adrian Lanzafame](https://github.com/lanzafame)
|
||||||
* [Mattn](https://github.com/mattn)
|
* [Mattn](https://github.com/mattn)
|
||||||
* [0xflotus](https://github.com/0xflotus)
|
* [0xflotus](https://github.com/0xflotus)
|
||||||
* [Michael D Henderson](https://github.com/mdhender)
|
* [Michael D Henderson](https://github.com/mdhender)
|
||||||
* [fred2104](https://github.com/fishfishfish2104)
|
* [fred2104](https://github.com/fishfishfish2104)
|
||||||
* [intelwalk](https://github.com/intelwalk)
|
* [intelwalk](https://github.com/intelwalk)
|
||||||
* [Mark Stenglein](https://github.com/ocelotsloth)
|
* [Mark Stenglein](https://github.com/ocelotsloth)
|
||||||
* [admin_3.exe](https://github.com/bh90210)
|
* [admin_3.exe](https://github.com/bh90210)
|
||||||
* [iceleo-com](https://github.com/iceleo-com)
|
* [iceleo-com](https://github.com/iceleo-com)
|
||||||
* [fallendusk](https://github.com/fallendusk)
|
* [fallendusk](https://github.com/fallendusk)
|
||||||
* [Nikolai Zimmermann](https://github.com/Chronophylos)
|
* [Florian Didran](https://github.com/fdidron)
|
||||||
* [Toyam Cox](https://github.com/Vaelatern)
|
* [Nikolai Zimmermann](https://github.com/Chronophylos)
|
||||||
* [Robin Eklind](https://github.com/mewmew)
|
* [Toyam Cox](https://github.com/Vaelatern)
|
||||||
* [Kris Raney](https://github.com/kraney)
|
* [Robin Eklind](https://github.com/mewmew)
|
||||||
* [Jack Mordaunt](https://github.com/JackMordaunt)
|
* [Kris Raney](https://github.com/kraney)
|
||||||
* [Michael Hipp](https://github.com/MichaelHipp)
|
* [Jack Mordaunt](https://github.com/JackMordaunt)
|
||||||
* [Travis McLane](https://github.com/tmclane)
|
|
||||||
* [Reuben Thomas-Davis](https://github.com/Rested)
|
|
||||||
* [Jarek](https://github.com/Jarek-SRT)
|
|
||||||
* [Konez2k](https://github.com/konez2k)
|
|
||||||
* [msms](https://github.com/sayuthisobri)
|
|
||||||
* [dedo1911](https://github.com/dedo1911)
|
|
||||||
* [Florian Didron](https://github.com/fdidron)
|
|
||||||
* [Christopher Murphy](https://github.com/Splode)
|
|
||||||
* [Zámbó, Levente](https://github.com/Lyimmi)
|
|
||||||
* [artem](https://github.com/Unix4ever)
|
|
||||||
* [Tim Kipp](https://github.com/timkippdev)
|
|
||||||
* [Dmitry Gomzyakov](https://github.com/kyoto44)
|
|
||||||
* [Arthur Wiebe](https://github.com/artooro)
|
|
||||||
* [Ilgıt Yıldırım](https://github.com/ilgityildirim)
|
|
||||||
* [Altynbek](https://github.com/gelleson)
|
|
||||||
* [Kyle](https://github.com/kmuchmore)
|
|
||||||
* [Balakrishna Prasad Ganne](https://github.com/aayush420)
|
|
||||||
* [Charaf Rezrazi](https://github.com/Rezrazi)
|
|
||||||
* [misitebao](https://github.com/misitebao)
|
|
||||||
* [Elie Grenon](https://github.com/DrunkenPoney)
|
|
||||||
* [SophieAu](https://github.com/SophieAu)
|
|
||||||
* [Alexander Matviychuk](https://github.com/alexmat)
|
|
||||||
* [RH12503](https://github.com/RH12503)
|
|
||||||
* [hi019](https://github.com/hi019)
|
|
||||||
* [Igor Minen](https://github.com/Igogrek)
|
|
||||||
|
|||||||
381
README.md
@@ -1,96 +1,24 @@
|
|||||||
<p align="center" style="text-align: center">
|
<p align="center" style="text-align: center">
|
||||||
<img src="logo.png" width="55%"><br/>
|
<img src="https://github.com/wailsapp/docs/raw/master/.vuepress/public/media/logo_cropped.png" width="40%"><br/>
|
||||||
</p>
|
</p>
|
||||||
<p align="center">
|
<p align="center">
|
||||||
Build desktop applications using Go & Web Technologies.<br/><br/>
|
A framework for building desktop applications using Go & Web Technologies.<br/><br/>
|
||||||
<a href="https://github.com/wailsapp/wails/blob/master/LICENSE">
|
<a href="https://github.com/wailsapp/wails/blob/master/LICENSE"><img src="https://img.shields.io/badge/License-MIT-blue.svg"></a>
|
||||||
<img src="https://img.shields.io/badge/License-MIT-blue.svg">
|
<a href="https://goreportcard.com/report/github.com/wailsapp/wails"><img src="https://goreportcard.com/badge/github.com/wailsapp/wails"/></a>
|
||||||
</a>
|
<a href="http://godoc.org/github.com/wailsapp/wails"><img src="https://img.shields.io/badge/godoc-reference-blue.svg"/></a>
|
||||||
<a href="https://goreportcard.com/report/github.com/wailsapp/wails">
|
<a href="https://www.codefactor.io/repository/github/wailsapp/wails"><img src="https://www.codefactor.io/repository/github/wailsapp/wails/badge" alt="CodeFactor" /></a>
|
||||||
<img src="https://goreportcard.com/badge/github.com/wailsapp/wails"/>
|
<a href="https://github.com/wailsapp/wails/issues"><img src="https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat" alt="CodeFactor" /></a>
|
||||||
</a>
|
<a href="https://app.fossa.io/projects/git%2Bgithub.com%2Fwailsapp%2Fwails?ref=badge_shield" alt="FOSSA Status"><img src="https://app.fossa.io/api/projects/git%2Bgithub.com%2Fwailsapp%2Fwails.svg?type=shield"/></a>
|
||||||
<a href="http://godoc.org/github.com/wailsapp/wails">
|
<a href="https://houndci.com"><img src="https://img.shields.io/badge/Reviewed_by-Hound-8E64B0.svg"/></a>
|
||||||
<img src="https://img.shields.io/badge/godoc-reference-blue.svg"/>
|
<a href="https://github.com/avelino/awesome-go" rel="nofollow"><img src="https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg" alt="Awesome"></a>
|
||||||
</a>
|
<a href="https://dev.azure.com/leaanthony/Wails/_build/latest?definitionId=1&branchName=master" rel="nofollow"><img src="https://dev.azure.com/leaanthony/Wails/_apis/build/status/wailsapp.wails?branchName=master" alt="Pipelines"></a>
|
||||||
<a href="https://www.codefactor.io/repository/github/wailsapp/wails">
|
|
||||||
<img src="https://www.codefactor.io/repository/github/wailsapp/wails/badge" alt="CodeFactor" />
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/wailsapp/wails/issues">
|
|
||||||
<img src="https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat" alt="CodeFactor" />
|
|
||||||
</a>
|
|
||||||
<a href="https://app.fossa.io/projects/git%2Bgithub.com%2Fwailsapp%2Fwails?ref=badge_shield" alt="FOSSA Status">
|
|
||||||
<img src="https://app.fossa.io/api/projects/git%2Bgithub.com%2Fwailsapp%2Fwails.svg?type=shield"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://houndci.com">
|
|
||||||
<img src="https://img.shields.io/badge/Reviewed_by-Hound-8E64B0.svg"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/avelino/awesome-go" rel="nofollow">
|
|
||||||
<img src="https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg" alt="Awesome"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/wailsapp/wails/workflows/release/badge.svg?branch=master" rel="nofollow">
|
|
||||||
<img src="https://github.com/wailsapp/wails/workflows/release/badge.svg?branch=master" alt="Release Pipelines"/>
|
|
||||||
</a>
|
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<span id="nav-1"></span>
|
The traditional method of providing web interfaces to Go programs is via a built-in web server. Wails offers a different approach: it provides the ability to wrap both Go code and a web frontend into a single binary. Tools are provided to make this easy for you by handling project creation, compilation and bundling. All you have to do is get creative!
|
||||||
|
|
||||||
## Internationalization
|
|
||||||
|
|
||||||
[English](README.md) | [简体中文](README.zh-Hans.md)
|
|
||||||
|
|
||||||
<span id="nav-2"></span>
|
|
||||||
|
|
||||||
## Table of Contents
|
|
||||||
|
|
||||||
<details>
|
|
||||||
<summary>Click me to Open/Close the directory listing</summary>
|
|
||||||
|
|
||||||
- [1. Internationalization](#nav-1)
|
|
||||||
- [2. Table of Contents](#nav-2)
|
|
||||||
- [3. Introduction](#nav-3)
|
|
||||||
- [3.1 Official Website](#nav-3-1)
|
|
||||||
- [4. Features](#nav-4)
|
|
||||||
- [5. Sponsors](#nav-5)
|
|
||||||
- [6. Installation](#nav-6)
|
|
||||||
- [6.1 MacOS](#nav-6-1)
|
|
||||||
- [6.2 Linux](#nav-6-2)
|
|
||||||
- [6.2.1 Debian/Ubuntu](#nav-6-2-1)
|
|
||||||
- [6.2.2 Arch Linux / ArchLabs / Ctlos Linux](#nav-6-2-2)
|
|
||||||
- [6.2.3 Centos](#nav-6-2-3)
|
|
||||||
- [6.2.4 Fedora](#nav-6-2-4)
|
|
||||||
- [6.2.5 VoidLinux & VoidLinux-musl](#nav-6-2-5)
|
|
||||||
- [6.2.6 Gentoo](#nav-6-2-6)
|
|
||||||
- [6.3 Windows](#nav-6-3)
|
|
||||||
- [7. Usage](#nav-7)
|
|
||||||
- [7.1 Next Steps](#nav-7-1)
|
|
||||||
- [8. FAQ](#nav-8)
|
|
||||||
- [9. Contributors](#nav-9)
|
|
||||||
- [10. Special Mentions](#nav-10)
|
|
||||||
- [12. Special Thanks](#nav-11)
|
|
||||||
|
|
||||||
</details>
|
|
||||||
|
|
||||||
<span id="nav-3"></span>
|
|
||||||
|
|
||||||
## Introductions
|
|
||||||
|
|
||||||
The traditional method of providing web interfaces to Go programs is via a built-in web server. Wails offers a different
|
|
||||||
approach: it provides the ability to wrap both Go code and a web frontend into a single binary. Tools are provided to
|
|
||||||
make this easy for you by handling project creation, compilation and bundling. All you have to do is get creative!
|
|
||||||
|
|
||||||
<span id="nav-3-1"></span>
|
|
||||||
|
|
||||||
### Official Website
|
|
||||||
|
|
||||||
The official docs can be found at [https://wails.app](https://wails.app).
|
|
||||||
|
|
||||||
Click [here](https://wails.io) if you are interested in trying out v2 Beta for Windows.
|
|
||||||
|
|
||||||
<span id="nav-4"></span>
|
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
- Use standard Go for the backend
|
- Use standard Go libraries/frameworks for the backend
|
||||||
- Use any frontend technology to build your UI
|
- Use any frontend technology to build your UI
|
||||||
- Quickly create Vue, Vuetify or React frontends for your Go programs
|
- Quickly create Vue, Vuetify or React frontends for your Go programs
|
||||||
- Expose Go methods/functions to the frontend via a single bind command
|
- Expose Go methods/functions to the frontend via a single bind command
|
||||||
@@ -100,135 +28,25 @@ Click [here](https://wails.io) if you are interested in trying out v2 Beta for W
|
|||||||
- Powerful cli tool
|
- Powerful cli tool
|
||||||
- Multiplatform
|
- Multiplatform
|
||||||
|
|
||||||
<span id="nav-5"></span>
|
## Project Status
|
||||||
|
|
||||||
## Sponsors
|
Wails is currently in Beta. Please make sure you read the [Project Status](https://wails.app/project_status.html) if you are interested in using this project.
|
||||||
|
|
||||||
This project is supported by these kind people / companies:
|
|
||||||
|
|
||||||
<p align="center">
|
|
||||||
<a href="https://www.easywebadv.it/" style="width:150px;">
|
|
||||||
<img src="website/static/img/easyweb.png" width="150"/>
|
|
||||||
</a>
|
|
||||||
</p>
|
|
||||||
<br/>
|
|
||||||
<br/>
|
|
||||||
<a href="https://github.com/sponsors/leaanthony" style="width:100px;">
|
|
||||||
<img src="sponsors/silver%20sponsor.png" width="100"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/letheanVPN" style="width:100px;">
|
|
||||||
<img src="https://github.com/letheanVPN.png?size=100" width="100"/>
|
|
||||||
</a>
|
|
||||||
<br/>
|
|
||||||
<br/>
|
|
||||||
<a href="https://github.com/sponsors/leaanthony" style="width:100px;">
|
|
||||||
<img src="sponsors/bronze%20sponsor.png" width="100"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/snider" style="width:100px;">
|
|
||||||
<img src="https://github.com/snider.png?size=100" width="100"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/codydbentley" style="width:100px">
|
|
||||||
<img src="https://github.com/codydbentley.png?size=100" width="100"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/CrackDavid" style="width:100px">
|
|
||||||
<img src="https://github.com/CrackDavid.png?size=100" width="100"/>
|
|
||||||
</a>
|
|
||||||
<br/>
|
|
||||||
<br/>
|
|
||||||
<a href="https://github.com/matryer" style="width:100px">
|
|
||||||
<img src="https://github.com/matryer.png" width="100"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://www.jetbrains.com?from=Wails" style="width:100px">
|
|
||||||
<img src="/assets/images/jetbrains-grayscale.png" width="100"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/tc-hib" style="width:55px">
|
|
||||||
<img src="https://github.com/tc-hib.png?size=55" width="55"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/picatz" style="width:50px">
|
|
||||||
<img src="https://github.com/picatz.png?size=50" width="50"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/tylertravisty" style="width:50px">
|
|
||||||
<img src="https://github.com/tylertravisty.png?size=50" width="50"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/akhudek" style="width:50px">
|
|
||||||
<img src="https://github.com/akhudek.png?size=50" width="50"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/trea" style="width:50px">
|
|
||||||
<img src="https://github.com/trea.png?size=50" width="50"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/LanguageAgnostic" style="width:55px">
|
|
||||||
<img src="https://github.com/LanguageAgnostic.png?size=55" width="55"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/fcjr" style="width:55px">
|
|
||||||
<img src="https://github.com/fcjr.png?size=55" width="55"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/nickarellano" style="width:60px">
|
|
||||||
<img src="https://github.com/nickarellano.png?size=60" width="60"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/bglw" style="width:65px">
|
|
||||||
<img src="https://github.com/bglw.png?size=65" width="65"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/jugglingjsons" style="width:50px">
|
|
||||||
<img src="https://github.com/jugglingjsons.png?size=50" width="50"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/marcus-crane" style="width:65px">
|
|
||||||
<img src="https://github.com/marcus-crane.png?size=65" width="65"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/bbergshaven" style="width:45px">
|
|
||||||
<img src="https://github.com/bbergshaven.png?size=45" width="45"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/Gilgames000" style="width:45px">
|
|
||||||
<img src="https://github.com/Gilgames000.png?size=45" width="45"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/ilgityildirim" style="width:50px">
|
|
||||||
<img src="https://github.com/ilgityildirim.png?size=50" width="50"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/questrail" style="width:50px">
|
|
||||||
<img src="https://github.com/questrail.png?size=50" width="50"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/DonTomato" style="width:45px">
|
|
||||||
<img src="https://github.com/DonTomato.png?size=45" width="45"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/taigrr" style="width:45px">
|
|
||||||
<img src="https://github.com/taigrr.png?size=45" width="45"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/charlie-dee" style="width:55px">
|
|
||||||
<img src="https://github.com/charlie-dee.png?size=55" width="55"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/EdenNetworkItalia" style="width:65px">
|
|
||||||
<img src="https://github.com/EdenNetworkItalia.png?size=65" width="65"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/michaelolson1996" style="width:55px">
|
|
||||||
<img src="https://github.com/michaelolson1996.png?size=55" width="55"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/GargantuaX" style="width:45px">
|
|
||||||
<img src="https://github.com/GargantuaX.png?size=45" width="45"/>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<span id="nav-6"></span>
|
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
Wails uses cgo to bind to the native rendering engines so a number of platform dependent libraries are needed as well as
|
Wails uses cgo to bind to the native rendering engines so a number of platform dependent libraries are needed as well as an installation of Go. The basic requirements are:
|
||||||
an installation of Go. The basic requirements are:
|
|
||||||
|
|
||||||
- Go 1.16
|
- Go 1.12
|
||||||
- npm
|
- npm
|
||||||
|
|
||||||
<span id="nav-6-1"></span>
|
|
||||||
|
|
||||||
### MacOS
|
### MacOS
|
||||||
|
|
||||||
Make sure you have the xcode command line tools installed. This can be done by running:
|
Make sure you have the xcode command line tools installed. This can be done by running:
|
||||||
|
|
||||||
`xcode-select --install`
|
`xcode-select --install`
|
||||||
|
|
||||||
<span id="nav-6-2"></span>
|
|
||||||
|
|
||||||
### Linux
|
### Linux
|
||||||
|
|
||||||
<span id="nav-6-2-1"></span>
|
|
||||||
|
|
||||||
#### Debian/Ubuntu
|
#### Debian/Ubuntu
|
||||||
|
|
||||||
`sudo apt install libgtk-3-dev libwebkit2gtk-4.0-dev`
|
`sudo apt install libgtk-3-dev libwebkit2gtk-4.0-dev`
|
||||||
@@ -237,183 +55,96 @@ _Debian: 8, 9, 10_
|
|||||||
|
|
||||||
_Ubuntu: 16.04, 18.04, 19.04_
|
_Ubuntu: 16.04, 18.04, 19.04_
|
||||||
|
|
||||||
_Also succesfully tested on: Zorin 15, Parrot 4.7, Linuxmint 19, Elementary 5, Kali, Neon_, Pop!\_OS
|
_Also succesfully tested on: Zorin 15, Parrot 4.7, Linuxmint 19, Elementary 5, Kali, Neon_
|
||||||
|
|
||||||
<span id="nav-6-2-2"></span>
|
#### Arch Linux
|
||||||
|
|
||||||
#### Arch Linux / ArchLabs / Ctlos Linux
|
|
||||||
|
|
||||||
`sudo pacman -S webkit2gtk gtk3`
|
`sudo pacman -S webkit2gtk gtk3`
|
||||||
|
|
||||||
_Also succesfully test on: Manjaro & ArcoLinux_
|
_Also succesfully test on: Manjaro & ArcoLinux_
|
||||||
|
|
||||||
<span id="nav-6-2-3"></span>
|
|
||||||
|
|
||||||
#### Centos
|
#### Centos
|
||||||
|
|
||||||
`sudo yum install webkitgtk3-devel gtk3-devel`
|
`sudo yum install webkitgtk3-devel gtk3-devel`
|
||||||
|
|
||||||
_CentOS 6, 7_
|
_CentOS 6, 7_
|
||||||
|
|
||||||
<span id="nav-6-2-4"></span>
|
|
||||||
|
|
||||||
#### Fedora
|
#### Fedora
|
||||||
|
|
||||||
`sudo yum install webkit2gtk3-devel gtk3-devel`
|
`sudo yum install webkit2gtk3-devel gtk3-devel`
|
||||||
|
|
||||||
_Fedora 29, 30_
|
_Fedora 29, 30_
|
||||||
|
|
||||||
<span id="nav-6-2-5"></span>
|
|
||||||
|
|
||||||
#### VoidLinux & VoidLinux-musl
|
#### VoidLinux & VoidLinux-musl
|
||||||
|
|
||||||
`xbps-install gtk+3-devel webkit2gtk-devel`
|
`xbps-install gtk+3-devel webkit2gtk-devel`
|
||||||
|
|
||||||
<span id="nav-6-2-6"></span>
|
|
||||||
|
|
||||||
#### Gentoo
|
#### Gentoo
|
||||||
|
|
||||||
`sudo emerge gtk+:3 webkit-gtk`
|
`sudo emerge gtk+:3 webkit-gtk`
|
||||||
|
|
||||||
<span id="nav-6-3"></span>
|
|
||||||
|
|
||||||
### Windows
|
### Windows
|
||||||
|
|
||||||
Windows requires gcc and related tooling. The recommended download is
|
Windows requires gcc and related tooling. The recommended download is from [http://tdm-gcc.tdragon.net/download](http://tdm-gcc.tdragon.net/download). Once this is installed, you are good to go.
|
||||||
from [http://tdm-gcc.tdragon.net/download](http://tdm-gcc.tdragon.net/download). Once this is installed, you are good to
|
|
||||||
go.
|
|
||||||
|
|
||||||
<span id="nav-7"></span>
|
## Installation
|
||||||
|
|
||||||
## Usage
|
|
||||||
|
|
||||||
**Ensure Go modules are enabled: GO111MODULE=on and go/bin is in your PATH variable.**
|
**Ensure Go modules are enabled: GO111MODULE=on and go/bin is in your PATH variable.**
|
||||||
|
|
||||||
Installation is as simple as running the following command:
|
Installation is as simple as running the following command:
|
||||||
|
|
||||||
```
|
<pre style='color:white'>
|
||||||
go get -u github.com/wailsapp/wails/cmd/wails
|
go get github.com/wailsapp/wails/cmd/wails
|
||||||
```
|
</pre>
|
||||||
|
|
||||||
<span id="nav-7-1"></span>
|
## Next Steps
|
||||||
|
|
||||||
### Next Steps
|
|
||||||
|
|
||||||
It is recommended at this stage to read the comprehensive documentation at [https://wails.app](https://wails.app).
|
It is recommended at this stage to read the comprehensive documentation at [https://wails.app](https://wails.app).
|
||||||
|
|
||||||
<span id="nav-8"></span>
|
|
||||||
|
|
||||||
## FAQ
|
## FAQ
|
||||||
|
|
||||||
- Is this an alternative to Electron?
|
* Is this an alternative to Electron?
|
||||||
|
|
||||||
Depends on your requirements. It's designed to make it easy for Go programmers to make lightweight desktop
|
Depends on your requirements. It's designed to make it easy for Go programmers to make lightweight desktop applications or add a frontend to their existing applications. Whilst Wails does not currently offer hooks into native elements such as menus, this may change in the future.
|
||||||
applications or add a frontend to their existing applications. Whilst Wails does not currently offer hooks into native
|
|
||||||
elements such as menus, this may change in the future.
|
|
||||||
|
|
||||||
- Who is this project aimed at?
|
* Who is this project aimed at?
|
||||||
|
|
||||||
Go programmers who want to bundle an HTML/JS/CSS frontend with their applications, without resorting to creating a
|
Go programmers who want to bundle an HTML/JS/CSS frontend with their applications, without resorting to creating a server and opening a browser to view it.
|
||||||
server and opening a browser to view it.
|
|
||||||
|
|
||||||
- What's with the name?
|
* What's with the name?
|
||||||
|
|
||||||
When I saw WebView, I thought "What I really want is tooling around building a WebView app, a bit like Rails is to
|
When I saw WebView, I thought "What I really want is tooling around building a WebView app, a bit like Rails is to Ruby". So initially it was a play on words (Webview on Rails). It just so happened to also be a homophone of the English name for the [Country](https://en.wikipedia.org/wiki/Wales) I am from. So it stuck.
|
||||||
Ruby". So initially it was a play on words (Webview on Rails). It just so happened to also be a homophone of the
|
|
||||||
English name for the [Country](https://en.wikipedia.org/wiki/Wales) I am from. So it stuck.
|
|
||||||
|
|
||||||
<span id="nav-9"></span>
|
## Shoulders of Giants
|
||||||
|
|
||||||
## Contributors
|
|
||||||
|
|
||||||
<a href="https://github.com/qaisjp"><img src="https://github.com/qaisjp.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/alee792"><img src="https://github.com/alee792.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/lanzafame"><img src="https://github.com/lanzafame.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/mattn"><img src="https://github.com/mattn.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/0xflotus"><img src="https://github.com/0xflotus.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/mdhender"><img src="https://github.com/mdhender.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/fishfishfish2104"><img src="https://github.com/fishfishfish2104.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/intelwalk"><img src="https://github.com/intelwalk.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/ocelotsloth"><img src="https://github.com/ocelotsloth.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/bh90210"><img src="https://github.com/bh90210.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/iceleo-com"><img src="https://github.com/iceleo-com.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/fallendusk"><img src="https://github.com/fallendusk.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/Chronophylos"><img src="https://github.com/Chronophylos.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/Vaelatern"><img src="https://github.com/Vaelatern.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/mewmew"><img src="https://github.com/mewmew.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/kraney"><img src="https://github.com/kraney.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/JackMordaunt"><img src="https://github.com/JackMordaunt.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/MichaelHipp"><img src="https://github.com/MichaelHipp.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/tmclane"><img src="https://github.com/tmclane.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/Rested"><img src="https://github.com/Rested.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/Jarek-SRT"><img src="https://github.com/Jarek-SRT.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/konez2k"><img src="https://github.com/konez2k.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/sayuthisobri"><img src="https://github.com/sayuthisobri.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/dedo1911"><img src="https://github.com/dedo1911.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/fdidron"><img src="https://github.com/fdidron.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/Splode"><img src="https://github.com/Splode.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/Lyimmi"><img src="https://github.com/Lyimmi.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/Unix4ever"><img src="https://github.com/Unix4ever.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/timkippdev"><img src="https://github.com/timkippdev.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/kyoto44"><img src="https://github.com/kyoto44.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/artooro"><img src="https://github.com/artooro.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/ilgityildirim"><img src="https://github.com/ilgityildirim.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/gelleson"><img src="https://github.com/gelleson.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/kmuchmore"><img src="https://github.com/kmuchmore.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/aayush420"><img src="https://github.com/aayush420.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/Rezrazi"><img src="https://github.com/Rezrazi.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/misitebao"><img src="https://github.com/misitebao.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/DrunkenPoney"><img src="https://github.com/DrunkenPoney.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/SophieAu"><img src="https://github.com/SophieAu.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/alexmat"><img src="https://github.com/alexmat.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/RH12503"><img src="https://github.com/RH12503.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/hi019"><img src="https://github.com/hi019.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/Igogrek"><img src="https://github.com/Igogrek.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/aschey"><img src="https://github.com/aschey.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/akhudek"><img src="https://github.com/akhudek.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/s12chung"><img src="https://github.com/s12chung.png?size=40" width="40"/></a>
|
|
||||||
|
|
||||||
<span id="nav-10"></span>
|
|
||||||
|
|
||||||
## Special Mentions
|
|
||||||
|
|
||||||
Without the following people, this project would never have existed:
|
Without the following people, this project would never have existed:
|
||||||
|
|
||||||
- [Dustin Krysak](https://wiki.ubuntu.com/bashfulrobot) - His support and feedback has been immense. More patience than
|
* [Dustin Krysak](https://wiki.ubuntu.com/bashfulrobot) - His support and feedback has been immense. More patience than you can throw a stick at (Not long now Dustin!).
|
||||||
you can throw a stick at (Not long now Dustin!).
|
* [Serge Zaitsev](https://github.com/zserge) - Creator of [Webview](https://github.com/zserge/webview) which Wails uses for the windowing.
|
||||||
- [Serge Zaitsev](https://github.com/zserge) - Creator of [Webview](https://github.com/zserge/webview) which Wails uses
|
|
||||||
for the windowing.
|
And without [these people](CONTRIBUTORS.md), it wouldn't be what it is today. A huge thank you to each and every one of you!
|
||||||
- [Byron](https://github.com/bh90210) - At times, Byron has single handedly kept this project alive. Without his
|
|
||||||
incredible input, we never would have got to v1.
|
Special Mentions:
|
||||||
|
|
||||||
|
* [Bill Kennedy](https://twitter.com/goinggodotnet) - Go guru, encourager and all-round nice guy, whose infectious energy and inspiration powered me on when I had none left.
|
||||||
|
* [Mark Bates](https://github.com/markbates) - Creator of [Packr](https://github.com/gobuffalo/packr), inspiration for packing strategies which fed into some of the tooling.
|
||||||
|
|
||||||
This project was mainly coded to the following albums:
|
This project was mainly coded to the following albums:
|
||||||
|
|
||||||
- [Manic Street Preachers - Resistance Is Futile](https://open.spotify.com/album/1R2rsEUqXjIvAbzM0yHrxA)
|
* [Manic Street Preachers - Resistance Is Futile](https://open.spotify.com/album/1R2rsEUqXjIvAbzM0yHrxA)
|
||||||
- [Manic Street Preachers - This Is My Truth, Tell Me Yours](https://open.spotify.com/album/4VzCL9kjhgGQeKCiojK1YN)
|
* [Manic Street Preachers - This Is My Truth, Tell Me Yours](https://open.spotify.com/album/4VzCL9kjhgGQeKCiojK1YN)
|
||||||
- [The Midnight - Endless Summer](https://open.spotify.com/album/4Krg8zvprquh7TVn9OxZn8)
|
* [The Midnight - Endless Summer](https://open.spotify.com/album/4Krg8zvprquh7TVn9OxZn8)
|
||||||
- [Gary Newman - Savage (Songs from a Broken World)](https://open.spotify.com/album/3kMfsD07Q32HRWKRrpcexr)
|
* [Gary Newman - Savage (Songs from a Broken World)](https://open.spotify.com/album/3kMfsD07Q32HRWKRrpcexr)
|
||||||
- [Steve Vai - Passion & Warfare](https://open.spotify.com/album/0oL0OhrE2rYVns4IGj8h2m)
|
* [Steve Vai - Passion & Warfare](https://open.spotify.com/album/0oL0OhrE2rYVns4IGj8h2m)
|
||||||
- [Ben Howard - Every Kingdom](https://open.spotify.com/album/1nJsbWm3Yy2DW1KIc1OKle)
|
* [Ben Howard - Every Kingdom](https://open.spotify.com/album/1nJsbWm3Yy2DW1KIc1OKle)
|
||||||
- [Ben Howard - Noonday Dream](https://open.spotify.com/album/6astw05cTiXEc2OvyByaPs)
|
* [Ben Howard - Noonday Dream](https://open.spotify.com/album/6astw05cTiXEc2OvyByaPs)
|
||||||
- [Adwaith - Melyn](https://open.spotify.com/album/2vBE40Rp60tl7rNqIZjaXM)
|
* [Adwaith - Melyn](https://open.spotify.com/album/2vBE40Rp60tl7rNqIZjaXM)
|
||||||
- [Gwidaith Hen Fran - Cedors Hen Wrach](https://open.spotify.com/album/3v2hrfNGINPLuDP0YDTOjm)
|
* [Gwidaith Hen Fran - Cedors Hen Wrach](https://open.spotify.com/album/3v2hrfNGINPLuDP0YDTOjm)
|
||||||
- [Metallica - Metallica](https://open.spotify.com/album/2Kh43m04B1UkVcpcRa1Zug)
|
* [Metallica - Metallica](https://open.spotify.com/album/2Kh43m04B1UkVcpcRa1Zug)
|
||||||
- [Bloc Party - Silent Alarm](https://open.spotify.com/album/6SsIdN05HQg2GwYLfXuzLB)
|
* [Bloc Party - Silent Alarm](https://open.spotify.com/album/6SsIdN05HQg2GwYLfXuzLB)
|
||||||
- [Maxthor - Another World](https://open.spotify.com/album/3tklE2Fgw1hCIUstIwPBJF)
|
* [Maxthor - Another World](https://open.spotify.com/album/3tklE2Fgw1hCIUstIwPBJF)
|
||||||
- [Alun Tan Lan - Y Distawrwydd](https://open.spotify.com/album/0c32OywcLpdJCWWMC6vB8v)
|
* [Alun Tan Lan - Y Distawrwydd](https://open.spotify.com/album/0c32OywcLpdJCWWMC6vB8v)
|
||||||
|
|
||||||
<span id="nav-11"></span>
|
## Licensing
|
||||||
|
|
||||||
## Special Thanks
|
[](https://app.fossa.io/projects/git%2Bgithub.com%2Fwailsapp%2Fwails?ref=badge_large)
|
||||||
|
|
||||||
<p align="center" style="text-align: center">
|
|
||||||
<a href="https://pace.dev"><img src="/assets/images/pace.jpeg"/></a><br/>
|
|
||||||
A <i>huge</i> thanks to <a href="https://pace.dev">Pace</a> for sponsoring the project and helping the efforts to get Wails ported to Apple Silicon!<br/><br/>
|
|
||||||
If you are looking for a Project Management tool that's powerful but quick and easy to use, check them out!<br/><br/>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p align="center" style="text-align: center">
|
|
||||||
A special thank you to JetBrains for donating licenses to us!<br/><br/>
|
|
||||||
Please click the logo to let them know your appreciation!<br/><br/>
|
|
||||||
<a href="https://www.jetbrains.com?from=Wails"><img src="/assets/images/jetbrains-grayscale.png" width="30%"></a>
|
|
||||||
</p>
|
|
||||||
|
|||||||
@@ -1,412 +0,0 @@
|
|||||||
<p align="center" style="text-align: center">
|
|
||||||
<img src="logo.png" width="55%"><br/>
|
|
||||||
</p>
|
|
||||||
<p align="center">
|
|
||||||
使用 Go 和 Web 技术构建桌面应用程序。<br/><br/>
|
|
||||||
<a href="https://github.com/wailsapp/wails/blob/master/LICENSE">
|
|
||||||
<img src="https://img.shields.io/badge/License-MIT-blue.svg">
|
|
||||||
</a>
|
|
||||||
<a href="https://goreportcard.com/report/github.com/wailsapp/wails">
|
|
||||||
<img src="https://goreportcard.com/badge/github.com/wailsapp/wails"/>
|
|
||||||
</a>
|
|
||||||
<a href="http://godoc.org/github.com/wailsapp/wails">
|
|
||||||
<img src="https://img.shields.io/badge/godoc-reference-blue.svg"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://www.codefactor.io/repository/github/wailsapp/wails">
|
|
||||||
<img src="https://www.codefactor.io/repository/github/wailsapp/wails/badge" alt="CodeFactor" />
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/wailsapp/wails/issues">
|
|
||||||
<img src="https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat" alt="CodeFactor" />
|
|
||||||
</a>
|
|
||||||
<a href="https://app.fossa.io/projects/git%2Bgithub.com%2Fwailsapp%2Fwails?ref=badge_shield" alt="FOSSA Status">
|
|
||||||
<img src="https://app.fossa.io/api/projects/git%2Bgithub.com%2Fwailsapp%2Fwails.svg?type=shield"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://houndci.com">
|
|
||||||
<img src="https://img.shields.io/badge/Reviewed_by-Hound-8E64B0.svg"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/avelino/awesome-go" rel="nofollow">
|
|
||||||
<img src="https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg" alt="Awesome"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/wailsapp/wails/workflows/release/badge.svg?branch=master" rel="nofollow">
|
|
||||||
<img src="https://github.com/wailsapp/wails/workflows/release/badge.svg?branch=master" alt="Release Pipelines"/>
|
|
||||||
</a>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<span id="nav-1"></span>
|
|
||||||
|
|
||||||
## 国际化
|
|
||||||
|
|
||||||
[English](README.md) | [简体中文](README.zh-Hans.md)
|
|
||||||
|
|
||||||
<span id="nav-2"></span>
|
|
||||||
|
|
||||||
## 内容目录
|
|
||||||
|
|
||||||
<details>
|
|
||||||
<summary>点我 打开/关闭 目录列表</summary>
|
|
||||||
|
|
||||||
- [1. 国际化](#nav-1)
|
|
||||||
- [2. 内容目录](#nav-2)
|
|
||||||
- [3. 项目介绍](#nav-3)
|
|
||||||
- [3.1 官方网站](#nav-3-1)
|
|
||||||
- [4. 功能](#nav-4)
|
|
||||||
- [5. 赞助商](#nav-5)
|
|
||||||
- [6. 安装](#nav-6)
|
|
||||||
- [6.1 MacOS](#nav-6-1)
|
|
||||||
- [6.2 Linux](#nav-6-2)
|
|
||||||
- [6.2.1 Debian/Ubuntu](#nav-6-2-1)
|
|
||||||
- [6.2.2 Arch Linux / ArchLabs / Ctlos Linux](#nav-6-2-2)
|
|
||||||
- [6.2.3 Centos](#nav-6-2-3)
|
|
||||||
- [6.2.4 Fedora](#nav-6-2-4)
|
|
||||||
- [6.2.5 VoidLinux & VoidLinux-musl](#nav-6-2-5)
|
|
||||||
- [6.2.6 Gentoo](#nav-6-2-6)
|
|
||||||
- [6.3 Windows](#nav-6-3)
|
|
||||||
- [7. 使用方法](#nav-7)
|
|
||||||
- [7.1 下一步](#nav-7-1)
|
|
||||||
- [8. 常见问题](#nav-8)
|
|
||||||
- [9. 贡献者](#nav-9)
|
|
||||||
- [10. 特别提及](#nav-10)
|
|
||||||
- [12. 特别感谢](#nav-11)
|
|
||||||
|
|
||||||
</details>
|
|
||||||
|
|
||||||
<span id="nav-3"></span>
|
|
||||||
|
|
||||||
## 项目介绍
|
|
||||||
|
|
||||||
为 Go 程序提供 Web 界面的传统方法是通过内置 Web 服务器。Wails 提供了一种不同的方法:它提供了将 Go 代码和 Web
|
|
||||||
前端一起打包成单个二进制文件的能力。通过提供的工具,可以很轻松的完成项目的创建、编译和打包。你所要做的就是发挥想象力!
|
|
||||||
|
|
||||||
<span id="nav-3-1"></span>
|
|
||||||
|
|
||||||
### 官方网站
|
|
||||||
|
|
||||||
官方文档可以在 [https://wails.app](https://wails.app) 中找到。
|
|
||||||
|
|
||||||
如果您对适用于 Windows 的 v2 测试版感兴趣,可以点击[此处](https://wails.io)查看。
|
|
||||||
|
|
||||||
镜像网站:
|
|
||||||
|
|
||||||
- [中国大陆镜像站点 - https://wails.top](https://wails.top)
|
|
||||||
|
|
||||||
<span id="nav-4"></span>
|
|
||||||
|
|
||||||
## 功能
|
|
||||||
|
|
||||||
- 后端使用标准 Go
|
|
||||||
- 使用任意前端技术构建 UI 界面
|
|
||||||
- 快速为您的 Go 应用生成 Vue、Vuetify、React 前端代码
|
|
||||||
- 通过简单的绑定命令将 Go 方法暴露到前端
|
|
||||||
- 使用原生渲染引擎 - 无嵌入式浏览器
|
|
||||||
- 共享事件系统
|
|
||||||
- 原生文件系统对话框
|
|
||||||
- 强大的命令行工具
|
|
||||||
- 跨多个平台
|
|
||||||
|
|
||||||
<span id="nav-5"></span>
|
|
||||||
|
|
||||||
## 赞助商
|
|
||||||
|
|
||||||
这个项目由以下这些人或者公司支持:
|
|
||||||
|
|
||||||
<p align="center">
|
|
||||||
<a href="https://www.easywebadv.it/" style="width:100px;">
|
|
||||||
<img src="website/static/img/easyweb.png" width="120"/>
|
|
||||||
</a>
|
|
||||||
</p>
|
|
||||||
<br/>
|
|
||||||
<br/>
|
|
||||||
<a href="https://github.com/sponsors/leaanthony" style="width:100px;">
|
|
||||||
<img src="sponsors/silver%20sponsor.png" width="100"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/letheanVPN" style="width:100px;">
|
|
||||||
<img src="https://github.com/letheanVPN.png?size=100" width="100"/>
|
|
||||||
</a>
|
|
||||||
<br/>
|
|
||||||
<br/>
|
|
||||||
<a href="https://github.com/sponsors/leaanthony" style="width:100px;">
|
|
||||||
<img src="sponsors/bronze%20sponsor.png" width="100"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/snider" style="width:100px;">
|
|
||||||
<img src="https://github.com/snider.png?size=100" width="100"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/codydbentley" style="width:100px">
|
|
||||||
<img src="https://github.com/codydbentley.png?size=100" width="100"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/CrackDavid" style="width:100px">
|
|
||||||
<img src="https://github.com/CrackDavid.png?size=100" width="100"/>
|
|
||||||
</a>
|
|
||||||
<br/>
|
|
||||||
<br/>
|
|
||||||
<a href="https://github.com/matryer" style="width:100px">
|
|
||||||
<img src="https://github.com/matryer.png" width="100"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://www.jetbrains.com?from=Wails" style="width:100px">
|
|
||||||
<img src="/assets/images/jetbrains-grayscale.png" width="100"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/tc-hib" style="width:55px">
|
|
||||||
<img src="https://github.com/tc-hib.png?size=55" width="55"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/picatz" style="width:50px">
|
|
||||||
<img src="https://github.com/picatz.png?size=50" width="50"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/tylertravisty" style="width:50px">
|
|
||||||
<img src="https://github.com/tylertravisty.png?size=50" width="50"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/akhudek" style="width:50px">
|
|
||||||
<img src="https://github.com/akhudek.png?size=50" width="50"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/trea" style="width:50px">
|
|
||||||
<img src="https://github.com/trea.png?size=50" width="50"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/LanguageAgnostic" style="width:55px">
|
|
||||||
<img src="https://github.com/LanguageAgnostic.png?size=55" width="55"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/fcjr" style="width:55px">
|
|
||||||
<img src="https://github.com/fcjr.png?size=55" width="55"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/nickarellano" style="width:60px">
|
|
||||||
<img src="https://github.com/nickarellano.png?size=60" width="60"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/bglw" style="width:65px">
|
|
||||||
<img src="https://github.com/bglw.png?size=65" width="65"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/jugglingjsons" style="width:50px">
|
|
||||||
<img src="https://github.com/jugglingjsons.png?size=50" width="50"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/marcus-crane" style="width:65px">
|
|
||||||
<img src="https://github.com/marcus-crane.png?size=65" width="65"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/bbergshaven" style="width:45px">
|
|
||||||
<img src="https://github.com/bbergshaven.png?size=45" width="45"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/Gilgames000" style="width:45px">
|
|
||||||
<img src="https://github.com/Gilgames000.png?size=45" width="45"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/ilgityildirim" style="width:50px">
|
|
||||||
<img src="https://github.com/ilgityildirim.png?size=50" width="50"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/questrail" style="width:50px">
|
|
||||||
<img src="https://github.com/questrail.png?size=50" width="50"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/DonTomato" style="width:45px">
|
|
||||||
<img src="https://github.com/DonTomato.png?size=45" width="45"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/taigrr" style="width:45px">
|
|
||||||
<img src="https://github.com/taigrr.png?size=45" width="45"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/charlie-dee" style="width:55px">
|
|
||||||
<img src="https://github.com/charlie-dee.png?size=55" width="55"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/EdenNetworkItalia" style="width:65px">
|
|
||||||
<img src="https://github.com/EdenNetworkItalia.png?size=65" width="65"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/michaelolson1996" style="width:55px">
|
|
||||||
<img src="https://github.com/michaelolson1996.png?size=55" width="55"/>
|
|
||||||
</a>
|
|
||||||
<a href="https://github.com/GargantuaX" style="width:45px">
|
|
||||||
<img src="https://github.com/GargantuaX.png?size=45" width="45"/>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<span id="nav-6"></span>
|
|
||||||
|
|
||||||
## 安装
|
|
||||||
|
|
||||||
Wails 使用 cgo 与原生渲染引擎结合,因此需要依赖一些平台的库以及 Go 的安装。基本要求是:
|
|
||||||
|
|
||||||
- Go 1.16
|
|
||||||
- npm
|
|
||||||
|
|
||||||
<span id="nav-6-1"></span>
|
|
||||||
|
|
||||||
### MacOS
|
|
||||||
|
|
||||||
请确保已安装 xcode 命令行工具。这可以通过运行下面的命令来完成:
|
|
||||||
|
|
||||||
`xcode-select --install`
|
|
||||||
|
|
||||||
<span id="nav-6-2"></span>
|
|
||||||
|
|
||||||
### Linux
|
|
||||||
|
|
||||||
<span id="nav-6-2-1"></span>
|
|
||||||
|
|
||||||
#### Debian/Ubuntu
|
|
||||||
|
|
||||||
`sudo apt install libgtk-3-dev libwebkit2gtk-4.0-dev`
|
|
||||||
|
|
||||||
_Debian: 8, 9, 10_
|
|
||||||
|
|
||||||
_Ubuntu: 16.04, 18.04, 19.04_
|
|
||||||
|
|
||||||
_也成功测试了: Zorin 15, Parrot 4.7, Linuxmint 19, Elementary 5, Kali, Neon_, Pop!\_OS
|
|
||||||
|
|
||||||
<span id="nav-6-2-2"></span>
|
|
||||||
|
|
||||||
#### Arch Linux / ArchLabs / Ctlos Linux
|
|
||||||
|
|
||||||
`sudo pacman -S webkit2gtk gtk3`
|
|
||||||
|
|
||||||
_也成功测试了: Manjaro & ArcoLinux_
|
|
||||||
|
|
||||||
<span id="nav-6-2-3"></span>
|
|
||||||
|
|
||||||
#### Centos
|
|
||||||
|
|
||||||
`sudo yum install webkitgtk3-devel gtk3-devel`
|
|
||||||
|
|
||||||
_CentOS 6, 7_
|
|
||||||
|
|
||||||
<span id="nav-6-2-4"></span>
|
|
||||||
|
|
||||||
#### Fedora
|
|
||||||
|
|
||||||
`sudo yum install webkit2gtk3-devel gtk3-devel`
|
|
||||||
|
|
||||||
_Fedora 29, 30_
|
|
||||||
|
|
||||||
<span id="nav-6-2-5"></span>
|
|
||||||
|
|
||||||
#### VoidLinux & VoidLinux-musl
|
|
||||||
|
|
||||||
`xbps-install gtk+3-devel webkit2gtk-devel`
|
|
||||||
|
|
||||||
<span id="nav-6-2-6"></span>
|
|
||||||
|
|
||||||
#### Gentoo
|
|
||||||
|
|
||||||
`sudo emerge gtk+:3 webkit-gtk`
|
|
||||||
|
|
||||||
<span id="nav-6-3"></span>
|
|
||||||
|
|
||||||
### Windows
|
|
||||||
|
|
||||||
Windows 需要 GCC 和相关工具。 建议从 [http://tdm-gcc.tdragon.net/download](http://tdm-gcc.tdragon.net/download) 下载, 安装完成,您就可以开始了。
|
|
||||||
|
|
||||||
<span id="nav-7"></span>
|
|
||||||
|
|
||||||
## 使用方法
|
|
||||||
|
|
||||||
**确保 Go modules 是开启的:GO111MODULE=on 并且 go/bin 在您的 PATH 变量中。**
|
|
||||||
|
|
||||||
安装很简单,运行以下命令:
|
|
||||||
|
|
||||||
```
|
|
||||||
go get -u github.com/wailsapp/wails/cmd/wails
|
|
||||||
```
|
|
||||||
|
|
||||||
<span id="nav-7-1"></span>
|
|
||||||
|
|
||||||
### 下一步
|
|
||||||
|
|
||||||
建议在此时阅读 [https://wails.app](https://wails.app) 上面的文档.
|
|
||||||
|
|
||||||
<span id="nav-8"></span>
|
|
||||||
|
|
||||||
## 常见问题
|
|
||||||
|
|
||||||
- 它是 Electron 的替代品吗?
|
|
||||||
|
|
||||||
取决于您的要求。它旨在使 Go 程序员可以轻松制作轻量级桌面应用程序或在其现有应用程序中添加前端。尽管 Wails 当前不提供对诸如菜单之类的原生元素的钩子,但将来可能会改变。
|
|
||||||
|
|
||||||
- 这个项目针对的是哪些人?
|
|
||||||
|
|
||||||
希望将 HTML / JS / CSS 前端与其应用程序捆绑在一起的程序员,而不是借助创建服务并打开浏览器进行查看的方式。
|
|
||||||
|
|
||||||
- 名字怎么来的?
|
|
||||||
|
|
||||||
当我看到 WebView 时,我想"我真正想要的是围绕构建 WebView 应用程序工作,有点像 Rails 对于 Ruby"。因此,最初它是一个文字游戏(Webview on
|
|
||||||
Rails)。碰巧也是我来自的 [国家](https://en.wikipedia.org/wiki/Wales) 的英文名字的同音。所以就是它了。
|
|
||||||
|
|
||||||
<span id="nav-9"></span>
|
|
||||||
|
|
||||||
## 贡献者
|
|
||||||
|
|
||||||
<a href="https://github.com/qaisjp"><img src="https://github.com/qaisjp.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/alee792"><img src="https://github.com/alee792.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/lanzafame"><img src="https://github.com/lanzafame.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/mattn"><img src="https://github.com/mattn.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/0xflotus"><img src="https://github.com/0xflotus.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/mdhender"><img src="https://github.com/mdhender.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/fishfishfish2104"><img src="https://github.com/fishfishfish2104.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/intelwalk"><img src="https://github.com/intelwalk.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/ocelotsloth"><img src="https://github.com/ocelotsloth.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/bh90210"><img src="https://github.com/bh90210.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/iceleo-com"><img src="https://github.com/iceleo-com.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/fallendusk"><img src="https://github.com/fallendusk.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/Chronophylos"><img src="https://github.com/Chronophylos.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/Vaelatern"><img src="https://github.com/Vaelatern.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/mewmew"><img src="https://github.com/mewmew.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/kraney"><img src="https://github.com/kraney.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/JackMordaunt"><img src="https://github.com/JackMordaunt.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/MichaelHipp"><img src="https://github.com/MichaelHipp.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/tmclane"><img src="https://github.com/tmclane.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/Rested"><img src="https://github.com/Rested.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/Jarek-SRT"><img src="https://github.com/Jarek-SRT.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/konez2k"><img src="https://github.com/konez2k.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/sayuthisobri"><img src="https://github.com/sayuthisobri.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/dedo1911"><img src="https://github.com/dedo1911.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/fdidron"><img src="https://github.com/fdidron.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/Splode"><img src="https://github.com/Splode.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/Lyimmi"><img src="https://github.com/Lyimmi.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/Unix4ever"><img src="https://github.com/Unix4ever.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/timkippdev"><img src="https://github.com/timkippdev.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/kyoto44"><img src="https://github.com/kyoto44.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/artooro"><img src="https://github.com/artooro.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/ilgityildirim"><img src="https://github.com/ilgityildirim.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/gelleson"><img src="https://github.com/gelleson.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/kmuchmore"><img src="https://github.com/kmuchmore.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/aayush420"><img src="https://github.com/aayush420.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/Rezrazi"><img src="https://github.com/Rezrazi.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/misitebao"><img src="https://github.com/misitebao.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/DrunkenPoney"><img src="https://github.com/DrunkenPoney.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/SophieAu"><img src="https://github.com/SophieAu.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/alexmat"><img src="https://github.com/alexmat.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/RH12503"><img src="https://github.com/RH12503.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/hi019"><img src="https://github.com/hi019.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/Igogrek"><img src="https://github.com/Igogrek.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/aschey"><img src="https://github.com/aschey.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/akhudek"><img src="https://github.com/akhudek.png?size=40" width="40"/></a>
|
|
||||||
<a href="https://github.com/s12chung"><img src="https://github.com/s12chung.png?size=40" width="40"/></a>
|
|
||||||
|
|
||||||
<span id="nav-10"></span>
|
|
||||||
|
|
||||||
## 特别提及
|
|
||||||
|
|
||||||
如果没有以下人员,此项目或许永远不会存在:
|
|
||||||
|
|
||||||
- [Dustin Krysak](https://wiki.ubuntu.com/bashfulrobot) - 他的支持和反馈是巨大的。
|
|
||||||
- [Serge Zaitsev](https://github.com/zserge) - Wails 窗口所使用的 [Webview](https://github.com/zserge/webview) 的作者。
|
|
||||||
- [Byron](https://github.com/bh90210) - 有时,Byron 一个人保持这个项目活跃着。没有他令人难以置信的投入,我们永远不会得到 v1 。
|
|
||||||
|
|
||||||
编写项目代码时伴随着以下专辑:
|
|
||||||
|
|
||||||
- [Manic Street Preachers - Resistance Is Futile](https://open.spotify.com/album/1R2rsEUqXjIvAbzM0yHrxA)
|
|
||||||
- [Manic Street Preachers - This Is My Truth, Tell Me Yours](https://open.spotify.com/album/4VzCL9kjhgGQeKCiojK1YN)
|
|
||||||
- [The Midnight - Endless Summer](https://open.spotify.com/album/4Krg8zvprquh7TVn9OxZn8)
|
|
||||||
- [Gary Newman - Savage (Songs from a Broken World)](https://open.spotify.com/album/3kMfsD07Q32HRWKRrpcexr)
|
|
||||||
- [Steve Vai - Passion & Warfare](https://open.spotify.com/album/0oL0OhrE2rYVns4IGj8h2m)
|
|
||||||
- [Ben Howard - Every Kingdom](https://open.spotify.com/album/1nJsbWm3Yy2DW1KIc1OKle)
|
|
||||||
- [Ben Howard - Noonday Dream](https://open.spotify.com/album/6astw05cTiXEc2OvyByaPs)
|
|
||||||
- [Adwaith - Melyn](https://open.spotify.com/album/2vBE40Rp60tl7rNqIZjaXM)
|
|
||||||
- [Gwidaith Hen Fran - Cedors Hen Wrach](https://open.spotify.com/album/3v2hrfNGINPLuDP0YDTOjm)
|
|
||||||
- [Metallica - Metallica](https://open.spotify.com/album/2Kh43m04B1UkVcpcRa1Zug)
|
|
||||||
- [Bloc Party - Silent Alarm](https://open.spotify.com/album/6SsIdN05HQg2GwYLfXuzLB)
|
|
||||||
- [Maxthor - Another World](https://open.spotify.com/album/3tklE2Fgw1hCIUstIwPBJF)
|
|
||||||
- [Alun Tan Lan - Y Distawrwydd](https://open.spotify.com/album/0c32OywcLpdJCWWMC6vB8v)
|
|
||||||
|
|
||||||
<span id="nav-11"></span>
|
|
||||||
|
|
||||||
## 特别感谢
|
|
||||||
|
|
||||||
<p align="center" style="text-align: center">
|
|
||||||
<a href="https://pace.dev"><img src="/assets/images/pace.jpeg"/></a><br/>
|
|
||||||
<i>非常</i> 感谢<a href="https://pace.dev">Pace</a>对项目的赞助,并帮助将 Wails 移植到 Apple Silicon !<br/><br/>
|
|
||||||
如果您正在寻找一个强大并且快速和易于使用的项目管理工具,可以看看他们!<br/><br/>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p align="center" style="text-align: center">
|
|
||||||
特别感谢 JetBrains 向我们捐赠许可!<br/><br/>
|
|
||||||
请点击 logo 让他们知道你的感激之情!<br/><br/>
|
|
||||||
<a href="https://www.jetbrains.com?from=Wails"><img src="/assets/images/jetbrains-grayscale.png" width="30%"></a>
|
|
||||||
</p>
|
|
||||||
39
app.go
@@ -1,7 +1,9 @@
|
|||||||
package wails
|
package wails
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"fmt"
|
||||||
"os"
|
"os"
|
||||||
|
"runtime"
|
||||||
"syscall"
|
"syscall"
|
||||||
|
|
||||||
"github.com/syossan27/tebata"
|
"github.com/syossan27/tebata"
|
||||||
@@ -12,7 +14,6 @@ import (
|
|||||||
"github.com/wailsapp/wails/lib/ipc"
|
"github.com/wailsapp/wails/lib/ipc"
|
||||||
"github.com/wailsapp/wails/lib/logger"
|
"github.com/wailsapp/wails/lib/logger"
|
||||||
"github.com/wailsapp/wails/lib/renderer"
|
"github.com/wailsapp/wails/lib/renderer"
|
||||||
wailsruntime "github.com/wailsapp/wails/runtime"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
// -------------------------------- Compile time Flags ------------------------------
|
// -------------------------------- Compile time Flags ------------------------------
|
||||||
@@ -20,16 +21,6 @@ import (
|
|||||||
// BuildMode indicates what mode we are in
|
// BuildMode indicates what mode we are in
|
||||||
var BuildMode = cmd.BuildModeProd
|
var BuildMode = cmd.BuildModeProd
|
||||||
|
|
||||||
// Runtime is the Go Runtime struct
|
|
||||||
type Runtime = wailsruntime.Runtime
|
|
||||||
|
|
||||||
// Store is a state store used for syncing with
|
|
||||||
// the front end
|
|
||||||
type Store = wailsruntime.Store
|
|
||||||
|
|
||||||
// CustomLogger is a specialised logger
|
|
||||||
type CustomLogger = logger.CustomLogger
|
|
||||||
|
|
||||||
// ----------------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------------
|
||||||
|
|
||||||
// App defines the main application struct
|
// App defines the main application struct
|
||||||
@@ -54,7 +45,7 @@ func CreateApp(optionalConfig ...*AppConfig) *App {
|
|||||||
}
|
}
|
||||||
|
|
||||||
result := &App{
|
result := &App{
|
||||||
logLevel: "debug",
|
logLevel: "info",
|
||||||
renderer: renderer.NewWebView(),
|
renderer: renderer.NewWebView(),
|
||||||
ipc: ipc.NewManager(),
|
ipc: ipc.NewManager(),
|
||||||
bindingManager: binding.NewManager(),
|
bindingManager: binding.NewManager(),
|
||||||
@@ -76,12 +67,28 @@ func CreateApp(optionalConfig ...*AppConfig) *App {
|
|||||||
result.config.DisableInspector = true
|
result.config.DisableInspector = true
|
||||||
}
|
}
|
||||||
|
|
||||||
// Platform specific init
|
// If running windows, do a hidpi fix
|
||||||
platformInit()
|
if runtime.GOOS == "windows" {
|
||||||
|
err := SetProcessDPIAware()
|
||||||
|
if err != nil {
|
||||||
|
result.log.Fatalf(err.Error())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return result
|
return result
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// SetProcessDPIAware via user32.dll
|
||||||
|
// https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-setprocessdpiaware
|
||||||
|
// Also, thanks Jack Mordaunt! https://github.com/wailsapp/wails/issues/293
|
||||||
|
func SetProcessDPIAware() error {
|
||||||
|
status, r, err := syscall.NewLazyDLL("user32.dll").NewProc("SetProcessDPIAware").Call()
|
||||||
|
if status == 0 {
|
||||||
|
return fmt.Errorf("exit status %d: %v %v", status, r, err)
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
// Run the app
|
// Run the app
|
||||||
func (a *App) Run() error {
|
func (a *App) Run() error {
|
||||||
|
|
||||||
@@ -107,7 +114,7 @@ func (a *App) start() error {
|
|||||||
|
|
||||||
// Check if we are to run in bridge mode
|
// Check if we are to run in bridge mode
|
||||||
if BuildMode == cmd.BuildModeBridge {
|
if BuildMode == cmd.BuildModeBridge {
|
||||||
a.renderer = renderer.NewBridge()
|
a.renderer = &renderer.Bridge{}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Initialise the renderer
|
// Initialise the renderer
|
||||||
@@ -130,7 +137,7 @@ func (a *App) start() error {
|
|||||||
a.ipc.Start(a.eventManager, a.bindingManager)
|
a.ipc.Start(a.eventManager, a.bindingManager)
|
||||||
|
|
||||||
// Create the runtime
|
// Create the runtime
|
||||||
a.runtime = wailsruntime.NewRuntime(a.eventManager, a.renderer)
|
a.runtime = NewRuntime(a.eventManager, a.renderer)
|
||||||
|
|
||||||
// Start binding manager and give it our renderer
|
// Start binding manager and give it our renderer
|
||||||
err = a.bindingManager.Start(a.renderer, a.runtime)
|
err = a.bindingManager.Start(a.renderer, a.runtime)
|
||||||
|
|||||||
@@ -1,8 +0,0 @@
|
|||||||
//go:build linux || darwin || !windows
|
|
||||||
// +build linux darwin !windows
|
|
||||||
|
|
||||||
package wails
|
|
||||||
|
|
||||||
func platformInit() {
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,28 +0,0 @@
|
|||||||
//go:build windows || !linux || !darwin
|
|
||||||
// +build windows !linux !darwin
|
|
||||||
|
|
||||||
package wails
|
|
||||||
|
|
||||||
import (
|
|
||||||
"fmt"
|
|
||||||
"log"
|
|
||||||
"syscall"
|
|
||||||
)
|
|
||||||
|
|
||||||
func platformInit() {
|
|
||||||
err := SetProcessDPIAware()
|
|
||||||
if err != nil {
|
|
||||||
log.Fatalf(err.Error())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// SetProcessDPIAware via user32.dll
|
|
||||||
// https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-setprocessdpiaware
|
|
||||||
// Also, thanks Jack Mordaunt! https://github.com/wailsapp/wails/issues/293
|
|
||||||
func SetProcessDPIAware() error {
|
|
||||||
status, r, err := syscall.NewLazyDLL("user32.dll").NewProc("SetProcessDPIAware").Call()
|
|
||||||
if status == 0 {
|
|
||||||
return fmt.Errorf("exit status %d: %v %v", status, r, err)
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
Before Width: | Height: | Size: 103 KiB |
|
Before Width: | Height: | Size: 34 KiB |
|
Before Width: | Height: | Size: 3.1 KiB |
138
azure-pipelines.yaml
Normal file
@@ -0,0 +1,138 @@
|
|||||||
|
# avoid double trigger by applying some rules
|
||||||
|
# start a pipeline when push to 'master' branch
|
||||||
|
trigger:
|
||||||
|
- master
|
||||||
|
# or when pull request on 'develop' branch
|
||||||
|
pr:
|
||||||
|
- develop
|
||||||
|
|
||||||
|
# for now there is only one stage 'Build'
|
||||||
|
# in the future we could use multistage strategy for releases
|
||||||
|
stages:
|
||||||
|
- stage: Build
|
||||||
|
|
||||||
|
# there are 3 jobs
|
||||||
|
# one for each os
|
||||||
|
jobs:
|
||||||
|
- deployment: Linux
|
||||||
|
displayName: Lin
|
||||||
|
variables:
|
||||||
|
GOPATH: '$(Agent.BuildDirectory)/gopath' # Go workspace path
|
||||||
|
GOROOT: '$(Agent.BuildDirectory)/go' # Go installation path
|
||||||
|
GOBIN: '$(GOPATH)/bin' # Go binaries path
|
||||||
|
GOMODULE: 'on'
|
||||||
|
modulePath: '$(Agent.BuildDirectory)/wails' # Path to the module's code
|
||||||
|
pool:
|
||||||
|
vmImage: 'Ubuntu-16.04'
|
||||||
|
environment: 'linux-dev'
|
||||||
|
strategy:
|
||||||
|
runOnce:
|
||||||
|
deploy:
|
||||||
|
steps:
|
||||||
|
- checkout: self # self represents the repo where the initial Pipelines YAML file was found
|
||||||
|
clean: true # whether to fetch clean each time
|
||||||
|
path: wails # path to check out source code, relative to the agent's build directory (e.g. \_work\1)
|
||||||
|
# go version 1.12.7
|
||||||
|
- script: |
|
||||||
|
wget "https://storage.googleapis.com/golang/go1.12.7.linux-amd64.tar.gz" --output-document "$(Agent.BuildDirectory)/go1.12.7.tar.gz"
|
||||||
|
tar -C '$(Agent.BuildDirectory)' -xzf "$(Agent.BuildDirectory)/go1.12.7.tar.gz"
|
||||||
|
displayName: 'Install Go 1.12.7 Linux'
|
||||||
|
- script: |
|
||||||
|
mkdir -p '$(GOBIN)'
|
||||||
|
mkdir -p '$(GOPATH)/pkg'
|
||||||
|
mkdir -p '$(GOROOT)'
|
||||||
|
shopt -s extglob
|
||||||
|
shopt -s dotglob
|
||||||
|
echo '##vso[task.prependpath]$(GOBIN)'
|
||||||
|
echo '##vso[task.prependpath]$(GOROOT)/bin'
|
||||||
|
displayName: 'Set up the Go workspace'
|
||||||
|
- script: |
|
||||||
|
go version
|
||||||
|
go get -v -d ./...
|
||||||
|
cd cmd/wails
|
||||||
|
go install
|
||||||
|
workingDirectory: '$(modulePath)'
|
||||||
|
displayName: 'Get dependencies, then build'
|
||||||
|
- script: |
|
||||||
|
wails version
|
||||||
|
workingDirectory: '$(modulePath)'
|
||||||
|
displayName: 'Check we have output'
|
||||||
|
|
||||||
|
- deployment: Mac
|
||||||
|
displayName: Mac
|
||||||
|
variables:
|
||||||
|
GOPATH: '$(Agent.BuildDirectory)/gopath' # Go workspace path
|
||||||
|
GOROOT: '$(Agent.BuildDirectory)/go' # Go installation path
|
||||||
|
GOBIN: '$(GOPATH)/bin' # Go binaries path
|
||||||
|
GOMODULE: 'on'
|
||||||
|
modulePath: '$(Agent.BuildDirectory)/wails' # Path to the module's code
|
||||||
|
pool:
|
||||||
|
vmImage: 'macOS-10.14'
|
||||||
|
environment: 'mac-dev'
|
||||||
|
strategy:
|
||||||
|
runOnce:
|
||||||
|
deploy:
|
||||||
|
steps:
|
||||||
|
- checkout: self # self represents the repo where the initial Pipelines YAML file was found
|
||||||
|
clean: true # whether to fetch clean each time
|
||||||
|
path: wails # path to check out source code, relative to the agent's build directory (e.g. \_work\1)
|
||||||
|
# go version 1.12.7
|
||||||
|
- script: |
|
||||||
|
wget "https://storage.googleapis.com/golang/go1.12.7.darwin-amd64.tar.gz" --output-document "$(Agent.BuildDirectory)/go1.12.7.tar.gz"
|
||||||
|
tar -C '$(Agent.BuildDirectory)' -xzf "$(Agent.BuildDirectory)/go1.12.7.tar.gz"
|
||||||
|
displayName: 'Install Go 1.12.7 Linux'
|
||||||
|
- script: |
|
||||||
|
mkdir -p '$(GOBIN)'
|
||||||
|
mkdir -p '$(GOPATH)/pkg'
|
||||||
|
mkdir -p '$(GOROOT)'
|
||||||
|
shopt -s extglob
|
||||||
|
shopt -s dotglob
|
||||||
|
echo '##vso[task.prependpath]$(GOBIN)'
|
||||||
|
echo '##vso[task.prependpath]$(GOROOT)/bin'
|
||||||
|
displayName: 'Set up the Go workspace'
|
||||||
|
- script: |
|
||||||
|
go version
|
||||||
|
go get -v -d ./...
|
||||||
|
cd cmd/wails
|
||||||
|
go install
|
||||||
|
workingDirectory: '$(modulePath)'
|
||||||
|
displayName: 'Get dependencies, then build'
|
||||||
|
- script: |
|
||||||
|
wails version
|
||||||
|
workingDirectory: '$(modulePath)'
|
||||||
|
displayName: 'Check we have output'
|
||||||
|
|
||||||
|
- deployment: Win
|
||||||
|
displayName: Win
|
||||||
|
variables:
|
||||||
|
GOMODULE: 'on'
|
||||||
|
modulePath: '$(Agent.BuildDirectory)/wails' # Path to the module's code
|
||||||
|
pool:
|
||||||
|
vmImage: 'windows-2019'
|
||||||
|
environment: 'win-dev'
|
||||||
|
strategy:
|
||||||
|
runOnce:
|
||||||
|
deploy:
|
||||||
|
steps:
|
||||||
|
- checkout: self # self represents the repo where the initial Pipelines YAML file was found
|
||||||
|
clean: true # whether to fetch clean each time
|
||||||
|
path: wails # path to check out source code, relative to the agent's build directory (e.g. \_work\1)
|
||||||
|
# Go tool installer
|
||||||
|
# Find in cache or download a specific version of Go and add it to the PATH
|
||||||
|
- task: GoTool@0
|
||||||
|
inputs:
|
||||||
|
version: '1.12.7'
|
||||||
|
goPath: '$(Agent.BuildDirectory)/go'
|
||||||
|
goBin: '$(Agent.BuildDirectory)/go/bin'
|
||||||
|
displayName: 'Set up the Go workspace'
|
||||||
|
- script: |
|
||||||
|
go version
|
||||||
|
go get -v -d ./...
|
||||||
|
cd cmd/wails
|
||||||
|
go install
|
||||||
|
workingDirectory: '$(modulePath)'
|
||||||
|
displayName: 'Get dependencies, then build'
|
||||||
|
- script: |
|
||||||
|
wails version
|
||||||
|
workingDirectory: '$(Agent.BuildDirectory)/go/bin'
|
||||||
|
displayName: 'Check we have output'
|
||||||
138
azure-pipelines.yml
Normal file
@@ -0,0 +1,138 @@
|
|||||||
|
# avoid double trigger by applying some rules
|
||||||
|
# start a pipeline when push to 'master' branch
|
||||||
|
trigger:
|
||||||
|
- master
|
||||||
|
# or when pull request on 'develop' branch
|
||||||
|
pr:
|
||||||
|
- develop
|
||||||
|
|
||||||
|
# for now there is only one stage 'Build'
|
||||||
|
# in the future we could use multistage strategy for releases
|
||||||
|
stages:
|
||||||
|
- stage: Build
|
||||||
|
|
||||||
|
# there are 3 jobs
|
||||||
|
# one for each os
|
||||||
|
jobs:
|
||||||
|
- deployment: Linux
|
||||||
|
displayName: Lin
|
||||||
|
variables:
|
||||||
|
GOPATH: '$(Agent.BuildDirectory)/gopath' # Go workspace path
|
||||||
|
GOROOT: '$(Agent.BuildDirectory)/go' # Go installation path
|
||||||
|
GOBIN: '$(GOPATH)/bin' # Go binaries path
|
||||||
|
GOMODULE: 'on'
|
||||||
|
modulePath: '$(Agent.BuildDirectory)/wails' # Path to the module's code
|
||||||
|
pool:
|
||||||
|
vmImage: 'Ubuntu-16.04'
|
||||||
|
environment: 'linux-dev'
|
||||||
|
strategy:
|
||||||
|
runOnce:
|
||||||
|
deploy:
|
||||||
|
steps:
|
||||||
|
- checkout: self # self represents the repo where the initial Pipelines YAML file was found
|
||||||
|
clean: true # whether to fetch clean each time
|
||||||
|
path: wails # path to check out source code, relative to the agent's build directory (e.g. \_work\1)
|
||||||
|
# go version 1.12.7
|
||||||
|
- script: |
|
||||||
|
wget "https://storage.googleapis.com/golang/go1.12.7.linux-amd64.tar.gz" --output-document "$(Agent.BuildDirectory)/go1.12.7.tar.gz"
|
||||||
|
tar -C '$(Agent.BuildDirectory)' -xzf "$(Agent.BuildDirectory)/go1.12.7.tar.gz"
|
||||||
|
displayName: 'Install Go 1.12.7 Linux'
|
||||||
|
- script: |
|
||||||
|
mkdir -p '$(GOBIN)'
|
||||||
|
mkdir -p '$(GOPATH)/pkg'
|
||||||
|
mkdir -p '$(GOROOT)'
|
||||||
|
shopt -s extglob
|
||||||
|
shopt -s dotglob
|
||||||
|
echo '##vso[task.prependpath]$(GOBIN)'
|
||||||
|
echo '##vso[task.prependpath]$(GOROOT)/bin'
|
||||||
|
displayName: 'Set up the Go workspace'
|
||||||
|
- script: |
|
||||||
|
go version
|
||||||
|
go get -v -d ./...
|
||||||
|
cd cmd/wails
|
||||||
|
go install
|
||||||
|
workingDirectory: '$(modulePath)'
|
||||||
|
displayName: 'Get dependencies, then build'
|
||||||
|
- script: |
|
||||||
|
wails version
|
||||||
|
workingDirectory: '$(modulePath)'
|
||||||
|
displayName: 'Check we have output'
|
||||||
|
|
||||||
|
- deployment: Mac
|
||||||
|
displayName: Mac
|
||||||
|
variables:
|
||||||
|
GOPATH: '$(Agent.BuildDirectory)/gopath' # Go workspace path
|
||||||
|
GOROOT: '$(Agent.BuildDirectory)/go' # Go installation path
|
||||||
|
GOBIN: '$(GOPATH)/bin' # Go binaries path
|
||||||
|
GOMODULE: 'on'
|
||||||
|
modulePath: '$(Agent.BuildDirectory)/wails' # Path to the module's code
|
||||||
|
pool:
|
||||||
|
vmImage: 'macOS-10.14'
|
||||||
|
environment: 'mac-dev'
|
||||||
|
strategy:
|
||||||
|
runOnce:
|
||||||
|
deploy:
|
||||||
|
steps:
|
||||||
|
- checkout: self # self represents the repo where the initial Pipelines YAML file was found
|
||||||
|
clean: true # whether to fetch clean each time
|
||||||
|
path: wails # path to check out source code, relative to the agent's build directory (e.g. \_work\1)
|
||||||
|
# go version 1.12.7
|
||||||
|
- script: |
|
||||||
|
wget "https://storage.googleapis.com/golang/go1.12.7.darwin-amd64.tar.gz" --output-document "$(Agent.BuildDirectory)/go1.12.7.tar.gz"
|
||||||
|
tar -C '$(Agent.BuildDirectory)' -xzf "$(Agent.BuildDirectory)/go1.12.7.tar.gz"
|
||||||
|
displayName: 'Install Go 1.12.7 Linux'
|
||||||
|
- script: |
|
||||||
|
mkdir -p '$(GOBIN)'
|
||||||
|
mkdir -p '$(GOPATH)/pkg'
|
||||||
|
mkdir -p '$(GOROOT)'
|
||||||
|
shopt -s extglob
|
||||||
|
shopt -s dotglob
|
||||||
|
echo '##vso[task.prependpath]$(GOBIN)'
|
||||||
|
echo '##vso[task.prependpath]$(GOROOT)/bin'
|
||||||
|
displayName: 'Set up the Go workspace'
|
||||||
|
- script: |
|
||||||
|
go version
|
||||||
|
go get -v -d ./...
|
||||||
|
cd cmd/wails
|
||||||
|
go install
|
||||||
|
workingDirectory: '$(modulePath)'
|
||||||
|
displayName: 'Get dependencies, then build'
|
||||||
|
- script: |
|
||||||
|
wails version
|
||||||
|
workingDirectory: '$(modulePath)'
|
||||||
|
displayName: 'Check we have output'
|
||||||
|
|
||||||
|
- deployment: Win
|
||||||
|
displayName: Win
|
||||||
|
variables:
|
||||||
|
GOMODULE: 'on'
|
||||||
|
modulePath: '$(Agent.BuildDirectory)/wails' # Path to the module's code
|
||||||
|
pool:
|
||||||
|
vmImage: 'windows-2019'
|
||||||
|
environment: 'win-dev'
|
||||||
|
strategy:
|
||||||
|
runOnce:
|
||||||
|
deploy:
|
||||||
|
steps:
|
||||||
|
- checkout: self # self represents the repo where the initial Pipelines YAML file was found
|
||||||
|
clean: true # whether to fetch clean each time
|
||||||
|
path: wails # path to check out source code, relative to the agent's build directory (e.g. \_work\1)
|
||||||
|
# Go tool installer
|
||||||
|
# Find in cache or download a specific version of Go and add it to the PATH
|
||||||
|
- task: GoTool@0
|
||||||
|
inputs:
|
||||||
|
version: '1.12.7'
|
||||||
|
goPath: '$(Agent.BuildDirectory)/go'
|
||||||
|
goBin: '$(Agent.BuildDirectory)/go/bin'
|
||||||
|
displayName: 'Set up the Go workspace'
|
||||||
|
- script: |
|
||||||
|
go version
|
||||||
|
go get -v -d ./...
|
||||||
|
cd cmd/wails
|
||||||
|
go install
|
||||||
|
workingDirectory: '$(modulePath)'
|
||||||
|
displayName: 'Get dependencies, then build'
|
||||||
|
- script: |
|
||||||
|
wails version
|
||||||
|
workingDirectory: '$(Agent.BuildDirectory)/go/bin'
|
||||||
|
displayName: 'Check we have output'
|
||||||
11
cmd/cmd-mewn.go
Normal file
30
cmd/fs.go
@@ -6,12 +6,12 @@ import (
|
|||||||
"encoding/json"
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
|
"io/ioutil"
|
||||||
"log"
|
"log"
|
||||||
"os"
|
"os"
|
||||||
"path"
|
"path"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"runtime"
|
"runtime"
|
||||||
"strings"
|
|
||||||
|
|
||||||
"github.com/leaanthony/slicer"
|
"github.com/leaanthony/slicer"
|
||||||
)
|
)
|
||||||
@@ -47,28 +47,12 @@ func (fs *FSHelper) FileExists(path string) bool {
|
|||||||
return fi.Mode().IsRegular()
|
return fi.Mode().IsRegular()
|
||||||
}
|
}
|
||||||
|
|
||||||
// FindFile returns the first occurrence of match inside path.
|
|
||||||
func (fs *FSHelper) FindFile(path, match string) (string, error) {
|
|
||||||
files, err := os.ReadDir(path)
|
|
||||||
if err != nil {
|
|
||||||
return "", err
|
|
||||||
}
|
|
||||||
|
|
||||||
for _, f := range files {
|
|
||||||
if !f.IsDir() && strings.Contains(f.Name(), match) {
|
|
||||||
return f.Name(), nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return "", fmt.Errorf("file not found")
|
|
||||||
}
|
|
||||||
|
|
||||||
// CreateFile creates a file at the given filename location with the contents
|
// CreateFile creates a file at the given filename location with the contents
|
||||||
// set to the given data. It will create intermediary directories if needed.
|
// set to the given data. It will create intermediary directories if needed.
|
||||||
func (fs *FSHelper) CreateFile(filename string, data []byte) error {
|
func (fs *FSHelper) CreateFile(filename string, data []byte) error {
|
||||||
// Ensure directory exists
|
// Ensure directory exists
|
||||||
fs.MkDirs(filepath.Dir(filename))
|
fs.MkDirs(filepath.Dir(filename))
|
||||||
return os.WriteFile(filename, data, 0644)
|
return ioutil.WriteFile(filename, data, 0644)
|
||||||
}
|
}
|
||||||
|
|
||||||
// MkDirs creates the given nested directories.
|
// MkDirs creates the given nested directories.
|
||||||
@@ -116,10 +100,10 @@ func (fs *FSHelper) RemoveFile(filename string) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// RemoveFiles removes the given filenames
|
// RemoveFiles removes the given filenames
|
||||||
func (fs *FSHelper) RemoveFiles(files []string, continueOnError bool) error {
|
func (fs *FSHelper) RemoveFiles(files []string) error {
|
||||||
for _, filename := range files {
|
for _, filename := range files {
|
||||||
err := os.Remove(filename)
|
err := os.Remove(filename)
|
||||||
if err != nil && !continueOnError {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -152,7 +136,7 @@ func (fs *FSHelper) LocalDir(dir string) (*Dir, error) {
|
|||||||
func (d *Dir) GetSubdirs() (map[string]string, error) {
|
func (d *Dir) GetSubdirs() (map[string]string, error) {
|
||||||
|
|
||||||
// Read in the directory information
|
// Read in the directory information
|
||||||
fileInfo, err := os.ReadDir(d.fullPath)
|
fileInfo, err := ioutil.ReadDir(d.fullPath)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
@@ -204,7 +188,7 @@ func (fs *FSHelper) SaveAsJSON(data interface{}, filename string) error {
|
|||||||
e.SetIndent("", " ")
|
e.SetIndent("", " ")
|
||||||
e.Encode(data)
|
e.Encode(data)
|
||||||
|
|
||||||
err := os.WriteFile(filename, buf.Bytes(), 0755)
|
err := ioutil.WriteFile(filename, buf.Bytes(), 0755)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
@@ -220,7 +204,7 @@ func (fs *FSHelper) LoadAsString(filename string) (string, error) {
|
|||||||
|
|
||||||
// LoadAsBytes returns the contents of the file as a byte slice
|
// LoadAsBytes returns the contents of the file as a byte slice
|
||||||
func (fs *FSHelper) LoadAsBytes(filename string) ([]byte, error) {
|
func (fs *FSHelper) LoadAsBytes(filename string) ([]byte, error) {
|
||||||
return os.ReadFile(filename)
|
return ioutil.ReadFile(filename)
|
||||||
}
|
}
|
||||||
|
|
||||||
// FileMD5 returns the md5sum of the given file
|
// FileMD5 returns the md5sum of the given file
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ package cmd
|
|||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
"io/ioutil"
|
||||||
"net/http"
|
"net/http"
|
||||||
"sort"
|
"sort"
|
||||||
)
|
)
|
||||||
@@ -24,11 +24,11 @@ func (g *GitHubHelper) GetVersionTags() ([]*SemanticVersion, error) {
|
|||||||
result := []*SemanticVersion{}
|
result := []*SemanticVersion{}
|
||||||
var err error
|
var err error
|
||||||
|
|
||||||
resp, err := http.Get("https://api.github.com/repos/wailsapp/wails/releases")
|
resp, err := http.Get("https://api.github.com/repos/wailsapp/wails/tags")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return result, err
|
return result, err
|
||||||
}
|
}
|
||||||
body, err := io.ReadAll(resp.Body)
|
body, err := ioutil.ReadAll(resp.Body)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return result, err
|
return result, err
|
||||||
}
|
}
|
||||||
|
|||||||
78
cmd/gomod.go
@@ -1,78 +0,0 @@
|
|||||||
package cmd
|
|
||||||
|
|
||||||
import (
|
|
||||||
"fmt"
|
|
||||||
"path/filepath"
|
|
||||||
"regexp"
|
|
||||||
|
|
||||||
"github.com/Masterminds/semver"
|
|
||||||
)
|
|
||||||
|
|
||||||
func GetWailsVersion() (*semver.Version, error) {
|
|
||||||
var FS = NewFSHelper()
|
|
||||||
var result *semver.Version
|
|
||||||
|
|
||||||
// Load file
|
|
||||||
var err error
|
|
||||||
goModFile, err := filepath.Abs(filepath.Join(".", "go.mod"))
|
|
||||||
if err != nil {
|
|
||||||
return nil, fmt.Errorf("Unable to load go.mod at %s", goModFile)
|
|
||||||
}
|
|
||||||
goMod, err := FS.LoadAsString(goModFile)
|
|
||||||
if err != nil {
|
|
||||||
return nil, fmt.Errorf("Unable to load go.mod")
|
|
||||||
}
|
|
||||||
|
|
||||||
// Find wails version
|
|
||||||
versionRegexp := regexp.MustCompile(`.*github.com/wailsapp/wails.*(v\d+.\d+.\d+(?:-pre\d+)?)`)
|
|
||||||
versions := versionRegexp.FindStringSubmatch(goMod)
|
|
||||||
|
|
||||||
if len(versions) != 2 {
|
|
||||||
return nil, fmt.Errorf("Unable to determine Wails version")
|
|
||||||
}
|
|
||||||
|
|
||||||
version := versions[1]
|
|
||||||
result, err = semver.NewVersion(version)
|
|
||||||
if err != nil {
|
|
||||||
return nil, fmt.Errorf("Unable to parse Wails version: %s", version)
|
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
func GetCurrentVersion() (*semver.Version, error) {
|
|
||||||
result, err := semver.NewVersion(Version)
|
|
||||||
if err != nil {
|
|
||||||
return nil, fmt.Errorf("Unable to parse Wails version: %s", Version)
|
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func GoModOutOfSync() (bool, error) {
|
|
||||||
gomodversion, err := GetWailsVersion()
|
|
||||||
if err != nil {
|
|
||||||
return true, err
|
|
||||||
}
|
|
||||||
currentVersion, err := GetCurrentVersion()
|
|
||||||
if err != nil {
|
|
||||||
return true, err
|
|
||||||
}
|
|
||||||
result := !currentVersion.Equal(gomodversion)
|
|
||||||
return result, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func UpdateGoModVersion() error {
|
|
||||||
currentVersion, err := GetCurrentVersion()
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
currentVersionString := currentVersion.String()
|
|
||||||
|
|
||||||
requireLine := "-require=github.com/wailsapp/wails@v" + currentVersionString
|
|
||||||
|
|
||||||
// Issue: go mod edit -require=github.com/wailsapp/wails@1.0.2-pre5
|
|
||||||
helper := NewProgramHelper()
|
|
||||||
command := []string{"go", "mod", "edit", requireLine}
|
|
||||||
return helper.RunCommandArray(command)
|
|
||||||
|
|
||||||
}
|
|
||||||
422
cmd/helpers.go
@@ -2,22 +2,19 @@ package cmd
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"io/ioutil"
|
||||||
"os"
|
"os"
|
||||||
"os/exec"
|
"os/exec"
|
||||||
"os/user"
|
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"runtime"
|
"runtime"
|
||||||
"strconv"
|
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
"github.com/leaanthony/mewn"
|
||||||
"github.com/leaanthony/slicer"
|
"github.com/leaanthony/slicer"
|
||||||
"github.com/leaanthony/spinner"
|
"github.com/leaanthony/spinner"
|
||||||
wailsruntime "github.com/wailsapp/wails/runtime"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
const xgoVersion = "1.16.3"
|
|
||||||
|
|
||||||
var fs = NewFSHelper()
|
var fs = NewFSHelper()
|
||||||
|
|
||||||
// ValidateFrontendConfig checks if the frontend config is valid
|
// ValidateFrontendConfig checks if the frontend config is valid
|
||||||
@@ -39,143 +36,34 @@ func ValidateFrontendConfig(projectOptions *ProjectOptions) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// InstallGoDependencies will run go get in the current directory
|
// InstallGoDependencies will run go get in the current directory
|
||||||
func InstallGoDependencies(verbose bool) error {
|
func InstallGoDependencies() error {
|
||||||
var depSpinner *spinner.Spinner
|
depSpinner := spinner.New("Ensuring Dependencies are up to date...")
|
||||||
if !verbose {
|
depSpinner.SetSpinSpeed(50)
|
||||||
depSpinner = spinner.New("Ensuring Dependencies are up to date...")
|
depSpinner.Start()
|
||||||
depSpinner.SetSpinSpeed(50)
|
err := NewProgramHelper().RunCommand("go get")
|
||||||
depSpinner.Start()
|
|
||||||
}
|
|
||||||
err := NewProgramHelper(verbose).RunCommand("go mod tidy")
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if !verbose {
|
depSpinner.Error()
|
||||||
depSpinner.Error()
|
|
||||||
}
|
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if !verbose {
|
depSpinner.Success()
|
||||||
depSpinner.Success()
|
|
||||||
}
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func InitializeCrossCompilation(verbose bool) error {
|
// BuildApplication will attempt to build the project based on the given inputs
|
||||||
// Check Docker
|
func BuildApplication(binaryName string, forceRebuild bool, buildMode string, packageApp bool, projectOptions *ProjectOptions) error {
|
||||||
if err := CheckIfInstalled("docker"); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
var packSpinner *spinner.Spinner
|
// Generate Windows assets if needed
|
||||||
msg := fmt.Sprintf("Pulling wailsapp/xgo:%s docker image... (may take a while)", xgoVersion)
|
if runtime.GOOS == "windows" {
|
||||||
if !verbose {
|
cleanUp := !packageApp
|
||||||
packSpinner = spinner.New(msg)
|
err := NewPackageHelper().PackageWindows(projectOptions, cleanUp)
|
||||||
packSpinner.SetSpinSpeed(50)
|
|
||||||
packSpinner.Start()
|
|
||||||
} else {
|
|
||||||
println(msg)
|
|
||||||
}
|
|
||||||
|
|
||||||
err := NewProgramHelper(verbose).RunCommandArray([]string{"docker",
|
|
||||||
"pull", fmt.Sprintf("wailsapp/xgo:%s", xgoVersion)})
|
|
||||||
|
|
||||||
if err != nil {
|
|
||||||
if packSpinner != nil {
|
|
||||||
packSpinner.Error()
|
|
||||||
}
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
if packSpinner != nil {
|
|
||||||
packSpinner.Success()
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// BuildDocker builds the project using the cross compiling wailsapp/xgo:<xgoVersion> container
|
|
||||||
func BuildDocker(binaryName string, buildMode string, projectOptions *ProjectOptions) error {
|
|
||||||
var packSpinner *spinner.Spinner
|
|
||||||
if buildMode == BuildModeBridge {
|
|
||||||
return fmt.Errorf("you cant serve the application in cross-compilation")
|
|
||||||
}
|
|
||||||
|
|
||||||
// Check build directory
|
|
||||||
buildDirectory := filepath.Join(fs.Cwd(), "build")
|
|
||||||
if !fs.DirExists(buildDirectory) {
|
|
||||||
err := fs.MkDir(buildDirectory)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
buildCommand := slicer.String()
|
// Check Mewn is installed
|
||||||
userid := 1000
|
err := CheckMewn()
|
||||||
currentUser, _ := user.Current()
|
|
||||||
if i, err := strconv.Atoi(currentUser.Uid); err == nil {
|
|
||||||
userid = i
|
|
||||||
}
|
|
||||||
for _, arg := range []string{
|
|
||||||
"docker",
|
|
||||||
"run",
|
|
||||||
"--rm",
|
|
||||||
"-v", fmt.Sprintf("%s:/build", filepath.Join(fs.Cwd(), "build")),
|
|
||||||
"-v", fmt.Sprintf("%s:/source", fs.Cwd()),
|
|
||||||
"-e", fmt.Sprintf("LOCAL_USER_ID=%v", userid),
|
|
||||||
"-e", fmt.Sprintf("FLAG_TAGS=%s", projectOptions.Tags),
|
|
||||||
"-e", fmt.Sprintf("FLAG_LDFLAGS=%s", ldFlags(projectOptions, buildMode)),
|
|
||||||
"-e", "FLAG_V=false",
|
|
||||||
"-e", "FLAG_X=false",
|
|
||||||
"-e", "FLAG_RACE=false",
|
|
||||||
"-e", "FLAG_BUILDMODE=default",
|
|
||||||
"-e", "FLAG_TRIMPATH=false",
|
|
||||||
"-e", fmt.Sprintf("TARGETS=%s/%s", projectOptions.Platform, projectOptions.Architecture),
|
|
||||||
"-e", "GOPROXY=",
|
|
||||||
"-e", "GO111MODULE=on",
|
|
||||||
} {
|
|
||||||
buildCommand.Add(arg)
|
|
||||||
}
|
|
||||||
|
|
||||||
if projectOptions.GoPath != "" {
|
|
||||||
buildCommand.Add("-v")
|
|
||||||
buildCommand.Add(fmt.Sprintf("%s:/go", projectOptions.GoPath))
|
|
||||||
}
|
|
||||||
|
|
||||||
buildCommand.Add(fmt.Sprintf("wailsapp/xgo:%s", xgoVersion))
|
|
||||||
buildCommand.Add(".")
|
|
||||||
|
|
||||||
compileMessage := fmt.Sprintf(
|
|
||||||
"Packing + Compiling project for %s/%s using docker image wailsapp/xgo:%s",
|
|
||||||
projectOptions.Platform, projectOptions.Architecture, xgoVersion)
|
|
||||||
|
|
||||||
if buildMode == BuildModeDebug {
|
|
||||||
compileMessage += " (Debug Mode)"
|
|
||||||
}
|
|
||||||
|
|
||||||
if !projectOptions.Verbose {
|
|
||||||
packSpinner = spinner.New(compileMessage + "...")
|
|
||||||
packSpinner.SetSpinSpeed(50)
|
|
||||||
packSpinner.Start()
|
|
||||||
} else {
|
|
||||||
println(compileMessage)
|
|
||||||
}
|
|
||||||
|
|
||||||
err := NewProgramHelper(projectOptions.Verbose).RunCommandArray(buildCommand.AsSlice())
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if packSpinner != nil {
|
|
||||||
packSpinner.Error()
|
|
||||||
}
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
if packSpinner != nil {
|
|
||||||
packSpinner.Success()
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// BuildNative builds on the target platform itself.
|
|
||||||
func BuildNative(binaryName string, forceRebuild bool, buildMode string, projectOptions *ProjectOptions) error {
|
|
||||||
|
|
||||||
if err := CheckWindres(); err != nil {
|
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -185,23 +73,23 @@ func BuildNative(binaryName string, forceRebuild bool, buildMode string, project
|
|||||||
compileMessage += " (Debug Mode)"
|
compileMessage += " (Debug Mode)"
|
||||||
}
|
}
|
||||||
|
|
||||||
var packSpinner *spinner.Spinner
|
packSpinner := spinner.New(compileMessage + "...")
|
||||||
if !projectOptions.Verbose {
|
packSpinner.SetSpinSpeed(50)
|
||||||
packSpinner = spinner.New(compileMessage + "...")
|
packSpinner.Start()
|
||||||
packSpinner.SetSpinSpeed(50)
|
|
||||||
packSpinner.Start()
|
|
||||||
} else {
|
|
||||||
println(compileMessage)
|
|
||||||
}
|
|
||||||
|
|
||||||
buildCommand := slicer.String()
|
buildCommand := slicer.String()
|
||||||
buildCommand.Add("go")
|
buildCommand.Add("mewn")
|
||||||
|
|
||||||
|
if buildMode == BuildModeBridge {
|
||||||
|
// Ignore errors
|
||||||
|
buildCommand.Add("-i")
|
||||||
|
}
|
||||||
|
|
||||||
buildCommand.Add("build")
|
buildCommand.Add("build")
|
||||||
|
|
||||||
if binaryName != "" {
|
if binaryName != "" {
|
||||||
// Alter binary name based on OS
|
// Alter binary name based on OS
|
||||||
switch projectOptions.Platform {
|
switch runtime.GOOS {
|
||||||
case "windows":
|
case "windows":
|
||||||
if !strings.HasSuffix(binaryName, ".exe") {
|
if !strings.HasSuffix(binaryName, ".exe") {
|
||||||
binaryName += ".exe"
|
binaryName += ".exe"
|
||||||
@@ -211,7 +99,8 @@ func BuildNative(binaryName string, forceRebuild bool, buildMode string, project
|
|||||||
binaryName = strings.TrimSuffix(binaryName, ".exe")
|
binaryName = strings.TrimSuffix(binaryName, ".exe")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
buildCommand.Add("-o", filepath.Join("build", binaryName))
|
buildCommand.Add("-o")
|
||||||
|
buildCommand.Add(binaryName)
|
||||||
}
|
}
|
||||||
|
|
||||||
// If we are forcing a rebuild
|
// If we are forcing a rebuild
|
||||||
@@ -219,58 +108,28 @@ func BuildNative(binaryName string, forceRebuild bool, buildMode string, project
|
|||||||
buildCommand.Add("-a")
|
buildCommand.Add("-a")
|
||||||
}
|
}
|
||||||
|
|
||||||
buildCommand.AddSlice([]string{"-ldflags", ldFlags(projectOptions, buildMode)})
|
// Setup ld flags
|
||||||
|
ldflags := "-w -s "
|
||||||
if projectOptions.Tags != "" {
|
if buildMode == BuildModeDebug {
|
||||||
buildCommand.AddSlice([]string{"--tags", projectOptions.Tags})
|
ldflags = ""
|
||||||
}
|
}
|
||||||
|
|
||||||
if projectOptions.Verbose {
|
// Add windows flags
|
||||||
fmt.Printf("Command: %v\n", buildCommand.AsSlice())
|
if runtime.GOOS == "windows" && buildMode == BuildModeProd {
|
||||||
|
ldflags += "-H windowsgui "
|
||||||
}
|
}
|
||||||
|
|
||||||
err := NewProgramHelper(projectOptions.Verbose).RunCommandArray(buildCommand.AsSlice())
|
ldflags += "-X github.com/wailsapp/wails.BuildMode=" + buildMode
|
||||||
if err != nil {
|
|
||||||
if packSpinner != nil {
|
buildCommand.AddSlice([]string{"-ldflags", ldflags})
|
||||||
packSpinner.Error()
|
err = NewProgramHelper().RunCommandArray(buildCommand.AsSlice())
|
||||||
}
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
if packSpinner != nil {
|
|
||||||
packSpinner.Success()
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// BuildApplication will attempt to build the project based on the given inputs
|
|
||||||
func BuildApplication(binaryName string, forceRebuild bool, buildMode string, packageApp bool, projectOptions *ProjectOptions) error {
|
|
||||||
var err error
|
|
||||||
|
|
||||||
if projectOptions.CrossCompile {
|
|
||||||
if err := InitializeCrossCompilation(projectOptions.Verbose); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
helper := NewPackageHelper(projectOptions.Platform)
|
|
||||||
|
|
||||||
// Generate windows resources
|
|
||||||
if projectOptions.Platform == "windows" {
|
|
||||||
if err := helper.PackageWindows(projectOptions, false); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if projectOptions.CrossCompile {
|
|
||||||
err = BuildDocker(binaryName, buildMode, projectOptions)
|
|
||||||
} else {
|
|
||||||
err = BuildNative(binaryName, forceRebuild, buildMode, projectOptions)
|
|
||||||
}
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
packSpinner.Error()
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
packSpinner.Success()
|
||||||
|
|
||||||
|
// packageApp
|
||||||
if packageApp {
|
if packageApp {
|
||||||
err = PackageApplication(projectOptions)
|
err = PackageApplication(projectOptions)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@@ -283,52 +142,61 @@ func BuildApplication(binaryName string, forceRebuild bool, buildMode string, pa
|
|||||||
|
|
||||||
// PackageApplication will attempt to package the application in a platform dependent way
|
// PackageApplication will attempt to package the application in a platform dependent way
|
||||||
func PackageApplication(projectOptions *ProjectOptions) error {
|
func PackageApplication(projectOptions *ProjectOptions) error {
|
||||||
var packageSpinner *spinner.Spinner
|
// Package app
|
||||||
if projectOptions.Verbose {
|
message := "Generating .app"
|
||||||
packageSpinner = spinner.New("Packaging application...")
|
if runtime.GOOS == "windows" {
|
||||||
packageSpinner.SetSpinSpeed(50)
|
err := CheckWindres()
|
||||||
packageSpinner.Start()
|
if err != nil {
|
||||||
}
|
return err
|
||||||
|
|
||||||
err := NewPackageHelper(projectOptions.Platform).Package(projectOptions)
|
|
||||||
if err != nil {
|
|
||||||
if packageSpinner != nil {
|
|
||||||
packageSpinner.Error()
|
|
||||||
}
|
}
|
||||||
|
message = "Generating resource bundle"
|
||||||
|
}
|
||||||
|
packageSpinner := spinner.New(message)
|
||||||
|
packageSpinner.SetSpinSpeed(50)
|
||||||
|
packageSpinner.Start()
|
||||||
|
err := NewPackageHelper().Package(projectOptions)
|
||||||
|
if err != nil {
|
||||||
|
packageSpinner.Error()
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if packageSpinner != nil {
|
packageSpinner.Success()
|
||||||
packageSpinner.Success()
|
|
||||||
}
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// BuildFrontend runs the given build command
|
// BuildFrontend runs the given build command
|
||||||
func BuildFrontend(projectOptions *ProjectOptions) error {
|
func BuildFrontend(buildCommand string) error {
|
||||||
var buildFESpinner *spinner.Spinner
|
buildFESpinner := spinner.New("Building frontend...")
|
||||||
if !projectOptions.Verbose {
|
buildFESpinner.SetSpinSpeed(50)
|
||||||
buildFESpinner = spinner.New("Building frontend...")
|
buildFESpinner.Start()
|
||||||
buildFESpinner.SetSpinSpeed(50)
|
err := NewProgramHelper().RunCommand(buildCommand)
|
||||||
buildFESpinner.Start()
|
|
||||||
} else {
|
|
||||||
println("Building frontend...")
|
|
||||||
}
|
|
||||||
err := NewProgramHelper(projectOptions.Verbose).RunCommand(projectOptions.FrontEnd.Build)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if buildFESpinner != nil {
|
buildFESpinner.Error()
|
||||||
buildFESpinner.Error()
|
|
||||||
}
|
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if buildFESpinner != nil {
|
buildFESpinner.Success()
|
||||||
buildFESpinner.Success()
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// CheckMewn checks if mewn is installed and if not, attempts to fetch it
|
||||||
|
func CheckMewn() (err error) {
|
||||||
|
programHelper := NewProgramHelper()
|
||||||
|
if !programHelper.IsInstalled("mewn") {
|
||||||
|
buildSpinner := spinner.New()
|
||||||
|
buildSpinner.SetSpinSpeed(50)
|
||||||
|
buildSpinner.Start("Installing Mewn asset packer...")
|
||||||
|
err := programHelper.InstallGoPackage("github.com/leaanthony/mewn/cmd/mewn")
|
||||||
|
if err != nil {
|
||||||
|
buildSpinner.Error()
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
buildSpinner.Success()
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// CheckWindres checks if Windres is installed and if not, aborts
|
// CheckWindres checks if Windres is installed and if not, aborts
|
||||||
func CheckWindres() (err error) {
|
func CheckWindres() (err error) {
|
||||||
if runtime.GOOS != "windows" { // FIXME: Handle windows cross-compile for windows!
|
if runtime.GOOS != "windows" {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
programHelper := NewProgramHelper()
|
programHelper := NewProgramHelper()
|
||||||
@@ -338,15 +206,6 @@ func CheckWindres() (err error) {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// CheckIfInstalled returns if application is installed
|
|
||||||
func CheckIfInstalled(application string) (err error) {
|
|
||||||
programHelper := NewProgramHelper()
|
|
||||||
if !programHelper.IsInstalled(application) {
|
|
||||||
return fmt.Errorf("%s not installed. Ensure you have installed %s correctly", application, application)
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// InstallFrontendDeps attempts to install the frontend dependencies based on the given options
|
// InstallFrontendDeps attempts to install the frontend dependencies based on the given options
|
||||||
func InstallFrontendDeps(projectDir string, projectOptions *ProjectOptions, forceRebuild bool, caller string) error {
|
func InstallFrontendDeps(projectDir string, projectOptions *ProjectOptions, forceRebuild bool, caller string) error {
|
||||||
|
|
||||||
@@ -357,14 +216,9 @@ func InstallFrontendDeps(projectDir string, projectOptions *ProjectOptions, forc
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Check if frontend deps have been updated
|
// Check if frontend deps have been updated
|
||||||
var feSpinner *spinner.Spinner
|
feSpinner := spinner.New("Ensuring frontend dependencies are up to date (This may take a while)")
|
||||||
if !projectOptions.Verbose {
|
feSpinner.SetSpinSpeed(50)
|
||||||
feSpinner = spinner.New("Ensuring frontend dependencies are up to date (This may take a while)")
|
feSpinner.Start()
|
||||||
feSpinner.SetSpinSpeed(50)
|
|
||||||
feSpinner.Start()
|
|
||||||
} else {
|
|
||||||
println("Ensuring frontend dependencies are up to date (This may take a while)")
|
|
||||||
}
|
|
||||||
|
|
||||||
requiresNPMInstall := true
|
requiresNPMInstall := true
|
||||||
|
|
||||||
@@ -396,11 +250,7 @@ func InstallFrontendDeps(projectDir string, projectOptions *ProjectOptions, forc
|
|||||||
if savedMD5sum == packageJSONMD5 {
|
if savedMD5sum == packageJSONMD5 {
|
||||||
// Same - no need for reinstall
|
// Same - no need for reinstall
|
||||||
requiresNPMInstall = false
|
requiresNPMInstall = false
|
||||||
if feSpinner != nil {
|
feSpinner.Success("Skipped frontend dependencies (-f to force rebuild)")
|
||||||
feSpinner.Success("Skipped frontend dependencies (-f to force rebuild)")
|
|
||||||
} else {
|
|
||||||
println("Skipped frontend dependencies (-f to force rebuild)")
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -409,53 +259,53 @@ func InstallFrontendDeps(projectDir string, projectOptions *ProjectOptions, forc
|
|||||||
// Different? Build
|
// Different? Build
|
||||||
if requiresNPMInstall || forceRebuild {
|
if requiresNPMInstall || forceRebuild {
|
||||||
// Install dependencies
|
// Install dependencies
|
||||||
err = NewProgramHelper(projectOptions.Verbose).RunCommand(projectOptions.FrontEnd.Install)
|
err = NewProgramHelper().RunCommand(projectOptions.FrontEnd.Install)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if feSpinner != nil {
|
feSpinner.Error()
|
||||||
feSpinner.Error()
|
|
||||||
}
|
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if feSpinner != nil {
|
feSpinner.Success()
|
||||||
feSpinner.Success()
|
|
||||||
}
|
|
||||||
|
|
||||||
// Update md5sum file
|
// Update md5sum file
|
||||||
err := os.WriteFile(md5sumFile, []byte(packageJSONMD5), 0644)
|
ioutil.WriteFile(md5sumFile, []byte(packageJSONMD5), 0644)
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Install the runtime
|
// Install the runtime
|
||||||
if caller == "build" {
|
err = InstallRuntime(caller, projectDir, projectOptions)
|
||||||
err = InstallProdRuntime(projectDir, projectOptions)
|
|
||||||
} else {
|
|
||||||
err = InstallBridge(projectDir, projectOptions)
|
|
||||||
}
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
// Build frontend
|
// Build frontend
|
||||||
err = BuildFrontend(projectOptions)
|
err = BuildFrontend(projectOptions.FrontEnd.Build)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// InstallRuntime installs the correct runtime for the type of build
|
||||||
|
func InstallRuntime(caller string, projectDir string, projectOptions *ProjectOptions) error {
|
||||||
|
if caller == "build" {
|
||||||
|
return InstallProdRuntime(projectDir, projectOptions)
|
||||||
|
}
|
||||||
|
|
||||||
|
return InstallBridge(projectDir, projectOptions)
|
||||||
|
}
|
||||||
|
|
||||||
// InstallBridge installs the relevant bridge javascript library
|
// InstallBridge installs the relevant bridge javascript library
|
||||||
func InstallBridge(projectDir string, projectOptions *ProjectOptions) error {
|
func InstallBridge(projectDir string, projectOptions *ProjectOptions) error {
|
||||||
|
bridgeFileData := mewn.String("../runtime/assets/bridge.js")
|
||||||
bridgeFileTarget := filepath.Join(projectDir, projectOptions.FrontEnd.Dir, "node_modules", "@wailsapp", "runtime", "init.js")
|
bridgeFileTarget := filepath.Join(projectDir, projectOptions.FrontEnd.Dir, "node_modules", "@wailsapp", "runtime", "init.js")
|
||||||
err := fs.CreateFile(bridgeFileTarget, wailsruntime.BridgeJS)
|
err := fs.CreateFile(bridgeFileTarget, []byte(bridgeFileData))
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
// InstallProdRuntime installs the production runtime
|
// InstallProdRuntime installs the production runtime
|
||||||
func InstallProdRuntime(projectDir string, projectOptions *ProjectOptions) error {
|
func InstallProdRuntime(projectDir string, projectOptions *ProjectOptions) error {
|
||||||
|
prodInit := mewn.String("../runtime/js/runtime/init.js")
|
||||||
bridgeFileTarget := filepath.Join(projectDir, projectOptions.FrontEnd.Dir, "node_modules", "@wailsapp", "runtime", "init.js")
|
bridgeFileTarget := filepath.Join(projectDir, projectOptions.FrontEnd.Dir, "node_modules", "@wailsapp", "runtime", "init.js")
|
||||||
err := fs.CreateFile(bridgeFileTarget, wailsruntime.InitJS)
|
err := fs.CreateFile(bridgeFileTarget, []byte(prodInit))
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -464,33 +314,15 @@ func InstallProdRuntime(projectDir string, projectOptions *ProjectOptions) error
|
|||||||
func ServeProject(projectOptions *ProjectOptions, logger *Logger) error {
|
func ServeProject(projectOptions *ProjectOptions, logger *Logger) error {
|
||||||
go func() {
|
go func() {
|
||||||
time.Sleep(2 * time.Second)
|
time.Sleep(2 * time.Second)
|
||||||
if projectOptions.Platform == "windows" {
|
|
||||||
logger.Yellow("*** Please note: Windows builds use mshtml which is only compatible with IE11. We strongly recommend only using IE11 when running 'wails serve'! For more information, please read https://wails.app/guides/windows/ ***")
|
|
||||||
}
|
|
||||||
logger.Green(">>>>> To connect, you will need to run '" + projectOptions.FrontEnd.Serve + "' in the '" + projectOptions.FrontEnd.Dir + "' directory <<<<<")
|
logger.Green(">>>>> To connect, you will need to run '" + projectOptions.FrontEnd.Serve + "' in the '" + projectOptions.FrontEnd.Dir + "' directory <<<<<")
|
||||||
}()
|
}()
|
||||||
location, err := filepath.Abs(filepath.Join("build", projectOptions.BinaryName))
|
location, err := filepath.Abs(projectOptions.BinaryName)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
logger.Yellow("Serving Application: " + location)
|
logger.Yellow("Serving Application: " + location)
|
||||||
var args []string
|
cmd := exec.Command(location)
|
||||||
if len(os.Args) > 2 {
|
|
||||||
foundArgSep := false
|
|
||||||
for index, arg := range os.Args[2:] {
|
|
||||||
if arg == "--" {
|
|
||||||
foundArgSep = true
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
if foundArgSep {
|
|
||||||
args = os.Args[index:]
|
|
||||||
break
|
|
||||||
}
|
|
||||||
}
|
|
||||||
logger.Yellow("Passing arguments: %+v", args)
|
|
||||||
}
|
|
||||||
cmd := exec.Command(location, args...)
|
|
||||||
cmd.Stdout = os.Stdout
|
cmd.Stdout = os.Stdout
|
||||||
cmd.Stderr = os.Stderr
|
cmd.Stderr = os.Stderr
|
||||||
err = cmd.Run()
|
err = cmd.Run()
|
||||||
@@ -500,43 +332,3 @@ func ServeProject(projectOptions *ProjectOptions, logger *Logger) error {
|
|||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func ldFlags(po *ProjectOptions, buildMode string) string {
|
|
||||||
// Setup ld flags
|
|
||||||
ldflags := "-w -s "
|
|
||||||
if buildMode == BuildModeDebug {
|
|
||||||
ldflags = ""
|
|
||||||
}
|
|
||||||
|
|
||||||
// Add windows flags
|
|
||||||
if po.Platform == "windows" && buildMode == BuildModeProd {
|
|
||||||
ldflags += "-H windowsgui "
|
|
||||||
}
|
|
||||||
|
|
||||||
if po.UseFirebug {
|
|
||||||
ldflags += "-X github.com/wailsapp/wails/lib/renderer.UseFirebug=true "
|
|
||||||
}
|
|
||||||
|
|
||||||
ldflags += "-X github.com/wailsapp/wails.BuildMode=" + buildMode
|
|
||||||
|
|
||||||
// Add additional ldflags passed in via the `ldflags` cli flag
|
|
||||||
if len(po.LdFlags) > 0 {
|
|
||||||
ldflags += " " + po.LdFlags
|
|
||||||
}
|
|
||||||
|
|
||||||
// If we wish to generate typescript
|
|
||||||
if po.typescriptDefsFilename != "" {
|
|
||||||
cwd, err := os.Getwd()
|
|
||||||
if err == nil {
|
|
||||||
filename := filepath.Join(cwd, po.FrontEnd.Dir, po.typescriptDefsFilename)
|
|
||||||
ldflags += " -X github.com/wailsapp/wails/lib/binding.typescriptDefinitionFilename=" + filename
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return ldflags
|
|
||||||
}
|
|
||||||
|
|
||||||
func getGitConfigValue(key string) (string, error) {
|
|
||||||
output, err := exec.Command("git", "config", "--get", "--null", key).Output()
|
|
||||||
// When using --null git appends a null character (\u0000) to the command output
|
|
||||||
return strings.TrimRight(string(output), "\u0000"), err
|
|
||||||
}
|
|
||||||
|
|||||||
104
cmd/linux.go
@@ -2,6 +2,7 @@ package cmd
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"io/ioutil"
|
||||||
"net/url"
|
"net/url"
|
||||||
"os"
|
"os"
|
||||||
"runtime"
|
"runtime"
|
||||||
@@ -42,38 +43,8 @@ const (
|
|||||||
Kali
|
Kali
|
||||||
// Neon distribution
|
// Neon distribution
|
||||||
Neon
|
Neon
|
||||||
// ArcoLinux distribution
|
|
||||||
ArcoLinux
|
|
||||||
// Manjaro distribution
|
// Manjaro distribution
|
||||||
Manjaro
|
Manjaro
|
||||||
// ManjaroARM distribution
|
|
||||||
ManjaroARM
|
|
||||||
// Deepin distribution
|
|
||||||
Deepin
|
|
||||||
// Raspbian distribution
|
|
||||||
Raspbian
|
|
||||||
// Tumbleweed (OpenSUSE) distribution
|
|
||||||
Tumbleweed
|
|
||||||
// Leap (OpenSUSE) distribution
|
|
||||||
Leap
|
|
||||||
// ArchLabs distribution
|
|
||||||
ArchLabs
|
|
||||||
// PopOS distribution
|
|
||||||
PopOS
|
|
||||||
// Solus distribution
|
|
||||||
Solus
|
|
||||||
// Ctlos Linux distribution
|
|
||||||
Ctlos
|
|
||||||
// EndeavourOS linux distribution
|
|
||||||
EndeavourOS
|
|
||||||
// Crux linux distribution
|
|
||||||
Crux
|
|
||||||
// RHEL distribution
|
|
||||||
RHEL
|
|
||||||
// NixOS distribution
|
|
||||||
NixOS
|
|
||||||
// Artix linux distribution
|
|
||||||
ArtixLinux
|
|
||||||
)
|
)
|
||||||
|
|
||||||
// DistroInfo contains all the information relating to a linux distribution
|
// DistroInfo contains all the information relating to a linux distribution
|
||||||
@@ -94,7 +65,7 @@ func GetLinuxDistroInfo() *DistroInfo {
|
|||||||
}
|
}
|
||||||
_, err := os.Stat("/etc/os-release")
|
_, err := os.Stat("/etc/os-release")
|
||||||
if !os.IsNotExist(err) {
|
if !os.IsNotExist(err) {
|
||||||
osRelease, _ := os.ReadFile("/etc/os-release")
|
osRelease, _ := ioutil.ReadFile("/etc/os-release")
|
||||||
result = parseOsRelease(string(osRelease))
|
result = parseOsRelease(string(osRelease))
|
||||||
}
|
}
|
||||||
return result
|
return result
|
||||||
@@ -122,28 +93,21 @@ func parseOsRelease(osRelease string) *DistroInfo {
|
|||||||
}
|
}
|
||||||
switch splitLine[0] {
|
switch splitLine[0] {
|
||||||
case "ID":
|
case "ID":
|
||||||
osID = strings.ToLower(strings.Trim(splitLine[1], "\""))
|
osID = strings.Trim(splitLine[1], "\"")
|
||||||
case "NAME":
|
case "NAME":
|
||||||
osNAME = strings.Trim(splitLine[1], "\"")
|
osNAME = strings.Trim(splitLine[1], "\"")
|
||||||
case "VERSION_ID":
|
case "VERSION_ID":
|
||||||
version = strings.Trim(splitLine[1], "\"")
|
version = strings.Trim(splitLine[1], "\"")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check distro name against list of distros
|
// Check distro name against list of distros
|
||||||
switch osID {
|
switch osID {
|
||||||
case "fedora":
|
case "fedora":
|
||||||
result.Distribution = Fedora
|
result.Distribution = Fedora
|
||||||
case "centos":
|
case "centos":
|
||||||
result.Distribution = CentOS
|
result.Distribution = CentOS
|
||||||
case "rhel":
|
|
||||||
result.Distribution = RHEL
|
|
||||||
case "arch":
|
case "arch":
|
||||||
result.Distribution = Arch
|
result.Distribution = Arch
|
||||||
case "archlabs":
|
|
||||||
result.Distribution = ArchLabs
|
|
||||||
case "ctlos":
|
|
||||||
result.Distribution = Ctlos
|
|
||||||
case "debian":
|
case "debian":
|
||||||
result.Distribution = Debian
|
result.Distribution = Debian
|
||||||
case "ubuntu":
|
case "ubuntu":
|
||||||
@@ -164,32 +128,8 @@ func parseOsRelease(osRelease string) *DistroInfo {
|
|||||||
result.Distribution = Kali
|
result.Distribution = Kali
|
||||||
case "neon":
|
case "neon":
|
||||||
result.Distribution = Neon
|
result.Distribution = Neon
|
||||||
case "arcolinux":
|
|
||||||
result.Distribution = ArcoLinux
|
|
||||||
case "manjaro":
|
case "manjaro":
|
||||||
result.Distribution = Manjaro
|
result.Distribution = Manjaro
|
||||||
case "manjaro-arm":
|
|
||||||
result.Distribution = ManjaroARM
|
|
||||||
case "deepin":
|
|
||||||
result.Distribution = Deepin
|
|
||||||
case "raspbian":
|
|
||||||
result.Distribution = Raspbian
|
|
||||||
case "opensuse-tumbleweed":
|
|
||||||
result.Distribution = Tumbleweed
|
|
||||||
case "opensuse-leap":
|
|
||||||
result.Distribution = Leap
|
|
||||||
case "pop":
|
|
||||||
result.Distribution = PopOS
|
|
||||||
case "solus":
|
|
||||||
result.Distribution = Solus
|
|
||||||
case "endeavouros":
|
|
||||||
result.Distribution = EndeavourOS
|
|
||||||
case "crux":
|
|
||||||
result.Distribution = Crux
|
|
||||||
case "nixos":
|
|
||||||
result.Distribution = NixOS
|
|
||||||
case "artix":
|
|
||||||
result.Distribution = ArtixLinux
|
|
||||||
default:
|
default:
|
||||||
result.Distribution = Unknown
|
result.Distribution = Unknown
|
||||||
}
|
}
|
||||||
@@ -226,17 +166,6 @@ func DpkgInstalled(packageName string) (bool, error) {
|
|||||||
return exitCode == 0, nil
|
return exitCode == 0, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// EOpkgInstalled uses dpkg to see if a package is installed
|
|
||||||
func EOpkgInstalled(packageName string) (bool, error) {
|
|
||||||
program := NewProgramHelper()
|
|
||||||
eopkg := program.FindProgram("eopkg")
|
|
||||||
if eopkg == nil {
|
|
||||||
return false, fmt.Errorf("cannot check dependencies: eopkg not found")
|
|
||||||
}
|
|
||||||
stdout, _, _, _ := eopkg.Run("info", packageName)
|
|
||||||
return strings.HasPrefix(stdout, "Installed"), nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// PacmanInstalled uses pacman to see if a package is installed.
|
// PacmanInstalled uses pacman to see if a package is installed.
|
||||||
func PacmanInstalled(packageName string) (bool, error) {
|
func PacmanInstalled(packageName string) (bool, error) {
|
||||||
program := NewProgramHelper()
|
program := NewProgramHelper()
|
||||||
@@ -270,29 +199,6 @@ func RpmInstalled(packageName string) (bool, error) {
|
|||||||
return exitCode == 0, nil
|
return exitCode == 0, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// PrtGetInstalled uses prt-get to see if a package is installed
|
|
||||||
func PrtGetInstalled(packageName string) (bool, error) {
|
|
||||||
program := NewProgramHelper()
|
|
||||||
prtget := program.FindProgram("prt-get")
|
|
||||||
if prtget == nil {
|
|
||||||
return false, fmt.Errorf("cannot check dependencies: prt-get not found")
|
|
||||||
}
|
|
||||||
_, _, exitCode, _ := prtget.Run("isinst", packageName)
|
|
||||||
return exitCode == 0, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// NixEnvInstalled uses nix-env to see if a package is installed
|
|
||||||
func NixEnvInstalled(packageName string) (bool, error) {
|
|
||||||
program := NewProgramHelper()
|
|
||||||
nixEnv := program.FindProgram("nix-env")
|
|
||||||
if nixEnv == nil {
|
|
||||||
return false, fmt.Errorf("cannot check dependencies: nix-env not found")
|
|
||||||
}
|
|
||||||
packageName = strings.ReplaceAll(packageName, "+", `\+`)
|
|
||||||
_, _, exitCode, _ := nixEnv.Run("-q", packageName)
|
|
||||||
return exitCode == 0, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// RequestSupportForDistribution promts the user to submit a request to support their
|
// RequestSupportForDistribution promts the user to submit a request to support their
|
||||||
// currently unsupported distribution
|
// currently unsupported distribution
|
||||||
func RequestSupportForDistribution(distroInfo *DistroInfo) error {
|
func RequestSupportForDistribution(distroInfo *DistroInfo) error {
|
||||||
@@ -331,9 +237,5 @@ func RequestSupportForDistribution(distroInfo *DistroInfo) error {
|
|||||||
|
|
||||||
fmt.Println("Opening browser to file request.")
|
fmt.Println("Opening browser to file request.")
|
||||||
browser.OpenURL(fullURL + url.PathEscape(params))
|
browser.OpenURL(fullURL + url.PathEscape(params))
|
||||||
result = Prompt("We have a guide for adding support for your distribution. Would you like to view it?", "yes")
|
|
||||||
if strings.ToLower(result) == "yes" {
|
|
||||||
browser.OpenURL("https://wails.app/guides/distro/")
|
|
||||||
}
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -22,25 +22,5 @@ UBUNTU_CODENAME=bionic
|
|||||||
if result.Distribution != Ubuntu {
|
if result.Distribution != Ubuntu {
|
||||||
t.Errorf("expected 'Ubuntu' ID but got '%d'", result.Distribution)
|
t.Errorf("expected 'Ubuntu' ID but got '%d'", result.Distribution)
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
func TestTumbleweedDetection(t *testing.T) {
|
|
||||||
osrelease := `
|
|
||||||
NAME="openSUSE Tumbleweed"
|
|
||||||
# VERSION="20200414"
|
|
||||||
ID="opensuse-tumbleweed"
|
|
||||||
ID_LIKE="opensuse suse"
|
|
||||||
VERSION_ID="20200414"
|
|
||||||
PRETTY_NAME="openSUSE Tumbleweed"
|
|
||||||
ANSI_COLOR="0;32"
|
|
||||||
CPE_NAME="cpe:/o:opensuse:tumbleweed:20200414"
|
|
||||||
BUG_REPORT_URL="https://bugs.opensuse.org"
|
|
||||||
HOME_URL="https://www.opensuse.org/"
|
|
||||||
LOGO="distributor-logo"
|
|
||||||
`
|
|
||||||
|
|
||||||
result := parseOsRelease(osrelease)
|
|
||||||
if result.Distribution != Tumbleweed {
|
|
||||||
t.Errorf("expected 'Tumbleweed' ID but got '%d'", result.Distribution)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,15 +1,12 @@
|
|||||||
package cmd
|
package cmd
|
||||||
|
|
||||||
import (
|
import (
|
||||||
_ "embed"
|
|
||||||
"log"
|
"log"
|
||||||
|
|
||||||
|
"github.com/leaanthony/mewn"
|
||||||
"gopkg.in/yaml.v3"
|
"gopkg.in/yaml.v3"
|
||||||
)
|
)
|
||||||
|
|
||||||
//go:embed linuxdb.yaml
|
|
||||||
var LinuxDBYaml []byte
|
|
||||||
|
|
||||||
// LinuxDB is the database for linux distribution data.
|
// LinuxDB is the database for linux distribution data.
|
||||||
type LinuxDB struct {
|
type LinuxDB struct {
|
||||||
Distributions map[string]*Distribution `yaml:"distributions"`
|
Distributions map[string]*Distribution `yaml:"distributions"`
|
||||||
@@ -82,10 +79,11 @@ func (l *LinuxDB) GetDistro(distro string) *Distribution {
|
|||||||
// NewLinuxDB creates a new LinuxDB instance from the bundled
|
// NewLinuxDB creates a new LinuxDB instance from the bundled
|
||||||
// linuxdb.yaml file.
|
// linuxdb.yaml file.
|
||||||
func NewLinuxDB() *LinuxDB {
|
func NewLinuxDB() *LinuxDB {
|
||||||
|
data := mewn.Bytes("./linuxdb.yaml")
|
||||||
result := LinuxDB{
|
result := LinuxDB{
|
||||||
Distributions: make(map[string]*Distribution),
|
Distributions: make(map[string]*Distribution),
|
||||||
}
|
}
|
||||||
err := result.ImportData(LinuxDBYaml)
|
err := result.ImportData(data)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal(err)
|
log.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|||||||
187
cmd/linuxdb.yaml
@@ -28,15 +28,6 @@ distributions:
|
|||||||
gccversioncommand: &gccdumpfullversion -dumpfullversion
|
gccversioncommand: &gccdumpfullversion -dumpfullversion
|
||||||
programs: *debiandefaultprograms
|
programs: *debiandefaultprograms
|
||||||
libraries: *debiandefaultlibraries
|
libraries: *debiandefaultlibraries
|
||||||
pop:
|
|
||||||
id: pop
|
|
||||||
releases:
|
|
||||||
default:
|
|
||||||
version: default
|
|
||||||
name: Pop!_OS
|
|
||||||
gccversioncommand: &gccdumpfullversion -dumpfullversion
|
|
||||||
programs: *debiandefaultprograms
|
|
||||||
libraries: *debiandefaultlibraries
|
|
||||||
kali:
|
kali:
|
||||||
id: kali
|
id: kali
|
||||||
releases:
|
releases:
|
||||||
@@ -91,15 +82,6 @@ distributions:
|
|||||||
gccversioncommand: *gccdumpfullversion
|
gccversioncommand: *gccdumpfullversion
|
||||||
programs: *debiandefaultprograms
|
programs: *debiandefaultprograms
|
||||||
libraries: *debiandefaultlibraries
|
libraries: *debiandefaultlibraries
|
||||||
deepin:
|
|
||||||
id: deepin
|
|
||||||
releases:
|
|
||||||
default:
|
|
||||||
version: default
|
|
||||||
name: Deepin
|
|
||||||
gccversioncommand: *gccdumpfullversion
|
|
||||||
programs: *debiandefaultprograms
|
|
||||||
libraries: *debiandefaultlibraries
|
|
||||||
void:
|
void:
|
||||||
id: void
|
id: void
|
||||||
releases:
|
releases:
|
||||||
@@ -138,25 +120,6 @@ distributions:
|
|||||||
help: Please install with `sudo yum install gtk3-devel` and try again
|
help: Please install with `sudo yum install gtk3-devel` and try again
|
||||||
- name: webkitgtk3-devel
|
- name: webkitgtk3-devel
|
||||||
help: Please install with `sudo yum install webkitgtk3-devel` and try again
|
help: Please install with `sudo yum install webkitgtk3-devel` and try again
|
||||||
rhel:
|
|
||||||
id: rhel
|
|
||||||
releases:
|
|
||||||
default:
|
|
||||||
version: default
|
|
||||||
name: Red Hat Enterprise Linux
|
|
||||||
gccversioncommand: *gccdumpversion
|
|
||||||
programs:
|
|
||||||
- name: gcc
|
|
||||||
help: Please install with `sudo yum install gcc-c++ make` and try again
|
|
||||||
- name: pkg-config
|
|
||||||
help: Please install with `sudo yum install pkgconf-pkg-config` and try again
|
|
||||||
- name: npm
|
|
||||||
help: Please install with `sudo yum install epel-release && sudo yum install nodejs` and try again
|
|
||||||
libraries:
|
|
||||||
- name: gtk3-devel
|
|
||||||
help: Please install with `sudo yum install gtk3-devel` and try again
|
|
||||||
- name: webkitgtk3-devel
|
|
||||||
help: Please install with `sudo yum install webkitgtk3-devel` and try again
|
|
||||||
fedora:
|
fedora:
|
||||||
id: fedora
|
id: fedora
|
||||||
releases:
|
releases:
|
||||||
@@ -195,51 +158,6 @@ distributions:
|
|||||||
help: Please install with `sudo pacman -S gtk3` and try again
|
help: Please install with `sudo pacman -S gtk3` and try again
|
||||||
- name: webkit2gtk
|
- name: webkit2gtk
|
||||||
help: Please install with `sudo pacman -S webkit2gtk` and try again
|
help: Please install with `sudo pacman -S webkit2gtk` and try again
|
||||||
arcolinux:
|
|
||||||
id: arcolinux
|
|
||||||
releases:
|
|
||||||
default:
|
|
||||||
version: default
|
|
||||||
name: ArcoLinux
|
|
||||||
gccversioncommand: *gccdumpversion
|
|
||||||
programs: *archdefaultprograms
|
|
||||||
libraries: *archdefaultlibraries
|
|
||||||
archlabs:
|
|
||||||
id: archlabs
|
|
||||||
releases:
|
|
||||||
default:
|
|
||||||
version: default
|
|
||||||
name: ArchLabs
|
|
||||||
gccversioncommand: *gccdumpversion
|
|
||||||
programs: *archdefaultprograms
|
|
||||||
libraries: *archdefaultlibraries
|
|
||||||
artix:
|
|
||||||
id: artix
|
|
||||||
releases:
|
|
||||||
default:
|
|
||||||
version: default
|
|
||||||
name: Artix Linux
|
|
||||||
gccversioncommand: *gccdumpversion
|
|
||||||
programs: *archdefaultprograms
|
|
||||||
libraries: *archdefaultlibraries
|
|
||||||
ctlos:
|
|
||||||
id: ctlos
|
|
||||||
releases:
|
|
||||||
default:
|
|
||||||
version: default
|
|
||||||
name: Ctlos Linux
|
|
||||||
gccversioncommand: *gccdumpversion
|
|
||||||
programs: *archdefaultprograms
|
|
||||||
libraries: *archdefaultlibraries
|
|
||||||
endeavouros:
|
|
||||||
id: endeavouros
|
|
||||||
releases:
|
|
||||||
default:
|
|
||||||
version: default
|
|
||||||
name: EndeavourOS
|
|
||||||
gccversioncommand: *gccdumpversion
|
|
||||||
programs: *archdefaultprograms
|
|
||||||
libraries: *archdefaultlibraries
|
|
||||||
manjaro:
|
manjaro:
|
||||||
id: manjaro
|
id: manjaro
|
||||||
releases:
|
releases:
|
||||||
@@ -249,15 +167,6 @@ distributions:
|
|||||||
gccversioncommand: *gccdumpversion
|
gccversioncommand: *gccdumpversion
|
||||||
programs: *archdefaultprograms
|
programs: *archdefaultprograms
|
||||||
libraries: *archdefaultlibraries
|
libraries: *archdefaultlibraries
|
||||||
manjaro-arm:
|
|
||||||
id: manjaro-arm
|
|
||||||
releases:
|
|
||||||
default:
|
|
||||||
version: default
|
|
||||||
name: Manjaro-ARM
|
|
||||||
gccversioncommand: *gccdumpversion
|
|
||||||
programs: *archdefaultprograms
|
|
||||||
libraries: *archdefaultlibraries
|
|
||||||
gentoo:
|
gentoo:
|
||||||
id: gentoo
|
id: gentoo
|
||||||
releases:
|
releases:
|
||||||
@@ -277,99 +186,3 @@ distributions:
|
|||||||
help: Please install with `sudo emerge gtk+:3` and try again
|
help: Please install with `sudo emerge gtk+:3` and try again
|
||||||
- name: webkit-gtk
|
- name: webkit-gtk
|
||||||
help: Please install with `sudo emerge webkit-gtk` and try again
|
help: Please install with `sudo emerge webkit-gtk` and try again
|
||||||
|
|
||||||
raspbian:
|
|
||||||
id: raspbian
|
|
||||||
releases:
|
|
||||||
default:
|
|
||||||
version: default
|
|
||||||
name: Raspbian
|
|
||||||
gccversioncommand: *gccdumpfullversion
|
|
||||||
programs: *debiandefaultprograms
|
|
||||||
libraries: *debiandefaultlibraries
|
|
||||||
solus:
|
|
||||||
id: solus
|
|
||||||
releases:
|
|
||||||
default:
|
|
||||||
version: default
|
|
||||||
name: Solus
|
|
||||||
gccversioncommand: *gccdumpfullversion
|
|
||||||
programs: &solusdefaultprograms
|
|
||||||
- name: gcc
|
|
||||||
help: Please install with `sudo eopkg it -c system.devel` and try again
|
|
||||||
- name: pkg-config
|
|
||||||
help: Please install with `sudo eopkg it -c system.devel` and try again
|
|
||||||
- name: npm
|
|
||||||
help: Please install with `sudo eopkg it nodejs` and try again
|
|
||||||
libraries: &solusdefaultlibraries
|
|
||||||
- name: libgtk-3-devel
|
|
||||||
help: Please install with `sudo eopkg it libgtk-3-devel` and try again
|
|
||||||
- name: libwebkit-gtk-devel
|
|
||||||
help: Please install with `sudo eopkg it libwebkit-gtk-devel` and try again
|
|
||||||
|
|
||||||
opensuse-tumbleweed:
|
|
||||||
id: opensuse-tumbleweed
|
|
||||||
releases:
|
|
||||||
default:
|
|
||||||
version: default
|
|
||||||
name: openSUSE Tumbleweed
|
|
||||||
gccversioncommand: *gccdumpfullversion
|
|
||||||
programs: &opensusedefaultprograms
|
|
||||||
- name: gcc
|
|
||||||
help: Please install with `sudo zypper in gcc-c++` and try again
|
|
||||||
- name: pkg-config
|
|
||||||
help: Please install with `sudo zypper in pkgconf-pkg-config` and try again
|
|
||||||
- name: npm
|
|
||||||
help: Please install `sudo zypper in nodejs` and try again
|
|
||||||
libraries: &opensusedefaultlibraries
|
|
||||||
- name: gtk3-devel
|
|
||||||
help: Please install with `sudo zypper in gtk3-devel` and try again
|
|
||||||
- name: webkit2gtk3-devel
|
|
||||||
help: Please install with `sudo zypper in webkit2gtk3-devel` and try again
|
|
||||||
opensuse-leap:
|
|
||||||
id: opensuse-leap
|
|
||||||
releases:
|
|
||||||
default:
|
|
||||||
version: default
|
|
||||||
name: openSUSE Leap
|
|
||||||
gccversioncommand: *gccdumpfullversion
|
|
||||||
programs: *opensusedefaultprograms
|
|
||||||
libraries: *opensusedefaultlibraries
|
|
||||||
crux:
|
|
||||||
id: crux
|
|
||||||
releases:
|
|
||||||
default:
|
|
||||||
version: default
|
|
||||||
name: Crux Linux
|
|
||||||
gccversioncommand: *gccdumpversion
|
|
||||||
programs:
|
|
||||||
- name: gcc
|
|
||||||
help: Please install with `sudo prt-get depinst gcc-c++ make` and try again
|
|
||||||
- name: pkg-config
|
|
||||||
help: Please install with `sudo prt-get depinst pkg-config` and try again
|
|
||||||
- name: npm
|
|
||||||
help: Please install with `sudo prt-get depinst nodejs` and try again
|
|
||||||
libraries:
|
|
||||||
- name: gtk3
|
|
||||||
help: Please install with `sudo prt-get depinst gtk3` and try again
|
|
||||||
- name: webkitgtk
|
|
||||||
help: Please install with `sudo prt-get depinst webkitgtk` and try again
|
|
||||||
nixos:
|
|
||||||
id: nixos
|
|
||||||
releases:
|
|
||||||
default:
|
|
||||||
version: default
|
|
||||||
name: NixOS
|
|
||||||
gccversioncommand: *gccdumpversion
|
|
||||||
programs:
|
|
||||||
- name: gcc
|
|
||||||
help: Please install with `nix-env -iA nixos.gcc`
|
|
||||||
- name: pkg-config
|
|
||||||
help: Please install with `nix-env -iA nixos.pkg-config`
|
|
||||||
- name: npm
|
|
||||||
help: Please install with `nix-env -iA nixos.nodejs`
|
|
||||||
libraries:
|
|
||||||
- name: gtk+3
|
|
||||||
help: Please install with `nix-env -iA nixos.gtk3`
|
|
||||||
- name: webkitgtk
|
|
||||||
help: Please install with `nix-env -iA nixos.nodePackages.webkitgtk`
|
|
||||||
|
|||||||
299
cmd/package.go
@@ -1,12 +1,10 @@
|
|||||||
package cmd
|
package cmd
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bufio"
|
|
||||||
"bytes"
|
"bytes"
|
||||||
"encoding/binary"
|
|
||||||
"fmt"
|
"fmt"
|
||||||
"image"
|
"image"
|
||||||
"image/png"
|
"io/ioutil"
|
||||||
"os"
|
"os"
|
||||||
"path"
|
"path"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
@@ -16,24 +14,21 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/jackmordaunt/icns"
|
"github.com/jackmordaunt/icns"
|
||||||
"golang.org/x/image/draw"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
// PackageHelper helps with the 'wails package' command
|
// PackageHelper helps with the 'wails package' command
|
||||||
type PackageHelper struct {
|
type PackageHelper struct {
|
||||||
platform string
|
fs *FSHelper
|
||||||
fs *FSHelper
|
log *Logger
|
||||||
log *Logger
|
system *SystemHelper
|
||||||
system *SystemHelper
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// NewPackageHelper creates a new PackageHelper!
|
// NewPackageHelper creates a new PackageHelper!
|
||||||
func NewPackageHelper(platform string) *PackageHelper {
|
func NewPackageHelper() *PackageHelper {
|
||||||
return &PackageHelper{
|
return &PackageHelper{
|
||||||
platform: platform,
|
fs: NewFSHelper(),
|
||||||
fs: NewFSHelper(),
|
log: NewLogger(),
|
||||||
log: NewLogger(),
|
system: NewSystemHelper(),
|
||||||
system: NewSystemHelper(),
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -58,111 +53,6 @@ func newPlistData(title, exe, packageID, version, author string) *plistData {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
type windowsIcoHeader struct {
|
|
||||||
_ uint16
|
|
||||||
imageType uint16
|
|
||||||
imageCount uint16
|
|
||||||
}
|
|
||||||
|
|
||||||
type windowsIcoDescriptor struct {
|
|
||||||
width uint8
|
|
||||||
height uint8
|
|
||||||
colours uint8
|
|
||||||
_ uint8
|
|
||||||
planes uint16
|
|
||||||
bpp uint16
|
|
||||||
size uint32
|
|
||||||
offset uint32
|
|
||||||
}
|
|
||||||
|
|
||||||
type windowsIcoContainer struct {
|
|
||||||
Header windowsIcoDescriptor
|
|
||||||
Data []byte
|
|
||||||
}
|
|
||||||
|
|
||||||
func generateWindowsIcon(pngFilename string, iconfile string) error {
|
|
||||||
sizes := []int{256, 128, 64, 48, 32, 16}
|
|
||||||
|
|
||||||
pngfile, err := os.Open(pngFilename)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
defer pngfile.Close()
|
|
||||||
|
|
||||||
pngdata, err := png.Decode(pngfile)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
icons := []windowsIcoContainer{}
|
|
||||||
|
|
||||||
for _, size := range sizes {
|
|
||||||
rect := image.Rect(0, 0, int(size), int(size))
|
|
||||||
rawdata := image.NewRGBA(rect)
|
|
||||||
scale := draw.CatmullRom
|
|
||||||
scale.Scale(rawdata, rect, pngdata, pngdata.Bounds(), draw.Over, nil)
|
|
||||||
|
|
||||||
icondata := new(bytes.Buffer)
|
|
||||||
writer := bufio.NewWriter(icondata)
|
|
||||||
err = png.Encode(writer, rawdata)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
writer.Flush()
|
|
||||||
|
|
||||||
imgSize := size
|
|
||||||
if imgSize >= 256 {
|
|
||||||
imgSize = 0
|
|
||||||
}
|
|
||||||
|
|
||||||
data := icondata.Bytes()
|
|
||||||
|
|
||||||
icn := windowsIcoContainer{
|
|
||||||
Header: windowsIcoDescriptor{
|
|
||||||
width: uint8(imgSize),
|
|
||||||
height: uint8(imgSize),
|
|
||||||
planes: 1,
|
|
||||||
bpp: 32,
|
|
||||||
size: uint32(len(data)),
|
|
||||||
},
|
|
||||||
Data: data,
|
|
||||||
}
|
|
||||||
icons = append(icons, icn)
|
|
||||||
}
|
|
||||||
|
|
||||||
outfile, err := os.Create(iconfile)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
defer outfile.Close()
|
|
||||||
|
|
||||||
ico := windowsIcoHeader{
|
|
||||||
imageType: 1,
|
|
||||||
imageCount: uint16(len(sizes)),
|
|
||||||
}
|
|
||||||
err = binary.Write(outfile, binary.LittleEndian, ico)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
offset := uint32(6 + 16*len(sizes))
|
|
||||||
for _, icon := range icons {
|
|
||||||
icon.Header.offset = offset
|
|
||||||
err = binary.Write(outfile, binary.LittleEndian, icon.Header)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
offset += icon.Header.size
|
|
||||||
}
|
|
||||||
for _, icon := range icons {
|
|
||||||
_, err = outfile.Write(icon.Data)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func defaultString(val string, defaultVal string) string {
|
func defaultString(val string, defaultVal string) string {
|
||||||
if val != "" {
|
if val != "" {
|
||||||
return val
|
return val
|
||||||
@@ -173,30 +63,29 @@ func defaultString(val string, defaultVal string) string {
|
|||||||
func (b *PackageHelper) getPackageFileBaseDir() string {
|
func (b *PackageHelper) getPackageFileBaseDir() string {
|
||||||
// Calculate template base dir
|
// Calculate template base dir
|
||||||
_, filename, _, _ := runtime.Caller(1)
|
_, filename, _, _ := runtime.Caller(1)
|
||||||
return filepath.Join(path.Dir(filename), "packages", b.platform)
|
return filepath.Join(path.Dir(filename), "packages", runtime.GOOS)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Package the application into a platform specific package
|
// Package the application into a platform specific package
|
||||||
func (b *PackageHelper) Package(po *ProjectOptions) error {
|
func (b *PackageHelper) Package(po *ProjectOptions) error {
|
||||||
switch b.platform {
|
switch runtime.GOOS {
|
||||||
case "darwin":
|
case "darwin":
|
||||||
|
// Check we have the exe
|
||||||
|
if !b.fs.FileExists(po.BinaryName) {
|
||||||
|
return fmt.Errorf("cannot bundle non-existent binary file '%s'. Please build with 'wails build' first", po.BinaryName)
|
||||||
|
}
|
||||||
return b.packageOSX(po)
|
return b.packageOSX(po)
|
||||||
case "windows":
|
case "windows":
|
||||||
return b.PackageWindows(po, true)
|
return b.PackageWindows(po, false)
|
||||||
case "linux":
|
case "linux":
|
||||||
return b.packageLinux(po)
|
return fmt.Errorf("linux is not supported at this time. Please see https://github.com/wailsapp/wails/issues/2")
|
||||||
default:
|
default:
|
||||||
return fmt.Errorf("platform '%s' not supported for bundling yet", b.platform)
|
return fmt.Errorf("platform '%s' not supported for bundling yet", runtime.GOOS)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (b *PackageHelper) packageLinux(po *ProjectOptions) error {
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// Package the application for OSX
|
// Package the application for OSX
|
||||||
func (b *PackageHelper) packageOSX(po *ProjectOptions) error {
|
func (b *PackageHelper) packageOSX(po *ProjectOptions) error {
|
||||||
build := path.Join(b.fs.Cwd(), "build")
|
|
||||||
|
|
||||||
system := NewSystemHelper()
|
system := NewSystemHelper()
|
||||||
config, err := system.LoadConfig()
|
config, err := system.LoadConfig()
|
||||||
@@ -211,68 +100,39 @@ func (b *PackageHelper) packageOSX(po *ProjectOptions) error {
|
|||||||
packageID := strings.Join([]string{"wails", name, version}, ".")
|
packageID := strings.Join([]string{"wails", name, version}, ".")
|
||||||
plistData := newPlistData(name, exe, packageID, version, author)
|
plistData := newPlistData(name, exe, packageID, version, author)
|
||||||
appname := po.Name + ".app"
|
appname := po.Name + ".app"
|
||||||
plistFilename := path.Join(build, appname, "Contents", "Info.plist")
|
|
||||||
customPlist := path.Join(b.fs.Cwd(), "info.plist")
|
|
||||||
|
|
||||||
// Check binary exists
|
// Check binary exists
|
||||||
source := path.Join(build, exe)
|
source := path.Join(b.fs.Cwd(), exe)
|
||||||
if po.CrossCompile == true {
|
|
||||||
file, err := b.fs.FindFile(build, "darwin")
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
source = path.Join(build, file)
|
|
||||||
}
|
|
||||||
|
|
||||||
if !b.fs.FileExists(source) {
|
if !b.fs.FileExists(source) {
|
||||||
// We need to build!
|
// We need to build!
|
||||||
return fmt.Errorf("Target '%s' not available. Has it been compiled yet?", source)
|
return fmt.Errorf("Target '%s' not available. Has it been compiled yet?", exe)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Remove the existing package
|
// Remove the existing package
|
||||||
os.RemoveAll(appname)
|
os.RemoveAll(appname)
|
||||||
|
|
||||||
// Create directories
|
exeDir := path.Join(b.fs.Cwd(), appname, "/Contents/MacOS")
|
||||||
exeDir := path.Join(build, appname, "/Contents/MacOS")
|
|
||||||
b.fs.MkDirs(exeDir, 0755)
|
b.fs.MkDirs(exeDir, 0755)
|
||||||
resourceDir := path.Join(build, appname, "/Contents/Resources")
|
resourceDir := path.Join(b.fs.Cwd(), appname, "/Contents/Resources")
|
||||||
b.fs.MkDirs(resourceDir, 0755)
|
b.fs.MkDirs(resourceDir, 0755)
|
||||||
|
tmpl := template.New("infoPlist")
|
||||||
|
plistFile := filepath.Join(b.getPackageFileBaseDir(), "info.plist")
|
||||||
|
infoPlist, err := ioutil.ReadFile(plistFile)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
tmpl.Parse(string(infoPlist))
|
||||||
|
|
||||||
// Do we have a custom plist in the project directory?
|
// Write the template to a buffer
|
||||||
if !fs.FileExists(customPlist) {
|
var tpl bytes.Buffer
|
||||||
|
err = tmpl.Execute(&tpl, plistData)
|
||||||
// No - create a new plist from our defaults
|
if err != nil {
|
||||||
tmpl := template.New("infoPlist")
|
return err
|
||||||
plistFile := filepath.Join(b.getPackageFileBaseDir(), "info.plist")
|
}
|
||||||
infoPlist, err := os.ReadFile(plistFile)
|
filename := path.Join(b.fs.Cwd(), appname, "Contents", "Info.plist")
|
||||||
if err != nil {
|
err = ioutil.WriteFile(filename, tpl.Bytes(), 0644)
|
||||||
return err
|
if err != nil {
|
||||||
}
|
return err
|
||||||
tmpl.Parse(string(infoPlist))
|
|
||||||
|
|
||||||
// Write the template to a buffer
|
|
||||||
var tpl bytes.Buffer
|
|
||||||
err = tmpl.Execute(&tpl, plistData)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
// Save to the package
|
|
||||||
err = os.WriteFile(plistFilename, tpl.Bytes(), 0644)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
// Also write to project directory for customisation
|
|
||||||
err = os.WriteFile(customPlist, tpl.Bytes(), 0644)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
// Yes - we have a plist. Copy it to the package verbatim
|
|
||||||
err = fs.CopyFile(customPlist, plistFilename)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Copy executable
|
// Copy executable
|
||||||
@@ -290,39 +150,22 @@ func (b *PackageHelper) packageOSX(po *ProjectOptions) error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
// CleanWindows removes any windows related files found in the directory
|
|
||||||
func (b *PackageHelper) CleanWindows(po *ProjectOptions) {
|
|
||||||
pdir := b.fs.Cwd()
|
|
||||||
basename := strings.TrimSuffix(po.BinaryName, ".exe")
|
|
||||||
exts := []string{".ico", ".exe.manifest", ".rc", "-res.syso"}
|
|
||||||
rsrcs := []string{}
|
|
||||||
for _, ext := range exts {
|
|
||||||
rsrcs = append(rsrcs, filepath.Join(pdir, basename+ext))
|
|
||||||
}
|
|
||||||
b.fs.RemoveFiles(rsrcs, true)
|
|
||||||
}
|
|
||||||
|
|
||||||
// PackageWindows packages the application for windows platforms
|
// PackageWindows packages the application for windows platforms
|
||||||
func (b *PackageHelper) PackageWindows(po *ProjectOptions, cleanUp bool) error {
|
func (b *PackageHelper) PackageWindows(po *ProjectOptions, cleanUp bool) error {
|
||||||
outputDir := b.fs.Cwd()
|
|
||||||
basename := strings.TrimSuffix(po.BinaryName, ".exe")
|
basename := strings.TrimSuffix(po.BinaryName, ".exe")
|
||||||
|
|
||||||
// Copy default icon if needed
|
// Copy icon
|
||||||
icon, err := b.copyIcon()
|
tgtIconFile := filepath.Join(b.fs.Cwd(), basename+".ico")
|
||||||
if err != nil {
|
if !b.fs.FileExists(tgtIconFile) {
|
||||||
return err
|
srcIconfile := filepath.Join(b.getPackageFileBaseDir(), "wails.ico")
|
||||||
}
|
err := b.fs.CopyFile(srcIconfile, tgtIconFile)
|
||||||
|
|
||||||
// Generate icon from PNG if it doesn't exist
|
|
||||||
if !fs.FileExists(basename + ".ico") {
|
|
||||||
err = generateWindowsIcon(icon, basename+".ico")
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Copy manifest
|
// Copy manifest
|
||||||
tgtManifestFile := filepath.Join(outputDir, basename+".exe.manifest")
|
tgtManifestFile := filepath.Join(b.fs.Cwd(), basename+".exe.manifest")
|
||||||
if !b.fs.FileExists(tgtManifestFile) {
|
if !b.fs.FileExists(tgtManifestFile) {
|
||||||
srcManifestfile := filepath.Join(b.getPackageFileBaseDir(), "wails.exe.manifest")
|
srcManifestfile := filepath.Join(b.getPackageFileBaseDir(), "wails.exe.manifest")
|
||||||
err := b.fs.CopyFile(srcManifestfile, tgtManifestFile)
|
err := b.fs.CopyFile(srcManifestfile, tgtManifestFile)
|
||||||
@@ -332,52 +175,48 @@ func (b *PackageHelper) PackageWindows(po *ProjectOptions, cleanUp bool) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Copy rc file
|
// Copy rc file
|
||||||
tgtRCFile := filepath.Join(outputDir, basename+".rc")
|
tgtRCFile := filepath.Join(b.fs.Cwd(), basename+".rc")
|
||||||
if !b.fs.FileExists(tgtRCFile) {
|
if !b.fs.FileExists(tgtRCFile) {
|
||||||
srcRCfile := filepath.Join(b.getPackageFileBaseDir(), "wails.rc")
|
srcRCfile := filepath.Join(b.getPackageFileBaseDir(), "wails.rc")
|
||||||
rcfilebytes, err := os.ReadFile(srcRCfile)
|
rcfilebytes, err := ioutil.ReadFile(srcRCfile)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
rcfiledata := strings.Replace(string(rcfilebytes), "$NAME$", basename, -1)
|
rcfiledata := strings.Replace(string(rcfilebytes), "$NAME$", basename, -1)
|
||||||
err = os.WriteFile(tgtRCFile, []byte(rcfiledata), 0755)
|
err = ioutil.WriteFile(tgtRCFile, []byte(rcfiledata), 0755)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Build syso
|
// Build syso
|
||||||
sysofile := filepath.Join(outputDir, basename+"-res.syso")
|
sysofile := filepath.Join(b.fs.Cwd(), basename+"-res.syso")
|
||||||
|
|
||||||
// cross-compile
|
batfile, err := fs.LocalDir(".")
|
||||||
if b.platform != runtime.GOOS {
|
if err != nil {
|
||||||
args := []string{
|
return err
|
||||||
"docker", "run", "--rm",
|
}
|
||||||
"-v", outputDir + ":/build",
|
|
||||||
"--entrypoint", "/bin/sh",
|
|
||||||
"wailsapp/xgo:1.16.3",
|
|
||||||
"-c", "/usr/bin/x86_64-w64-mingw32-windres -o /build/" + basename + "-res.syso /build/" + basename + ".rc",
|
|
||||||
}
|
|
||||||
if err := NewProgramHelper().RunCommandArray(args); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
batfile, err := fs.LocalDir(".")
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
windresBatFile := filepath.Join(batfile.fullPath, "windres.bat")
|
windresBatFile := filepath.Join(batfile.fullPath, "windres.bat")
|
||||||
windresCommand := []string{windresBatFile, sysofile, tgtRCFile}
|
windresCommand := []string{windresBatFile, sysofile, tgtRCFile}
|
||||||
err = NewProgramHelper().RunCommandArray(windresCommand)
|
err = NewProgramHelper().RunCommandArray(windresCommand)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
// clean up
|
||||||
|
if cleanUp {
|
||||||
|
filesToDelete := []string{tgtIconFile, tgtManifestFile, tgtRCFile, sysofile}
|
||||||
|
err := b.fs.RemoveFiles(filesToDelete)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (b *PackageHelper) copyIcon() (string, error) {
|
func (b *PackageHelper) copyIcon(resourceDir string) (string, error) {
|
||||||
|
|
||||||
// TODO: Read this from project.json
|
// TODO: Read this from project.json
|
||||||
const appIconFilename = "appicon.png"
|
const appIconFilename = "appicon.png"
|
||||||
@@ -388,11 +227,11 @@ func (b *PackageHelper) copyIcon() (string, error) {
|
|||||||
|
|
||||||
// Install default icon
|
// Install default icon
|
||||||
iconfile := filepath.Join(b.getPackageFileBaseDir(), "icon.png")
|
iconfile := filepath.Join(b.getPackageFileBaseDir(), "icon.png")
|
||||||
iconData, err := os.ReadFile(iconfile)
|
iconData, err := ioutil.ReadFile(iconfile)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return "", err
|
return "", err
|
||||||
}
|
}
|
||||||
err = os.WriteFile(srcIcon, iconData, 0644)
|
err = ioutil.WriteFile(srcIcon, iconData, 0644)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return "", err
|
return "", err
|
||||||
}
|
}
|
||||||
@@ -402,7 +241,7 @@ func (b *PackageHelper) copyIcon() (string, error) {
|
|||||||
|
|
||||||
func (b *PackageHelper) packageIconOSX(resourceDir string) error {
|
func (b *PackageHelper) packageIconOSX(resourceDir string) error {
|
||||||
|
|
||||||
srcIcon, err := b.copyIcon()
|
srcIcon, err := b.copyIcon(resourceDir)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||||
<plist version="1.0"><dict>
|
<plist version="1.0"><dict>
|
||||||
<key>CFBundlePackageType</key><string>APPL</string>
|
|
||||||
<key>CFBundleName</key><string>{{.Title}}</string>
|
<key>CFBundleName</key><string>{{.Title}}</string>
|
||||||
<key>CFBundleExecutable</key><string>{{.Exe}}</string>
|
<key>CFBundleExecutable</key><string>{{.Exe}}</string>
|
||||||
<key>CFBundleIdentifier</key><string>{{.PackageID}}</string>
|
<key>CFBundleIdentifier</key><string>{{.PackageID}}</string>
|
||||||
|
|||||||
@@ -1,2 +1,2 @@
|
|||||||
100 ICON "$NAME$.ico"
|
100 ICON "$NAME$.ico"
|
||||||
110 24 "$NAME$.exe.manifest"
|
100 24 "$NAME$.exe.manifest"
|
||||||
@@ -3,7 +3,6 @@ package cmd
|
|||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"fmt"
|
"fmt"
|
||||||
"os"
|
|
||||||
"os/exec"
|
"os/exec"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"strings"
|
"strings"
|
||||||
@@ -12,22 +11,14 @@ import (
|
|||||||
|
|
||||||
// ProgramHelper - Utility functions around installed applications
|
// ProgramHelper - Utility functions around installed applications
|
||||||
type ProgramHelper struct {
|
type ProgramHelper struct {
|
||||||
shell *ShellHelper
|
shell *ShellHelper
|
||||||
verbose bool
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// NewProgramHelper - Creates a new ProgramHelper
|
// NewProgramHelper - Creates a new ProgramHelper
|
||||||
func NewProgramHelper(verbose ...bool) *ProgramHelper {
|
func NewProgramHelper() *ProgramHelper {
|
||||||
result := &ProgramHelper{
|
return &ProgramHelper{
|
||||||
shell: NewShellHelper(),
|
shell: NewShellHelper(),
|
||||||
}
|
}
|
||||||
if len(verbose) > 0 {
|
|
||||||
result.verbose = verbose[0]
|
|
||||||
if result.verbose {
|
|
||||||
result.shell.SetVerbose()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return result
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// IsInstalled tries to determine if the given binary name is installed
|
// IsInstalled tries to determine if the given binary name is installed
|
||||||
@@ -38,9 +29,8 @@ func (p *ProgramHelper) IsInstalled(programName string) bool {
|
|||||||
|
|
||||||
// Program - A struct to define an installed application/binary
|
// Program - A struct to define an installed application/binary
|
||||||
type Program struct {
|
type Program struct {
|
||||||
Name string `json:"name"`
|
Name string `json:"name"`
|
||||||
Path string `json:"path"`
|
Path string `json:"path"`
|
||||||
verbose bool
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// FindProgram attempts to find the given program on the system.FindProgram
|
// FindProgram attempts to find the given program on the system.FindProgram
|
||||||
@@ -55,9 +45,8 @@ func (p *ProgramHelper) FindProgram(programName string) *Program {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
return &Program{
|
return &Program{
|
||||||
Name: programName,
|
Name: programName,
|
||||||
Path: path,
|
Path: path,
|
||||||
verbose: p.verbose,
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -74,18 +63,12 @@ func (p *Program) Run(vars ...string) (stdout, stderr string, exitCode int, err
|
|||||||
return "", "", 1, err
|
return "", "", 1, err
|
||||||
}
|
}
|
||||||
cmd := exec.Command(command, vars...)
|
cmd := exec.Command(command, vars...)
|
||||||
if !p.verbose {
|
var stdo, stde bytes.Buffer
|
||||||
var stdo, stde bytes.Buffer
|
cmd.Stdout = &stdo
|
||||||
cmd.Stdout = &stdo
|
cmd.Stderr = &stde
|
||||||
cmd.Stderr = &stde
|
err = cmd.Run()
|
||||||
err = cmd.Run()
|
stdout = string(stdo.Bytes())
|
||||||
stdout = string(stdo.Bytes())
|
stderr = string(stde.Bytes())
|
||||||
stderr = string(stde.Bytes())
|
|
||||||
} else {
|
|
||||||
cmd.Stdout = os.Stdout
|
|
||||||
cmd.Stderr = os.Stderr
|
|
||||||
err = cmd.Run()
|
|
||||||
}
|
|
||||||
|
|
||||||
// https://stackoverflow.com/questions/10385551/get-exit-code-go
|
// https://stackoverflow.com/questions/10385551/get-exit-code-go
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@@ -138,11 +121,11 @@ func (p *ProgramHelper) RunCommand(command string) error {
|
|||||||
|
|
||||||
// RunCommandArray runs the command specified in the array
|
// RunCommandArray runs the command specified in the array
|
||||||
func (p *ProgramHelper) RunCommandArray(args []string, dir ...string) error {
|
func (p *ProgramHelper) RunCommandArray(args []string, dir ...string) error {
|
||||||
programCommand := args[0]
|
program := args[0]
|
||||||
// TODO: Run FindProgram here and get the full path to the exe
|
// TODO: Run FindProgram here and get the full path to the exe
|
||||||
program, err := exec.LookPath(programCommand)
|
program, err := exec.LookPath(program)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Printf("ERROR: Looks like '%s' isn't installed. Please install and try again.", programCommand)
|
fmt.Printf("ERROR: Looks like '%s' isn't installed. Please install and try again.", program)
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ package cmd
|
|||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"io/ioutil"
|
||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"runtime"
|
"runtime"
|
||||||
@@ -141,47 +142,21 @@ func (ph *ProjectHelper) NewProjectOptions() *ProjectOptions {
|
|||||||
|
|
||||||
// ProjectOptions holds all the options available for a project
|
// ProjectOptions holds all the options available for a project
|
||||||
type ProjectOptions struct {
|
type ProjectOptions struct {
|
||||||
Name string `json:"name"`
|
Name string `json:"name"`
|
||||||
Description string `json:"description"`
|
Description string `json:"description"`
|
||||||
Author *author `json:"author,omitempty"`
|
Author *author `json:"author,omitempty"`
|
||||||
Version string `json:"version"`
|
Version string `json:"version"`
|
||||||
OutputDirectory string `json:"-"`
|
OutputDirectory string `json:"-"`
|
||||||
UseDefaults bool `json:"-"`
|
UseDefaults bool `json:"-"`
|
||||||
Template string `json:"-"`
|
Template string `json:"-"`
|
||||||
BinaryName string `json:"binaryname"`
|
BinaryName string `json:"binaryname"`
|
||||||
FrontEnd *frontend `json:"frontend,omitempty"`
|
FrontEnd *frontend `json:"frontend,omitempty"`
|
||||||
Tags string `json:"tags"`
|
NPMProjectName string `json:"-"`
|
||||||
NPMProjectName string `json:"-"`
|
system *SystemHelper
|
||||||
system *SystemHelper
|
log *Logger
|
||||||
log *Logger
|
templates *TemplateHelper
|
||||||
templates *TemplateHelper
|
selectedTemplate *TemplateDetails
|
||||||
selectedTemplate *TemplateDetails
|
WailsVersion string
|
||||||
WailsVersion string
|
|
||||||
typescriptDefsFilename string
|
|
||||||
Verbose bool `json:"-"`
|
|
||||||
CrossCompile bool
|
|
||||||
Platform string
|
|
||||||
Architecture string
|
|
||||||
LdFlags string
|
|
||||||
GoPath string
|
|
||||||
UseFirebug bool
|
|
||||||
|
|
||||||
// Supported platforms
|
|
||||||
Platforms []string `json:"platforms,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
// PlatformSupported returns true if the template is supported
|
|
||||||
// on the current platform
|
|
||||||
func (po *ProjectOptions) PlatformSupported() bool {
|
|
||||||
|
|
||||||
// Default is all platforms supported
|
|
||||||
if len(po.Platforms) == 0 {
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
|
|
||||||
// Check that the platform is in the list
|
|
||||||
platformsSupported := slicer.String(po.Platforms)
|
|
||||||
return platformsSupported.Contains(runtime.GOOS)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Defaults sets the default project template
|
// Defaults sets the default project template
|
||||||
@@ -190,11 +165,6 @@ func (po *ProjectOptions) Defaults() {
|
|||||||
po.WailsVersion = Version
|
po.WailsVersion = Version
|
||||||
}
|
}
|
||||||
|
|
||||||
// SetTypescriptDefsFilename indicates that we want to generate typescript bindings to the given file
|
|
||||||
func (po *ProjectOptions) SetTypescriptDefsFilename(filename string) {
|
|
||||||
po.typescriptDefsFilename = filename
|
|
||||||
}
|
|
||||||
|
|
||||||
// GetNPMBinaryName returns the type of package manager used by the project
|
// GetNPMBinaryName returns the type of package manager used by the project
|
||||||
func (po *ProjectOptions) GetNPMBinaryName() (PackageManager, error) {
|
func (po *ProjectOptions) GetNPMBinaryName() (PackageManager, error) {
|
||||||
if po.FrontEnd == nil {
|
if po.FrontEnd == nil {
|
||||||
@@ -252,16 +222,13 @@ func (po *ProjectOptions) PromptForInputs() error {
|
|||||||
for _, k := range keys {
|
for _, k := range keys {
|
||||||
templateDetail := templateDetails[k]
|
templateDetail := templateDetails[k]
|
||||||
templateList.Add(templateDetail)
|
templateList.Add(templateDetail)
|
||||||
if !templateDetail.Metadata.PlatformSupported() {
|
|
||||||
templateDetail.Metadata.Name = "* " + templateDetail.Metadata.Name
|
|
||||||
}
|
|
||||||
options.Add(fmt.Sprintf("%s - %s", templateDetail.Metadata.Name, templateDetail.Metadata.ShortDescription))
|
options.Add(fmt.Sprintf("%s - %s", templateDetail.Metadata.Name, templateDetail.Metadata.ShortDescription))
|
||||||
}
|
}
|
||||||
|
|
||||||
templateIndex := 0
|
templateIndex := 0
|
||||||
|
|
||||||
if len(options.AsSlice()) > 1 {
|
if len(options.AsSlice()) > 1 {
|
||||||
templateIndex = PromptSelection("Please select a template (* means unsupported on current platform)", options.AsSlice(), 0)
|
templateIndex = PromptSelection("Please select a template", options.AsSlice(), 0)
|
||||||
}
|
}
|
||||||
|
|
||||||
if len(templateList.AsSlice()) == 0 {
|
if len(templateList.AsSlice()) == 0 {
|
||||||
@@ -272,10 +239,6 @@ func (po *ProjectOptions) PromptForInputs() error {
|
|||||||
po.selectedTemplate = templateList.AsSlice()[templateIndex].(*TemplateDetails)
|
po.selectedTemplate = templateList.AsSlice()[templateIndex].(*TemplateDetails)
|
||||||
}
|
}
|
||||||
|
|
||||||
po.selectedTemplate.Metadata.Name = strings.TrimPrefix(po.selectedTemplate.Metadata.Name, "* ")
|
|
||||||
if !po.selectedTemplate.Metadata.PlatformSupported() {
|
|
||||||
println("WARNING: This template is unsupported on this platform!")
|
|
||||||
}
|
|
||||||
fmt.Println("Template: " + po.selectedTemplate.Metadata.Name)
|
fmt.Println("Template: " + po.selectedTemplate.Metadata.Name)
|
||||||
|
|
||||||
// Setup NPM Project name
|
// Setup NPM Project name
|
||||||
@@ -309,14 +272,14 @@ func (po *ProjectOptions) WriteProjectConfig() error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
return os.WriteFile(targetFile, filedata, 0600)
|
return ioutil.WriteFile(targetFile, filedata, 0600)
|
||||||
}
|
}
|
||||||
|
|
||||||
// LoadConfig loads the project configuration file from the
|
// LoadConfig loads the project configuration file from the
|
||||||
// given directory
|
// given directory
|
||||||
func (po *ProjectOptions) LoadConfig(projectDir string) error {
|
func (po *ProjectOptions) LoadConfig(projectDir string) error {
|
||||||
targetFile := filepath.Join(projectDir, "project.json")
|
targetFile := filepath.Join(projectDir, "project.json")
|
||||||
rawBytes, err := os.ReadFile(targetFile)
|
rawBytes, err := ioutil.ReadFile(targetFile)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
@@ -363,6 +326,11 @@ func processBinaryName(po *ProjectOptions) {
|
|||||||
if po.BinaryName == "" {
|
if po.BinaryName == "" {
|
||||||
var binaryNameComputed = computeBinaryName(po.Name)
|
var binaryNameComputed = computeBinaryName(po.Name)
|
||||||
po.BinaryName = Prompt("The output binary name", binaryNameComputed)
|
po.BinaryName = Prompt("The output binary name", binaryNameComputed)
|
||||||
|
if runtime.GOOS == "windows" {
|
||||||
|
if !strings.HasSuffix(po.BinaryName, ".exe") {
|
||||||
|
po.BinaryName += ".exe"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
fmt.Println("Output binary Name: " + po.BinaryName)
|
fmt.Println("Output binary Name: " + po.BinaryName)
|
||||||
}
|
}
|
||||||
@@ -398,9 +366,5 @@ func processTemplateMetadata(templateMetadata *TemplateMetadata, po *ProjectOpti
|
|||||||
}
|
}
|
||||||
po.FrontEnd.Serve = templateMetadata.Serve
|
po.FrontEnd.Serve = templateMetadata.Serve
|
||||||
}
|
}
|
||||||
|
|
||||||
// Save platforms
|
|
||||||
po.Platforms = templateMetadata.Platforms
|
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -24,19 +24,11 @@ func NewSemanticVersion(version string) (*SemanticVersion, error) {
|
|||||||
|
|
||||||
// IsRelease returns true if it's a release version
|
// IsRelease returns true if it's a release version
|
||||||
func (s *SemanticVersion) IsRelease() bool {
|
func (s *SemanticVersion) IsRelease() bool {
|
||||||
// Limit to v1
|
|
||||||
if s.Version.Major() != 1 {
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
return len(s.Version.Prerelease()) == 0 && len(s.Version.Metadata()) == 0
|
return len(s.Version.Prerelease()) == 0 && len(s.Version.Metadata()) == 0
|
||||||
}
|
}
|
||||||
|
|
||||||
// IsPreRelease returns true if it's a prerelease version
|
// IsPreRelease returns true if it's a prerelease version
|
||||||
func (s *SemanticVersion) IsPreRelease() bool {
|
func (s *SemanticVersion) IsPreRelease() bool {
|
||||||
// Limit to v1
|
|
||||||
if s.Version.Major() != 1 {
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
return len(s.Version.Prerelease()) > 0
|
return len(s.Version.Prerelease()) > 0
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,65 +0,0 @@
|
|||||||
package cmd
|
|
||||||
|
|
||||||
import (
|
|
||||||
"testing"
|
|
||||||
)
|
|
||||||
|
|
||||||
func TestSemanticVersion_IsPreRelease(t *testing.T) {
|
|
||||||
tests := []struct {
|
|
||||||
name string
|
|
||||||
version string
|
|
||||||
want bool
|
|
||||||
}{
|
|
||||||
{"v1.6.7-pre0", "v1.6.7-pre0", true},
|
|
||||||
{"v2.6.7+pre0", "v2.6.7+pre0", false},
|
|
||||||
{"v2.6.7", "v2.6.7", false},
|
|
||||||
{"v2.0.0+alpha.1", "v2.0.0+alpha.1", false},
|
|
||||||
{"v2.0.0-alpha.1", "v2.0.0-alpha.1", false},
|
|
||||||
{"v1.6.7", "v1.6.7", false},
|
|
||||||
}
|
|
||||||
for _, tt := range tests {
|
|
||||||
t.Run(tt.name, func(t *testing.T) {
|
|
||||||
semanticversion, err := NewSemanticVersion(tt.version)
|
|
||||||
if err != nil {
|
|
||||||
t.Errorf("Invalid semantic version: %s", semanticversion)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
s := &SemanticVersion{
|
|
||||||
Version: semanticversion.Version,
|
|
||||||
}
|
|
||||||
if got := s.IsPreRelease(); got != tt.want {
|
|
||||||
t.Errorf("IsPreRelease() = %v, want %v", got, tt.want)
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestSemanticVersion_IsRelease(t *testing.T) {
|
|
||||||
tests := []struct {
|
|
||||||
name string
|
|
||||||
version string
|
|
||||||
want bool
|
|
||||||
}{
|
|
||||||
{"v1.6.7", "v1.6.7", true},
|
|
||||||
{"v2.6.7-pre0", "v2.6.7-pre0", false},
|
|
||||||
{"v2.6.7", "v2.6.7", false},
|
|
||||||
{"v2.6.7+release", "v2.6.7+release", false},
|
|
||||||
{"v2.0.0-alpha.1", "v2.0.0-alpha.1", false},
|
|
||||||
{"v1.6.7-pre0", "v1.6.7-pre0", false},
|
|
||||||
}
|
|
||||||
for _, tt := range tests {
|
|
||||||
t.Run(tt.name, func(t *testing.T) {
|
|
||||||
semanticversion, err := NewSemanticVersion(tt.version)
|
|
||||||
if err != nil {
|
|
||||||
t.Errorf("Invalid semantic version: %s", semanticversion)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
s := &SemanticVersion{
|
|
||||||
Version: semanticversion.Version,
|
|
||||||
}
|
|
||||||
if got := s.IsRelease(); got != tt.want {
|
|
||||||
t.Errorf("IsRelease() = %v, want %v", got, tt.want)
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
42
cmd/shell.go
@@ -8,7 +8,6 @@ import (
|
|||||||
|
|
||||||
// ShellHelper helps with Shell commands
|
// ShellHelper helps with Shell commands
|
||||||
type ShellHelper struct {
|
type ShellHelper struct {
|
||||||
verbose bool
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// NewShellHelper creates a new ShellHelper!
|
// NewShellHelper creates a new ShellHelper!
|
||||||
@@ -16,27 +15,16 @@ func NewShellHelper() *ShellHelper {
|
|||||||
return &ShellHelper{}
|
return &ShellHelper{}
|
||||||
}
|
}
|
||||||
|
|
||||||
// SetVerbose sets the verbose flag
|
|
||||||
func (sh *ShellHelper) SetVerbose() {
|
|
||||||
sh.verbose = true
|
|
||||||
}
|
|
||||||
|
|
||||||
// Run the given command
|
// Run the given command
|
||||||
func (sh *ShellHelper) Run(command string, vars ...string) (stdout, stderr string, err error) {
|
func (sh *ShellHelper) Run(command string, vars ...string) (stdout, stderr string, err error) {
|
||||||
cmd := exec.Command(command, vars...)
|
cmd := exec.Command(command, vars...)
|
||||||
cmd.Env = append(os.Environ(), "GO111MODULE=on")
|
cmd.Env = append(os.Environ(), "GO111MODULE=on")
|
||||||
if !sh.verbose {
|
var stdo, stde bytes.Buffer
|
||||||
var stdo, stde bytes.Buffer
|
cmd.Stdout = &stdo
|
||||||
cmd.Stdout = &stdo
|
cmd.Stderr = &stde
|
||||||
cmd.Stderr = &stde
|
err = cmd.Run()
|
||||||
err = cmd.Run()
|
stdout = string(stdo.Bytes())
|
||||||
stdout = string(stdo.Bytes())
|
stderr = string(stde.Bytes())
|
||||||
stderr = string(stde.Bytes())
|
|
||||||
} else {
|
|
||||||
cmd.Stdout = os.Stdout
|
|
||||||
cmd.Stderr = os.Stderr
|
|
||||||
err = cmd.Run()
|
|
||||||
}
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -45,17 +33,11 @@ func (sh *ShellHelper) RunInDirectory(dir string, command string, vars ...string
|
|||||||
cmd := exec.Command(command, vars...)
|
cmd := exec.Command(command, vars...)
|
||||||
cmd.Dir = dir
|
cmd.Dir = dir
|
||||||
cmd.Env = append(os.Environ(), "GO111MODULE=on")
|
cmd.Env = append(os.Environ(), "GO111MODULE=on")
|
||||||
if !sh.verbose {
|
var stdo, stde bytes.Buffer
|
||||||
var stdo, stde bytes.Buffer
|
cmd.Stdout = &stdo
|
||||||
cmd.Stdout = &stdo
|
cmd.Stderr = &stde
|
||||||
cmd.Stderr = &stde
|
err = cmd.Run()
|
||||||
err = cmd.Run()
|
stdout = string(stdo.Bytes())
|
||||||
stdout = string(stdo.Bytes())
|
stderr = string(stde.Bytes())
|
||||||
stderr = string(stde.Bytes())
|
|
||||||
} else {
|
|
||||||
cmd.Stdout = os.Stdout
|
|
||||||
cmd.Stderr = os.Stderr
|
|
||||||
err = cmd.Run()
|
|
||||||
}
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,12 +3,14 @@ package cmd
|
|||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"io/ioutil"
|
||||||
"log"
|
"log"
|
||||||
"os"
|
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"runtime"
|
"runtime"
|
||||||
"strconv"
|
"strconv"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
homedir "github.com/mitchellh/go-homedir"
|
||||||
)
|
)
|
||||||
|
|
||||||
// SystemHelper - Defines everything related to the system
|
// SystemHelper - Defines everything related to the system
|
||||||
@@ -36,11 +38,10 @@ func NewSystemHelper() *SystemHelper {
|
|||||||
// setSystemDirs calculates the system directories it is interested in
|
// setSystemDirs calculates the system directories it is interested in
|
||||||
func (s *SystemHelper) setSystemDirs() {
|
func (s *SystemHelper) setSystemDirs() {
|
||||||
var err error
|
var err error
|
||||||
s.homeDir, err = os.UserHomeDir()
|
s.homeDir, err = homedir.Dir()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal("Cannot find home directory! Please file a bug report!")
|
log.Fatal("Cannot find home directory! Please file a bug report!")
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: A better config system
|
// TODO: A better config system
|
||||||
s.wailsSystemDir = filepath.Join(s.homeDir, ".wails")
|
s.wailsSystemDir = filepath.Join(s.homeDir, ".wails")
|
||||||
s.wailsSystemConfig = filepath.Join(s.wailsSystemDir, s.configFilename)
|
s.wailsSystemConfig = filepath.Join(s.wailsSystemDir, s.configFilename)
|
||||||
@@ -98,16 +99,11 @@ func (s *SystemHelper) setup() error {
|
|||||||
|
|
||||||
if config.Name != "" {
|
if config.Name != "" {
|
||||||
systemConfig["name"] = PromptRequired("What is your name", config.Name)
|
systemConfig["name"] = PromptRequired("What is your name", config.Name)
|
||||||
} else if n, err := getGitConfigValue("user.name"); err == nil && n != "" {
|
|
||||||
systemConfig["name"] = PromptRequired("What is your name", n)
|
|
||||||
} else {
|
} else {
|
||||||
systemConfig["name"] = PromptRequired("What is your name")
|
systemConfig["name"] = PromptRequired("What is your name")
|
||||||
}
|
}
|
||||||
|
|
||||||
if config.Email != "" {
|
if config.Email != "" {
|
||||||
systemConfig["email"] = PromptRequired("What is your email address", config.Email)
|
systemConfig["email"] = PromptRequired("What is your email address", config.Email)
|
||||||
} else if e, err := getGitConfigValue("user.email"); err == nil && e != "" {
|
|
||||||
systemConfig["email"] = PromptRequired("What is your email address", e)
|
|
||||||
} else {
|
} else {
|
||||||
systemConfig["email"] = PromptRequired("What is your email address")
|
systemConfig["email"] = PromptRequired("What is your email address")
|
||||||
}
|
}
|
||||||
@@ -123,7 +119,7 @@ func (s *SystemHelper) setup() error {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
err = os.WriteFile(s.wailsSystemConfig, configData, 0755)
|
err = ioutil.WriteFile(s.wailsSystemConfig, configData, 0755)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
@@ -184,7 +180,7 @@ func (s *SystemHelper) Initialise() error {
|
|||||||
return s.setup()
|
return s.setup()
|
||||||
}
|
}
|
||||||
|
|
||||||
// SystemConfig - Defines system wide configuration data
|
// SystemConfig - Defines system wode configuration data
|
||||||
type SystemConfig struct {
|
type SystemConfig struct {
|
||||||
Name string `json:"name"`
|
Name string `json:"name"`
|
||||||
Email string `json:"email"`
|
Email string `json:"email"`
|
||||||
@@ -206,11 +202,11 @@ func (sc *SystemConfig) Save(filename string) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Write it out to the config file
|
// Write it out to the config file
|
||||||
return os.WriteFile(filename, theJSON, 0644)
|
return ioutil.WriteFile(filename, theJSON, 0644)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (sc *SystemConfig) load(filename string) error {
|
func (sc *SystemConfig) load(filename string) error {
|
||||||
configData, err := os.ReadFile(filename)
|
configData, err := ioutil.ReadFile(filename)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
@@ -278,22 +274,16 @@ func CheckDependencies(logger *Logger) (bool, error) {
|
|||||||
distroInfo := GetLinuxDistroInfo()
|
distroInfo := GetLinuxDistroInfo()
|
||||||
|
|
||||||
switch distroInfo.Distribution {
|
switch distroInfo.Distribution {
|
||||||
case Ubuntu, Debian, Zorin, Parrot, Linuxmint, Elementary, Kali, Neon, Deepin, Raspbian, PopOS:
|
case Ubuntu, Debian, Zorin, Parrot, Linuxmint, Elementary, Kali, Neon:
|
||||||
libraryChecker = DpkgInstalled
|
libraryChecker = DpkgInstalled
|
||||||
case Arch, ArcoLinux, ArchLabs, Ctlos, Manjaro, ManjaroARM, EndeavourOS, ArtixLinux:
|
case Arch, Manjaro:
|
||||||
libraryChecker = PacmanInstalled
|
libraryChecker = PacmanInstalled
|
||||||
case CentOS, Fedora, Tumbleweed, Leap, RHEL:
|
case CentOS, Fedora:
|
||||||
libraryChecker = RpmInstalled
|
libraryChecker = RpmInstalled
|
||||||
case Gentoo:
|
case Gentoo:
|
||||||
libraryChecker = EqueryInstalled
|
libraryChecker = EqueryInstalled
|
||||||
case VoidLinux:
|
case VoidLinux:
|
||||||
libraryChecker = XbpsInstalled
|
libraryChecker = XbpsInstalled
|
||||||
case Solus:
|
|
||||||
libraryChecker = EOpkgInstalled
|
|
||||||
case Crux:
|
|
||||||
libraryChecker = PrtGetInstalled
|
|
||||||
case NixOS:
|
|
||||||
libraryChecker = NixEnvInstalled
|
|
||||||
default:
|
default:
|
||||||
return false, RequestSupportForDistribution(distroInfo)
|
return false, RequestSupportForDistribution(distroInfo)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,10 +4,9 @@ import (
|
|||||||
"bytes"
|
"bytes"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"io/ioutil"
|
||||||
"log"
|
"log"
|
||||||
"os"
|
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"runtime"
|
|
||||||
"strings"
|
"strings"
|
||||||
"text/template"
|
"text/template"
|
||||||
|
|
||||||
@@ -30,26 +29,6 @@ type TemplateMetadata struct {
|
|||||||
Bridge string `json:"bridge"`
|
Bridge string `json:"bridge"`
|
||||||
WailsDir string `json:"wailsdir"`
|
WailsDir string `json:"wailsdir"`
|
||||||
TemplateDependencies []*TemplateDependency `json:"dependencies,omitempty"`
|
TemplateDependencies []*TemplateDependency `json:"dependencies,omitempty"`
|
||||||
|
|
||||||
// List of platforms that this template is supported on.
|
|
||||||
// No value means all platforms. A platform name is the same string
|
|
||||||
// as `runtime.GOOS` will return, eg: "darwin". NOTE: This is
|
|
||||||
// case sensitive.
|
|
||||||
Platforms []string `json:"platforms,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
// PlatformSupported returns true if this template supports the
|
|
||||||
// currently running platform
|
|
||||||
func (m *TemplateMetadata) PlatformSupported() bool {
|
|
||||||
|
|
||||||
// Default is all platforms supported
|
|
||||||
if len(m.Platforms) == 0 {
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
|
|
||||||
// Check that the platform is in the list
|
|
||||||
platformsSupported := slicer.String(m.Platforms)
|
|
||||||
return platformsSupported.Contains(runtime.GOOS)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// TemplateDependency defines a binary dependency for the template
|
// TemplateDependency defines a binary dependency for the template
|
||||||
@@ -125,7 +104,7 @@ func (t *TemplateHelper) LoadMetadata(dir string) (*TemplateMetadata, error) {
|
|||||||
if !t.fs.FileExists(templateFile) {
|
if !t.fs.FileExists(templateFile) {
|
||||||
return nil, nil
|
return nil, nil
|
||||||
}
|
}
|
||||||
rawJSON, err := os.ReadFile(templateFile)
|
rawJSON, err := ioutil.ReadFile(templateFile)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
@@ -149,11 +128,11 @@ func (t *TemplateHelper) GetTemplateDetails() (map[string]*TemplateDetails, erro
|
|||||||
result[name] = &TemplateDetails{
|
result[name] = &TemplateDetails{
|
||||||
Path: dir,
|
Path: dir,
|
||||||
}
|
}
|
||||||
|
_ = &TemplateMetadata{}
|
||||||
metadata, err := t.LoadMetadata(dir)
|
metadata, err := t.LoadMetadata(dir)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
result[name].Metadata = metadata
|
result[name].Metadata = metadata
|
||||||
if metadata.Name != "" {
|
if metadata.Name != "" {
|
||||||
result[name].Name = metadata.Name
|
result[name].Name = metadata.Name
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"ng": "npx ng",
|
"ng": "npx ng",
|
||||||
"serve": "npx ng serve --poll=2000 --host=0.0.0.0",
|
"start": "npx ng serve --poll=2000",
|
||||||
"build": "npx ng build --single-bundle true --output-hashing none --prod --bundle-styles false",
|
"build": "npx ng build --single-bundle true --output-hashing none --prod --bundle-styles false",
|
||||||
"test": "npx ng test",
|
"test": "npx ng test",
|
||||||
"lint": "npx ng lint",
|
"lint": "npx ng lint",
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ const routes: Routes = [];
|
|||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [
|
imports: [
|
||||||
RouterModule.forRoot(routes,{useHash:true})
|
RouterModule.forRoot(routes)
|
||||||
],
|
],
|
||||||
exports: [RouterModule]
|
exports: [RouterModule]
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
_ "embed"
|
"github.com/leaanthony/mewn"
|
||||||
"github.com/wailsapp/wails"
|
"github.com/wailsapp/wails"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -9,14 +9,11 @@ func basic() string {
|
|||||||
return "World!"
|
return "World!"
|
||||||
}
|
}
|
||||||
|
|
||||||
//go:embed frontend/dist/my-app/main.js
|
|
||||||
var js string
|
|
||||||
|
|
||||||
//go:embed frontend/dist/my-app/styles.css
|
|
||||||
var css string
|
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
|
||||||
|
js := mewn.String("./frontend/dist/my-app/main.js")
|
||||||
|
css := mewn.String("./frontend/dist/my-app/styles.css")
|
||||||
|
|
||||||
app := wails.CreateApp(&wails.AppConfig{
|
app := wails.CreateApp(&wails.AppConfig{
|
||||||
Width: 1024,
|
Width: 1024,
|
||||||
Height: 768,
|
Height: 768,
|
||||||
|
|||||||
@@ -14,7 +14,7 @@
|
|||||||
"author": "bh90210 <ktc@pm.me>",
|
"author": "bh90210 <ktc@pm.me>",
|
||||||
"created": "2019-06-15 18:23:48.666414555 +0300 EEST m=+223.934866008",
|
"created": "2019-06-15 18:23:48.666414555 +0300 EEST m=+223.934866008",
|
||||||
"frontenddir": "frontend",
|
"frontenddir": "frontend",
|
||||||
"serve": "npm run serve",
|
"serve": "npx ng serve --poll=2000",
|
||||||
"bridge": "src",
|
"bridge": "src",
|
||||||
"wailsdir": ""
|
"wailsdir": ""
|
||||||
}
|
}
|
||||||
@@ -4,15 +4,15 @@
|
|||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"core-js": "^3.6.4",
|
"core-js": "^3.1.4",
|
||||||
"react": "^16.13.1",
|
"react": "^16.8.6",
|
||||||
"react-dom": "^16.13.1",
|
"react-dom": "^16.8.6",
|
||||||
"wails-react-scripts": "3.0.1-2",
|
"wails-react-scripts": "3.0.1-2",
|
||||||
"react-modal": "3.11.2",
|
"react-modal": "3.8.1",
|
||||||
"@wailsapp/runtime": "^1.0.10"
|
"@wailsapp/runtime": "^1.0.0"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"serve": "react-scripts start",
|
"start": "react-scripts start",
|
||||||
"build": "react-scripts build",
|
"build": "react-scripts build",
|
||||||
"test": "react-scripts test",
|
"test": "react-scripts test",
|
||||||
"eject": "react-scripts eject"
|
"eject": "react-scripts eject"
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.8 KiB |
@@ -1,13 +1,10 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
|
<head>
|
||||||
<head>
|
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
|
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
<meta name="theme-color" content="#000000" />
|
<meta name="theme-color" content="#000000" />
|
||||||
<meta name="description" content="Web site created using create-react-app" />
|
|
||||||
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
|
|
||||||
<!--
|
<!--
|
||||||
manifest.json provides metadata used when your web app is installed on a
|
manifest.json provides metadata used when your web app is installed on a
|
||||||
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
|
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
|
||||||
@@ -23,9 +20,8 @@
|
|||||||
Learn how to configure a non-root public URL by running `npm run build`.
|
Learn how to configure a non-root public URL by running `npm run build`.
|
||||||
-->
|
-->
|
||||||
<title>React App</title>
|
<title>React App</title>
|
||||||
</head>
|
</head>
|
||||||
|
<body>
|
||||||
<body>
|
|
||||||
<noscript>You need to enable JavaScript to run this app.</noscript>
|
<noscript>You need to enable JavaScript to run this app.</noscript>
|
||||||
<div id="app"></div>
|
<div id="app"></div>
|
||||||
<!--
|
<!--
|
||||||
@@ -38,6 +34,5 @@
|
|||||||
To begin the development, run `npm start` or `yarn start`.
|
To begin the development, run `npm start` or `yarn start`.
|
||||||
To create a production bundle, use `npm run build` or `yarn build`.
|
To create a production bundle, use `npm run build` or `yarn build`.
|
||||||
-->
|
-->
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
Before Width: | Height: | Size: 37 KiB |
|
Before Width: | Height: | Size: 176 KiB |
@@ -6,16 +6,6 @@
|
|||||||
"src": "favicon.ico",
|
"src": "favicon.ico",
|
||||||
"sizes": "64x64 32x32 24x24 16x16",
|
"sizes": "64x64 32x32 24x24 16x16",
|
||||||
"type": "image/x-icon"
|
"type": "image/x-icon"
|
||||||
},
|
|
||||||
{
|
|
||||||
"src": "logo192.png",
|
|
||||||
"type": "image/png",
|
|
||||||
"sizes": "192x192"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"src": "logo512.png",
|
|
||||||
"type": "image/png",
|
|
||||||
"sizes": "512x512"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"start_url": ".",
|
"start_url": ".",
|
||||||
|
|||||||
@@ -1,3 +0,0 @@
|
|||||||
# https://www.robotstxt.org/robotstxt.html
|
|
||||||
User-agent: *
|
|
||||||
Disallow:
|
|
||||||
@@ -3,16 +3,11 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.App-logo {
|
.App-logo {
|
||||||
|
animation: App-logo-spin infinite 20s linear;
|
||||||
height: 40vmin;
|
height: 40vmin;
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (prefers-reduced-motion: no-preference) {
|
|
||||||
.App-logo {
|
|
||||||
animation: App-logo-spin infinite 20s linear;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.App-header {
|
.App-header {
|
||||||
background-color: #282c34;
|
background-color: #282c34;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
|
|||||||
@@ -1,35 +1,48 @@
|
|||||||
import React, { useState } from 'react';
|
import React from 'react';
|
||||||
import Modal from 'react-modal';
|
import Modal from 'react-modal';
|
||||||
|
|
||||||
function HelloWorld() {
|
class HelloWorld extends React.Component {
|
||||||
const [showModal, setShowModal] = useState(false);
|
constructor(props, context) {
|
||||||
const [result, setResult] = useState(null);
|
super();
|
||||||
|
this.state = {
|
||||||
|
showModal: false
|
||||||
|
};
|
||||||
|
|
||||||
const handleOpenModal = () => {
|
this.handleOpenModal = this.handleOpenModal.bind(this);
|
||||||
setShowModal(true);
|
this.handleCloseModal = this.handleCloseModal.bind(this);
|
||||||
|
}
|
||||||
|
|
||||||
window.backend.basic().then((result) => setResult(result));
|
handleOpenModal () {
|
||||||
};
|
this.setState({ showModal: true });
|
||||||
|
|
||||||
const handleCloseModal = () => {
|
window.backend.basic().then(result =>
|
||||||
setShowModal(false);
|
this.setState({
|
||||||
};
|
result
|
||||||
|
})
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
handleCloseModal () {
|
||||||
<div className="App">
|
this.setState({ showModal: false });
|
||||||
<button onClick={() => handleOpenModal()} type="button">
|
}
|
||||||
Hello
|
|
||||||
</button>
|
render() {
|
||||||
<Modal
|
const { result } = this.state;
|
||||||
appElement={document.getElementById("app")}
|
return (
|
||||||
isOpen={showModal}
|
<div className="App">
|
||||||
contentLabel="Minimal Modal Example"
|
<button onClick={this.handleOpenModal} type="button">
|
||||||
>
|
Hello
|
||||||
<p>{result}</p>
|
</button>
|
||||||
<button onClick={() => handleCloseModal()}>Close Modal</button>
|
<Modal
|
||||||
</Modal>
|
isOpen={this.state.showModal}
|
||||||
</div>
|
contentLabel="Minimal Modal Example"
|
||||||
);
|
>
|
||||||
|
<p>{result}</p>
|
||||||
|
<button onClick={this.handleCloseModal}>Close Modal</button>
|
||||||
|
</Modal>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default HelloWorld;
|
export default HelloWorld;
|
||||||
|
|||||||
@@ -3,20 +3,9 @@ import ReactDOM from 'react-dom';
|
|||||||
import 'core-js/stable';
|
import 'core-js/stable';
|
||||||
import './index.css';
|
import './index.css';
|
||||||
import App from './App';
|
import App from './App';
|
||||||
import * as serviceWorker from './serviceWorker';
|
|
||||||
|
|
||||||
import * as Wails from '@wailsapp/runtime';
|
import * as Wails from '@wailsapp/runtime';
|
||||||
|
|
||||||
Wails.Init(() => {
|
Wails.Init(() => {
|
||||||
ReactDOM.render(
|
ReactDOM.render(<App />, document.getElementById('app'));
|
||||||
<React.StrictMode>
|
|
||||||
<App />
|
|
||||||
</React.StrictMode>,
|
|
||||||
document.getElementById("app")
|
|
||||||
);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
// If you want your app to work offline and load faster, you can change
|
|
||||||
// unregister() to register() below. Note this comes with some pitfalls.
|
|
||||||
// Learn more about service workers: https://bit.ly/CRA-PWA
|
|
||||||
serviceWorker.unregister();
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
_ "embed"
|
"github.com/leaanthony/mewn"
|
||||||
"github.com/wailsapp/wails"
|
"github.com/wailsapp/wails"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -9,14 +9,11 @@ func basic() string {
|
|||||||
return "World!"
|
return "World!"
|
||||||
}
|
}
|
||||||
|
|
||||||
//go:embed frontend/build/static/js/main.js
|
|
||||||
var js string
|
|
||||||
|
|
||||||
//go:embed frontend/build/static/css/main.css
|
|
||||||
var css string
|
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
|
||||||
|
js := mewn.String("./frontend/build/static/js/main.js")
|
||||||
|
css := mewn.String("./frontend/build/static/css/main.css")
|
||||||
|
|
||||||
app := wails.CreateApp(&wails.AppConfig{
|
app := wails.CreateApp(&wails.AppConfig{
|
||||||
Width: 1024,
|
Width: 1024,
|
||||||
Height: 768,
|
Height: 768,
|
||||||
|
|||||||
@@ -1,14 +1,14 @@
|
|||||||
{
|
{
|
||||||
"name": "React JS",
|
"name": "React JS",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"shortdescription": "Create React App v4 template",
|
"shortdescription": "Create React App v3 template",
|
||||||
"description": "Create React App v4 standard tooling",
|
"description": "Create React App v3 standar tooling",
|
||||||
"install": "npm install",
|
"install": "npm install",
|
||||||
"build": "npm run build",
|
"build": "npm run build",
|
||||||
"author": "bh90210 <ktc@pm.me>",
|
"author": "bh90210 <ktc@pm.me>",
|
||||||
"created": "2019-06-07 18:23:48.666414555 +0300 EEST m=+223.934866008",
|
"created": "2019-06-07 18:23:48.666414555 +0300 EEST m=+223.934866008",
|
||||||
"frontenddir": "frontend",
|
"frontenddir": "frontend",
|
||||||
"serve": "npm run serve",
|
"serve": "npm run start",
|
||||||
"bridge": "src",
|
"bridge": "src",
|
||||||
"wailsdir": ""
|
"wailsdir": ""
|
||||||
}
|
}
|
||||||
|
|||||||
4
cmd/templates/svelte/frontend/.gitignore
vendored
@@ -1,4 +0,0 @@
|
|||||||
/node_modules/
|
|
||||||
/public/build/
|
|
||||||
|
|
||||||
.DS_Store
|
|
||||||
@@ -1,90 +0,0 @@
|
|||||||
*Looking for a shareable component template? Go here --> [sveltejs/component-template](https://github.com/sveltejs/component-template)*
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
# svelte app
|
|
||||||
|
|
||||||
This is a project template for [Svelte](https://svelte.dev) apps. It lives at https://github.com/sveltejs/template.
|
|
||||||
|
|
||||||
To create a new project based on this template using [degit](https://github.com/Rich-Harris/degit):
|
|
||||||
|
|
||||||
```bash
|
|
||||||
npx degit sveltejs/template svelte-app
|
|
||||||
cd svelte-app
|
|
||||||
```
|
|
||||||
|
|
||||||
*Note that you will need to have [Node.js](https://nodejs.org) installed.*
|
|
||||||
|
|
||||||
|
|
||||||
## Get started
|
|
||||||
|
|
||||||
Install the dependencies...
|
|
||||||
|
|
||||||
```bash
|
|
||||||
cd svelte-app
|
|
||||||
npm install
|
|
||||||
```
|
|
||||||
|
|
||||||
...then start [Rollup](https://rollupjs.org):
|
|
||||||
|
|
||||||
```bash
|
|
||||||
npm run dev
|
|
||||||
```
|
|
||||||
|
|
||||||
Navigate to [localhost:5000](http://localhost:5000). You should see your app running. Edit a component file in `src`, save it, and reload the page to see your changes.
|
|
||||||
|
|
||||||
By default, the server will only respond to requests from localhost. To allow connections from other computers, edit the `sirv` commands in package.json to include the option `--host 0.0.0.0`.
|
|
||||||
|
|
||||||
|
|
||||||
## Building and running in production mode
|
|
||||||
|
|
||||||
To create an optimised version of the app:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
npm run build
|
|
||||||
```
|
|
||||||
|
|
||||||
You can run the newly built app with `npm run start`. This uses [sirv](https://github.com/lukeed/sirv), which is included in your package.json's `dependencies` so that the app will work when you deploy to platforms like [Heroku](https://heroku.com).
|
|
||||||
|
|
||||||
|
|
||||||
## Single-page app mode
|
|
||||||
|
|
||||||
By default, sirv will only respond to requests that match files in `public`. This is to maximise compatibility with static fileservers, allowing you to deploy your app anywhere.
|
|
||||||
|
|
||||||
If you're building a single-page app (SPA) with multiple routes, sirv needs to be able to respond to requests for *any* path. You can make it so by editing the `"start"` command in package.json:
|
|
||||||
|
|
||||||
```js
|
|
||||||
"start": "sirv public --single"
|
|
||||||
```
|
|
||||||
|
|
||||||
## Deploying to the web
|
|
||||||
|
|
||||||
### With [Vercel](https://vercel.com)
|
|
||||||
|
|
||||||
Install `vercel` if you haven't already:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
npm install -g vercel
|
|
||||||
```
|
|
||||||
|
|
||||||
Then, from within your project folder:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
cd public
|
|
||||||
vercel deploy --name my-project
|
|
||||||
```
|
|
||||||
|
|
||||||
### With [surge](https://surge.sh/)
|
|
||||||
|
|
||||||
Install `surge` if you haven't already:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
npm install -g surge
|
|
||||||
```
|
|
||||||
|
|
||||||
Then, from within your project folder:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
npm run build
|
|
||||||
surge public my-project.surge.sh
|
|
||||||
```
|
|
||||||
@@ -1,31 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "{{.NPMProjectName}}",
|
|
||||||
"author": "{{.Author.Name}}<{{.Author.Email}}>",
|
|
||||||
"scripts": {
|
|
||||||
"build": "rollup -c",
|
|
||||||
"serve": "rollup -c -w",
|
|
||||||
"start": "sirv public"
|
|
||||||
},
|
|
||||||
"devDependencies": {
|
|
||||||
"@babel/core": "^7.11.6",
|
|
||||||
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
|
||||||
"@babel/plugin-transform-runtime": "^7.11.5",
|
|
||||||
"@babel/preset-env": "^7.11.5",
|
|
||||||
"@rollup/plugin-commonjs": "^14.0.0",
|
|
||||||
"@rollup/plugin-image": "^2.0.5",
|
|
||||||
"@rollup/plugin-node-resolve": "^8.0.0",
|
|
||||||
"core-js": "^3.6.5",
|
|
||||||
"rollup": "^2.3.4",
|
|
||||||
"rollup-plugin-babel": "^4.4.0",
|
|
||||||
"rollup-plugin-livereload": "^2.0.0",
|
|
||||||
"rollup-plugin-polyfill": "^3.0.0",
|
|
||||||
"rollup-plugin-svelte": "^6.0.0",
|
|
||||||
"rollup-plugin-terser": "^7.0.0",
|
|
||||||
"svelte": "^3.0.0"
|
|
||||||
},
|
|
||||||
"dependencies": {
|
|
||||||
"sirv-cli": "^1.0.0",
|
|
||||||
"@wailsapp/runtime": "^1.0.10",
|
|
||||||
"svelte-simple-modal": "^0.6.0"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
Before Width: | Height: | Size: 3.1 KiB |
@@ -1,17 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset='utf-8'>
|
|
||||||
<meta name='viewport' content='width=device-width,initial-scale=1'>
|
|
||||||
|
|
||||||
<title>Svelte app</title>
|
|
||||||
|
|
||||||
<link rel='icon' type='image/png' href='/favicon.png'>
|
|
||||||
<link rel='stylesheet' href='/build/bundle.css'>
|
|
||||||
|
|
||||||
<script defer src='/build/bundle.js'></script>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1,109 +0,0 @@
|
|||||||
import svelte from 'rollup-plugin-svelte';
|
|
||||||
import resolve from '@rollup/plugin-node-resolve';
|
|
||||||
import commonjs from '@rollup/plugin-commonjs';
|
|
||||||
import livereload from 'rollup-plugin-livereload';
|
|
||||||
import {terser} from 'rollup-plugin-terser';
|
|
||||||
import image from '@rollup/plugin-image';
|
|
||||||
import babel from 'rollup-plugin-babel';
|
|
||||||
import polyfill from 'rollup-plugin-polyfill';
|
|
||||||
|
|
||||||
const production = !process.env.ROLLUP_WATCH;
|
|
||||||
|
|
||||||
function serve() {
|
|
||||||
let server;
|
|
||||||
|
|
||||||
function toExit() {
|
|
||||||
if (server) server.kill(0);
|
|
||||||
}
|
|
||||||
|
|
||||||
return {
|
|
||||||
writeBundle() {
|
|
||||||
if (server) return;
|
|
||||||
server = require('child_process').spawn('npm', ['run', 'start', '--', '--dev'], {
|
|
||||||
stdio: ['ignore', 'inherit', 'inherit'],
|
|
||||||
shell: true
|
|
||||||
});
|
|
||||||
|
|
||||||
process.on('SIGTERM', toExit);
|
|
||||||
process.on('exit', toExit);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
export default {
|
|
||||||
input: 'src/main.js',
|
|
||||||
output: {
|
|
||||||
sourcemap: true,
|
|
||||||
format: 'iife',
|
|
||||||
name: 'app',
|
|
||||||
file: 'public/build/bundle.js'
|
|
||||||
},
|
|
||||||
plugins: [
|
|
||||||
image(),
|
|
||||||
svelte({
|
|
||||||
// enable run-time checks when not in production
|
|
||||||
dev: !production,
|
|
||||||
// we'll extract any component CSS out into
|
|
||||||
// a separate file - better for performance
|
|
||||||
css: css => {
|
|
||||||
css.write('bundle.css');
|
|
||||||
}
|
|
||||||
}),
|
|
||||||
|
|
||||||
// If you have external dependencies installed from
|
|
||||||
// npm, you'll most likely need these plugins. In
|
|
||||||
// some cases you'll need additional configuration -
|
|
||||||
// consult the documentation for details:
|
|
||||||
// https://github.com/rollup/plugins/tree/master/packages/commonjs
|
|
||||||
resolve({
|
|
||||||
browser: true,
|
|
||||||
dedupe: ['svelte', 'svelte/transition', 'svelte/internal']
|
|
||||||
}),
|
|
||||||
commonjs(),
|
|
||||||
|
|
||||||
// In dev mode, call `npm run start` once
|
|
||||||
// the bundle has been generated
|
|
||||||
!production && serve(),
|
|
||||||
|
|
||||||
// Watch the `public` directory and refresh the
|
|
||||||
// browser on changes when not in production
|
|
||||||
!production && livereload('public'),
|
|
||||||
|
|
||||||
// Credit: https://blog.az.sg/posts/svelte-and-ie11/
|
|
||||||
babel({
|
|
||||||
extensions: [ '.js', '.jsx', '.es6', '.es', '.mjs', '.svelte', '.html' ],
|
|
||||||
runtimeHelpers: true,
|
|
||||||
exclude: [ 'node_modules/@babel/**', 'node_modules/core-js/**' ],
|
|
||||||
presets: [
|
|
||||||
[
|
|
||||||
'@babel/preset-env',
|
|
||||||
{
|
|
||||||
targets: '> 0.25%, not dead, IE 11',
|
|
||||||
modules: false,
|
|
||||||
useBuiltIns: 'usage',
|
|
||||||
forceAllTransforms: true,
|
|
||||||
corejs: 3,
|
|
||||||
},
|
|
||||||
|
|
||||||
]
|
|
||||||
],
|
|
||||||
plugins: [
|
|
||||||
'@babel/plugin-syntax-dynamic-import',
|
|
||||||
[
|
|
||||||
'@babel/plugin-transform-runtime',
|
|
||||||
{
|
|
||||||
useESModules: true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
]
|
|
||||||
}),
|
|
||||||
polyfill(['@webcomponents/webcomponentsjs']),
|
|
||||||
|
|
||||||
// If we're building for production (npm run build
|
|
||||||
// instead of npm run dev), minify
|
|
||||||
production && terser()
|
|
||||||
],
|
|
||||||
watch: {
|
|
||||||
clearScreen: false
|
|
||||||
}
|
|
||||||
};
|
|
||||||
@@ -1,69 +0,0 @@
|
|||||||
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import Modal from 'svelte-simple-modal';
|
|
||||||
import HelloWorld from './components/HelloWorld.svelte'
|
|
||||||
import logo from './logo.png';
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<main>
|
|
||||||
<div class="App">
|
|
||||||
<header class="App-header">
|
|
||||||
<Modal>
|
|
||||||
<img src={logo} class="App-logo" alt="logo" />
|
|
||||||
<p>Welcome to your new <code>wails/svelte</code> project.</p>
|
|
||||||
<HelloWorld/>
|
|
||||||
</Modal>
|
|
||||||
</header>
|
|
||||||
</div>
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<style>
|
|
||||||
:global(body) {
|
|
||||||
margin: 0;
|
|
||||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
|
|
||||||
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
|
|
||||||
sans-serif;
|
|
||||||
-webkit-font-smoothing: antialiased;
|
|
||||||
-moz-osx-font-smoothing: grayscale;
|
|
||||||
}
|
|
||||||
|
|
||||||
code {
|
|
||||||
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace;
|
|
||||||
}
|
|
||||||
|
|
||||||
.App {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.App-logo {
|
|
||||||
height: 40vmin;
|
|
||||||
pointer-events: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (prefers-reduced-motion: no-preference) {
|
|
||||||
.App-logo {
|
|
||||||
animation: App-logo-spin infinite 20s linear;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.App-header {
|
|
||||||
background-color: #282c34;
|
|
||||||
min-height: 100vh;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
font-size: calc(10px + 2vmin);
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes App-logo-spin {
|
|
||||||
from {
|
|
||||||
transform: rotate(0deg);
|
|
||||||
}
|
|
||||||
to {
|
|
||||||
transform: rotate(360deg);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
<script>
|
|
||||||
import { getContext } from 'svelte';
|
|
||||||
import ModalContent from './ModalContent.svelte'
|
|
||||||
|
|
||||||
const { open } = getContext('simple-modal');
|
|
||||||
|
|
||||||
const handleOpenModal = () => {
|
|
||||||
window.backend.basic().then((result) => {
|
|
||||||
open(ModalContent, { message: result });
|
|
||||||
});
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<main>
|
|
||||||
<p><button on:click={handleOpenModal}>Hello</button></p>
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<style></style>
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
<script>
|
|
||||||
export let message;
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
{message}
|
|
||||||
</p>
|
|
||||||
|
Before Width: | Height: | Size: 301 KiB |
@@ -1,13 +0,0 @@
|
|||||||
import App from './App.svelte';
|
|
||||||
|
|
||||||
import * as Wails from '@wailsapp/runtime';
|
|
||||||
|
|
||||||
let app;
|
|
||||||
|
|
||||||
Wails.Init(() => {
|
|
||||||
app = new App({
|
|
||||||
target: document.body,
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
export default app;
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
module {{.BinaryName}}
|
|
||||||
|
|
||||||
require (
|
|
||||||
github.com/wailsapp/wails {{.WailsVersion}}
|
|
||||||
)
|
|
||||||
@@ -1,31 +0,0 @@
|
|||||||
package main
|
|
||||||
|
|
||||||
import (
|
|
||||||
_ "embed"
|
|
||||||
"github.com/wailsapp/wails"
|
|
||||||
)
|
|
||||||
|
|
||||||
func basic() string {
|
|
||||||
return "World!"
|
|
||||||
}
|
|
||||||
|
|
||||||
//go:embed frontend/public/build/bundle.js
|
|
||||||
var js string
|
|
||||||
|
|
||||||
//go:embed frontend/public/build/bundle.css
|
|
||||||
var css string
|
|
||||||
|
|
||||||
func main() {
|
|
||||||
|
|
||||||
app := wails.CreateApp(&wails.AppConfig{
|
|
||||||
Width: 1024,
|
|
||||||
Height: 768,
|
|
||||||
Title: "{{.Name}}",
|
|
||||||
JS: js,
|
|
||||||
CSS: css,
|
|
||||||
Colour: "#131313",
|
|
||||||
})
|
|
||||||
|
|
||||||
app.Bind(basic)
|
|
||||||
app.Run()
|
|
||||||
}
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "Svelte",
|
|
||||||
"version": "1.0.0",
|
|
||||||
"shortdescription": "A basic Svelte template",
|
|
||||||
"description": "A basic Svelte template",
|
|
||||||
"install": "npm install",
|
|
||||||
"build": "npm run build",
|
|
||||||
"author": "Tim Kipp <timkipp.22.developer@gmail.com>",
|
|
||||||
"created": "2020-09-06 13:06:10.469848 -0700 PDT m=+213.578828559",
|
|
||||||
"frontenddir": "frontend",
|
|
||||||
"serve": "npm run serve",
|
|
||||||
"bridge": "src",
|
|
||||||
"wailsdir": ""
|
|
||||||
}
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
# README
|
|
||||||
|
|
||||||
This is an experimental template for vanilla HTML/JS/CSS.
|
|
||||||
|
|
||||||
The webpack rules may need to be adjusted to correctly embed all assets. Babel may also need to be setup correctly.
|
|
||||||
@@ -1,46 +0,0 @@
|
|||||||
package main
|
|
||||||
|
|
||||||
import (
|
|
||||||
"math/rand"
|
|
||||||
|
|
||||||
"github.com/wailsapp/wails"
|
|
||||||
)
|
|
||||||
|
|
||||||
// Counter is what we use for counting
|
|
||||||
type Counter struct {
|
|
||||||
r *wails.Runtime
|
|
||||||
store *wails.Store
|
|
||||||
}
|
|
||||||
|
|
||||||
// WailsInit is called when the component is being initialised
|
|
||||||
func (c *Counter) WailsInit(runtime *wails.Runtime) error {
|
|
||||||
c.r = runtime
|
|
||||||
c.store = runtime.Store.New("Counter", 0)
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// RandomValue sets the counter to a random value
|
|
||||||
func (c *Counter) RandomValue() {
|
|
||||||
c.store.Set(rand.Intn(1000))
|
|
||||||
}
|
|
||||||
|
|
||||||
// Increment will increment the counter
|
|
||||||
func (c *Counter) Increment() {
|
|
||||||
|
|
||||||
increment := func(data int) int {
|
|
||||||
return data + 1
|
|
||||||
}
|
|
||||||
|
|
||||||
// Update the store using the increment function
|
|
||||||
c.store.Update(increment)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Decrement will decrement the counter
|
|
||||||
func (c *Counter) Decrement() {
|
|
||||||
|
|
||||||
decrement := func(data int) int {
|
|
||||||
return data - 1
|
|
||||||
}
|
|
||||||
// Update the store using the decrement function
|
|
||||||
c.store.Update(decrement)
|
|
||||||
}
|
|
||||||
@@ -1,42 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "vanilla",
|
|
||||||
"author": "Lea<l>",
|
|
||||||
"private": true,
|
|
||||||
"scripts": {
|
|
||||||
"serve": "webpack-dev-server",
|
|
||||||
"build": "npx webpack"
|
|
||||||
},
|
|
||||||
"dependencies": {
|
|
||||||
"core-js": "^3.6.4",
|
|
||||||
"regenerator-runtime": "^0.13.3",
|
|
||||||
"@wailsapp/runtime": "^1.0.10"
|
|
||||||
},
|
|
||||||
"devDependencies": {
|
|
||||||
"babel-eslint": "^10.1.0",
|
|
||||||
"copy-webpack-plugin": "^6.0.2",
|
|
||||||
"eslint": "^6.8.0",
|
|
||||||
"eventsource-polyfill": "^0.9.6",
|
|
||||||
"webpack": "^4.43.0",
|
|
||||||
"webpack-cli": "^3.3.11",
|
|
||||||
"webpack-dev-server": "^3.11.0",
|
|
||||||
"webpack-hot-middleware": "^2.25.0"
|
|
||||||
},
|
|
||||||
"eslintConfig": {
|
|
||||||
"root": true,
|
|
||||||
"env": {
|
|
||||||
"node": true
|
|
||||||
},
|
|
||||||
"extends": [
|
|
||||||
"eslint:recommended"
|
|
||||||
],
|
|
||||||
"rules": {},
|
|
||||||
"parserOptions": {
|
|
||||||
"parser": "babel-eslint"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"browserslist": [
|
|
||||||
"> 1%",
|
|
||||||
"last 2 versions",
|
|
||||||
"not ie <= 8"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
<html>
|
|
||||||
<head>
|
|
||||||
<link rel="stylesheet" type="text/css" href="main.css">
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div id="app"></div>
|
|
||||||
<script src="main.js"></script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1,47 +0,0 @@
|
|||||||
import 'core-js/stable';
|
|
||||||
const runtime = require('@wailsapp/runtime');
|
|
||||||
|
|
||||||
// Main entry point
|
|
||||||
function start() {
|
|
||||||
|
|
||||||
var mystore = runtime.Store.New('Counter');
|
|
||||||
|
|
||||||
// Ensure the default app div is 100% wide/high
|
|
||||||
var app = document.getElementById('app');
|
|
||||||
app.style.width = '100%';
|
|
||||||
app.style.height = '100%';
|
|
||||||
|
|
||||||
// Inject html
|
|
||||||
app.innerHTML = `
|
|
||||||
<div class='logo'></div>
|
|
||||||
<div class='container'>
|
|
||||||
<button onClick='window.backend.Counter.Increment()'>
|
|
||||||
Increment Counter
|
|
||||||
</button>
|
|
||||||
<button onClick='window.backend.Counter.Decrement()'>
|
|
||||||
Decrement Counter
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
<div class='result'>Counter: <span id='counter'></span></div>
|
|
||||||
<div class='container'>
|
|
||||||
<input id='newCounter' type="number" value="0"/>
|
|
||||||
<button id='setvalue'>Set Counter Value</button>
|
|
||||||
<button onclick='window.backend.Counter.RandomValue()'>Set to Random Value</button>
|
|
||||||
</div>
|
|
||||||
`;
|
|
||||||
|
|
||||||
// Connect counter value button to Go method
|
|
||||||
document.getElementById('setvalue').onclick = function() {
|
|
||||||
let newValue = parseInt(document.getElementById('newCounter').value,10);
|
|
||||||
mystore.set(newValue);
|
|
||||||
};
|
|
||||||
|
|
||||||
mystore.subscribe( function(state) {
|
|
||||||
document.getElementById('counter').innerText = state;
|
|
||||||
});
|
|
||||||
|
|
||||||
mystore.set(0);
|
|
||||||
};
|
|
||||||
|
|
||||||
// We provide our entrypoint as a callback for runtime.Init
|
|
||||||
runtime.Init(start);
|
|
||||||
@@ -1,56 +0,0 @@
|
|||||||
const path = require('path');
|
|
||||||
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
|
||||||
|
|
||||||
let imageSizeLimit = 9007199254740991; // Number.MAX_SAFE_INTEGER
|
|
||||||
let sourceDir = path.resolve(__dirname, 'src');
|
|
||||||
let buildDir = path.resolve(__dirname, 'build');
|
|
||||||
|
|
||||||
module.exports = {
|
|
||||||
entry: {
|
|
||||||
index: path.resolve(sourceDir, 'main.js')
|
|
||||||
},
|
|
||||||
output: {
|
|
||||||
path: buildDir,
|
|
||||||
filename: 'main.js'
|
|
||||||
},
|
|
||||||
optimization: {
|
|
||||||
splitChunks: false
|
|
||||||
},
|
|
||||||
devServer: {
|
|
||||||
disableHostCheck: true,
|
|
||||||
contentBase: path.join(__dirname, 'src'),
|
|
||||||
compress: true,
|
|
||||||
open: true,
|
|
||||||
port: 8090
|
|
||||||
},
|
|
||||||
mode: 'production',
|
|
||||||
module: {
|
|
||||||
rules: [
|
|
||||||
{
|
|
||||||
test: /\.(png|gif|jpg|woff2?|eot|ttf|otf|svg)(\?.*)?$/i,
|
|
||||||
use: [
|
|
||||||
{
|
|
||||||
loader: 'url-loader',
|
|
||||||
options: {
|
|
||||||
limit: imageSizeLimit
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
plugins: [
|
|
||||||
new CopyWebpackPlugin({
|
|
||||||
patterns: [
|
|
||||||
{
|
|
||||||
from: path.resolve(sourceDir, 'main.css'),
|
|
||||||
to: path.resolve(buildDir, 'main.css')
|
|
||||||
},
|
|
||||||
{
|
|
||||||
from: path.resolve(sourceDir, 'index.html'),
|
|
||||||
to: path.resolve(buildDir, 'index.html')
|
|
||||||
},
|
|
||||||
]
|
|
||||||
})
|
|
||||||
]
|
|
||||||
};
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
module {{.BinaryName}}
|
|
||||||
|
|
||||||
require (
|
|
||||||
github.com/wailsapp/wails {{.WailsVersion}}
|
|
||||||
)
|
|
||||||
@@ -1,26 +0,0 @@
|
|||||||
package main
|
|
||||||
|
|
||||||
import (
|
|
||||||
_ "embed"
|
|
||||||
"github.com/wailsapp/wails"
|
|
||||||
)
|
|
||||||
|
|
||||||
//go:embed frontend/build/main.js
|
|
||||||
var js string
|
|
||||||
|
|
||||||
//go:embed frontend/build/main.css
|
|
||||||
var css string
|
|
||||||
|
|
||||||
func main() {
|
|
||||||
|
|
||||||
app := wails.CreateApp(&wails.AppConfig{
|
|
||||||
Width: 1024,
|
|
||||||
Height: 768,
|
|
||||||
Title: "{{.Name}}",
|
|
||||||
JS: js,
|
|
||||||
CSS: css,
|
|
||||||
Colour: "#131313",
|
|
||||||
})
|
|
||||||
app.Bind(&Counter{})
|
|
||||||
app.Run()
|
|
||||||
}
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "Vanilla",
|
|
||||||
"shortdescription": "A Vanilla HTML/JS template",
|
|
||||||
"description": "A basic template using plain html/js and bundled using Webpack 4",
|
|
||||||
"author": "Lea Anthony<lea.anthony@gmail.com>",
|
|
||||||
"created": "2020-06-14",
|
|
||||||
"frontenddir": "frontend",
|
|
||||||
"install": "npm install",
|
|
||||||
"build": "npm run build",
|
|
||||||
"serve": "npm run serve",
|
|
||||||
"bridge": "src"
|
|
||||||
}
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
> 1%
|
|
||||||
last 2 versions
|
|
||||||
not dead
|
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
module.exports = {
|
|
||||||
root: true,
|
|
||||||
env: {
|
|
||||||
node: true
|
|
||||||
},
|
|
||||||
'extends': [
|
|
||||||
'plugin:vue/vue3-essential',
|
|
||||||
'eslint:recommended',
|
|
||||||
'@vue/typescript/recommended'
|
|
||||||
],
|
|
||||||
parserOptions: {
|
|
||||||
ecmaVersion: 2020
|
|
||||||
},
|
|
||||||
rules: {
|
|
||||||
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
|
|
||||||
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off'
|
|
||||||
},
|
|
||||||
overrides: [
|
|
||||||
{
|
|
||||||
files: [
|
|
||||||
'**/__tests__/*.{j,t}s?(x)',
|
|
||||||
'**/tests/unit/**/*.spec.{j,t}s?(x)'
|
|
||||||
],
|
|
||||||
env: {
|
|
||||||
mocha: true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
21
cmd/templates/vue3-full/frontend/.gitignore
vendored
@@ -1,21 +0,0 @@
|
|||||||
.DS_Store
|
|
||||||
node_modules
|
|
||||||
/dist
|
|
||||||
|
|
||||||
# local env files
|
|
||||||
.env.local
|
|
||||||
.env.*.local
|
|
||||||
|
|
||||||
# Log files
|
|
||||||
npm-debug.log*
|
|
||||||
yarn-debug.log*
|
|
||||||
yarn-error.log*
|
|
||||||
|
|
||||||
# Editor directories and files
|
|
||||||
.idea
|
|
||||||
.vscode
|
|
||||||
*.suo
|
|
||||||
*.ntvs*
|
|
||||||
*.njsproj
|
|
||||||
*.sln
|
|
||||||
*.sw*
|
|
||||||
@@ -1,35 +0,0 @@
|
|||||||
# vue basic
|
|
||||||
|
|
||||||
## Project setup
|
|
||||||
|
|
||||||
```
|
|
||||||
npm install
|
|
||||||
```
|
|
||||||
|
|
||||||
### Compiles and hot-reloads for development
|
|
||||||
|
|
||||||
```
|
|
||||||
npm run serve
|
|
||||||
```
|
|
||||||
|
|
||||||
### Compiles and minifies for production
|
|
||||||
|
|
||||||
```
|
|
||||||
npm run build
|
|
||||||
```
|
|
||||||
|
|
||||||
### Run your tests
|
|
||||||
|
|
||||||
```
|
|
||||||
npm run test
|
|
||||||
```
|
|
||||||
|
|
||||||
### Lints and fixes files
|
|
||||||
|
|
||||||
```
|
|
||||||
npm run lint
|
|
||||||
```
|
|
||||||
|
|
||||||
### Customize configuration
|
|
||||||
|
|
||||||
See [Configuration Reference](https://cli.vuejs.org/config/).
|
|
||||||
@@ -1,37 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "{{.NPMProjectName}}",
|
|
||||||
"author": "{{.Author.Name}}<{{.Author.Email}}>",
|
|
||||||
"private": true,
|
|
||||||
"scripts": {
|
|
||||||
"serve": "vue-cli-service serve",
|
|
||||||
"build": "vue-cli-service build",
|
|
||||||
"test:unit": "vue-cli-service test:unit",
|
|
||||||
"lint": "vue-cli-service lint"
|
|
||||||
},
|
|
||||||
"dependencies": {
|
|
||||||
"vue": "^3.0.0-0",
|
|
||||||
"vue-router": "^4.0.0-0",
|
|
||||||
"regenerator-runtime": "^0.13.7",
|
|
||||||
"@wailsapp/runtime": "^1.1.1"
|
|
||||||
},
|
|
||||||
"devDependencies": {
|
|
||||||
"@types/chai": "^4.2.12",
|
|
||||||
"@types/mocha": "^8.0.3",
|
|
||||||
"@typescript-eslint/eslint-plugin": "^4.3.0",
|
|
||||||
"@typescript-eslint/parser": "^4.3.0",
|
|
||||||
"@vue/cli-plugin-eslint": "~4.5.9",
|
|
||||||
"@vue/cli-plugin-router": "~4.5.9",
|
|
||||||
"@vue/cli-plugin-typescript": "~4.5.9",
|
|
||||||
"@vue/cli-plugin-unit-mocha": "~4.5.9",
|
|
||||||
"@vue/cli-service": "~4.5.9",
|
|
||||||
"@vue/compiler-sfc": "^3.0.0",
|
|
||||||
"@vue/eslint-config-typescript": "^7.0.0",
|
|
||||||
"@vue/test-utils": "^2.0.0-0",
|
|
||||||
"chai": "^4.2.0",
|
|
||||||
"eslint": "<7.0.0",
|
|
||||||
"eslint-plugin-vue": "^7.0.0",
|
|
||||||
"node-sass": "^4.14.1",
|
|
||||||
"sass-loader": "^10.0.2",
|
|
||||||
"typescript": "~4.0.3"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,32 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div id=app>
|
|
||||||
<div id="nav">
|
|
||||||
<router-link to="/">Home</router-link> |
|
|
||||||
<router-link to="/about">About</router-link>
|
|
||||||
</div>
|
|
||||||
<router-view/>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<style lang="scss">
|
|
||||||
#app {
|
|
||||||
font-family: Avenir, Helvetica, Arial, sans-serif;
|
|
||||||
-webkit-font-smoothing: antialiased;
|
|
||||||
-moz-osx-font-smoothing: grayscale;
|
|
||||||
text-align: center;
|
|
||||||
color: #2c3e50;
|
|
||||||
}
|
|
||||||
|
|
||||||
#nav {
|
|
||||||
padding: 30px;
|
|
||||||
|
|
||||||
a {
|
|
||||||
font-weight: bold;
|
|
||||||
color: #2c3e50;
|
|
||||||
|
|
||||||
&.router-link-exact-active {
|
|
||||||
color: #42b983;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
Before Width: | Height: | Size: 106 KiB |
@@ -1,34 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div class="hello">
|
|
||||||
<h1>{{ msg }}</h1>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts">
|
|
||||||
import { defineComponent } from 'vue';
|
|
||||||
|
|
||||||
export default defineComponent({
|
|
||||||
name: 'HelloWorld',
|
|
||||||
props: {
|
|
||||||
msg: String,
|
|
||||||
},
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<!-- Add "scoped" attribute to limit CSS to this component only -->
|
|
||||||
<style scoped lang="scss">
|
|
||||||
h3 {
|
|
||||||
margin: 40px 0 0;
|
|
||||||
}
|
|
||||||
ul {
|
|
||||||
list-style-type: none;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
li {
|
|
||||||
display: inline-block;
|
|
||||||
margin: 0 10px;
|
|
||||||
}
|
|
||||||
a {
|
|
||||||
color: #42b983;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
import { createApp } from 'vue';
|
|
||||||
import App from './App.vue';
|
|
||||||
import router from './router';
|
|
||||||
import * as Wails from '@wailsapp/runtime';
|
|
||||||
|
|
||||||
Wails.Init(() => {
|
|
||||||
createApp(App).use(router).mount('#app');
|
|
||||||
});
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
import { createRouter, createMemoryHistory, RouteRecordRaw } from 'vue-router'
|
|
||||||
import Home from '../views/Home.vue'
|
|
||||||
import About from '../views/About.vue'
|
|
||||||
|
|
||||||
const routes: Array<RouteRecordRaw> = [
|
|
||||||
{
|
|
||||||
path: '/',
|
|
||||||
name: 'Home',
|
|
||||||
component: Home
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path: '/about',
|
|
||||||
name: 'About',
|
|
||||||
// route level code-splitting
|
|
||||||
// this generates a separate chunk (about.[hash].js) for this route
|
|
||||||
// which is lazy-loaded when the route is visited.
|
|
||||||
// component: () => import(/* webpackChunkName: "about" */ '../views/About.vue')
|
|
||||||
component: About
|
|
||||||
}
|
|
||||||
]
|
|
||||||
|
|
||||||
const router = createRouter({
|
|
||||||
history: createMemoryHistory(),
|
|
||||||
routes
|
|
||||||
})
|
|
||||||
|
|
||||||
export default router
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
declare module '*.vue' {
|
|
||||||
import { defineComponent } from 'vue'
|
|
||||||
const component: ReturnType<typeof defineComponent>
|
|
||||||
export default component
|
|
||||||
}
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div class="about">
|
|
||||||
<h1>This is an about page</h1>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
@@ -1,40 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div class="home">
|
|
||||||
<img @click="getMessage" alt="Vue logo" src="../assets/appicon.png" :style="{ height: '400px' }"/>
|
|
||||||
<HelloWorld :msg="message" />
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts">
|
|
||||||
import { ref, defineComponent } from "vue";
|
|
||||||
import HelloWorld from "@/components/HelloWorld.vue"; // @ is an alias to /src
|
|
||||||
|
|
||||||
interface Backend {
|
|
||||||
basic(): Promise<string>;
|
|
||||||
}
|
|
||||||
|
|
||||||
declare global {
|
|
||||||
interface Window {
|
|
||||||
backend: Backend;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export default defineComponent({
|
|
||||||
name: "Home",
|
|
||||||
components: {
|
|
||||||
HelloWorld,
|
|
||||||
},
|
|
||||||
setup() {
|
|
||||||
|
|
||||||
const message = ref("Click the Icon");
|
|
||||||
|
|
||||||
const getMessage = () => {
|
|
||||||
window.backend.basic().then(result => {
|
|
||||||
message.value = result;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
return { message: message, getMessage: getMessage };
|
|
||||||
},
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
import { expect } from 'chai';
|
|
||||||
import { describe, it } from 'mocha';
|
|
||||||
import { shallowMount } from '@vue/test-utils';
|
|
||||||
import HelloWorld from '@/components/HelloWorld.vue';
|
|
||||||
|
|
||||||
describe('HelloWorld.vue', () => {
|
|
||||||
it('renders props.msg when passed', () => {
|
|
||||||
const msg = 'new message';
|
|
||||||
const wrapper = shallowMount(HelloWorld, {
|
|
||||||
props: { msg }
|
|
||||||
});
|
|
||||||
expect(wrapper.text()).to.include(msg);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
@@ -1,41 +0,0 @@
|
|||||||
{
|
|
||||||
"compilerOptions": {
|
|
||||||
"target": "es5",
|
|
||||||
"module": "esnext",
|
|
||||||
"strict": true,
|
|
||||||
"jsx": "preserve",
|
|
||||||
"importHelpers": true,
|
|
||||||
"moduleResolution": "node",
|
|
||||||
"skipLibCheck": true,
|
|
||||||
"esModuleInterop": true,
|
|
||||||
"allowSyntheticDefaultImports": true,
|
|
||||||
"sourceMap": true,
|
|
||||||
"baseUrl": ".",
|
|
||||||
"types": [
|
|
||||||
"webpack-env",
|
|
||||||
"mocha",
|
|
||||||
"chai"
|
|
||||||
],
|
|
||||||
"paths": {
|
|
||||||
"@/*": [
|
|
||||||
"src/*"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"lib": [
|
|
||||||
"esnext",
|
|
||||||
"dom",
|
|
||||||
"dom.iterable",
|
|
||||||
"scripthost"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"include": [
|
|
||||||
"src/**/*.ts",
|
|
||||||
"src/**/*.tsx",
|
|
||||||
"src/**/*.vue",
|
|
||||||
"tests/**/*.ts",
|
|
||||||
"tests/**/*.tsx"
|
|
||||||
],
|
|
||||||
"exclude": [
|
|
||||||
"node_modules"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@@ -1,42 +0,0 @@
|
|||||||
let cssConfig = {};
|
|
||||||
|
|
||||||
if (process.env.NODE_ENV == 'production') {
|
|
||||||
cssConfig = {
|
|
||||||
extract: {
|
|
||||||
filename: '[name].css',
|
|
||||||
chunkFilename: '[name].css'
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
module.exports = {
|
|
||||||
chainWebpack: config => {
|
|
||||||
let limit = 9999999999999999;
|
|
||||||
config.module
|
|
||||||
.rule('images')
|
|
||||||
.test(/\.(png|gif|jpg)(\?.*)?$/i)
|
|
||||||
.use('url-loader')
|
|
||||||
.loader('url-loader')
|
|
||||||
.tap(options => Object.assign(options, { limit: limit }));
|
|
||||||
config.module
|
|
||||||
.rule('fonts')
|
|
||||||
.test(/\.(woff2?|eot|ttf|otf|svg)(\?.*)?$/i)
|
|
||||||
.use('url-loader')
|
|
||||||
.loader('url-loader')
|
|
||||||
.options({
|
|
||||||
limit: limit
|
|
||||||
});
|
|
||||||
},
|
|
||||||
css: cssConfig,
|
|
||||||
configureWebpack: {
|
|
||||||
output: {
|
|
||||||
filename: '[name].js'
|
|
||||||
},
|
|
||||||
optimization: {
|
|
||||||
splitChunks: false
|
|
||||||
}
|
|
||||||
},
|
|
||||||
devServer: {
|
|
||||||
disableHostCheck: true
|
|
||||||
}
|
|
||||||
};
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
module {{.BinaryName}}
|
|
||||||
|
|
||||||
require (
|
|
||||||
github.com/wailsapp/wails {{.WailsVersion}}
|
|
||||||
)
|
|
||||||
@@ -1,30 +0,0 @@
|
|||||||
package main
|
|
||||||
|
|
||||||
import (
|
|
||||||
_ "embed"
|
|
||||||
"github.com/wailsapp/wails"
|
|
||||||
)
|
|
||||||
|
|
||||||
func basic() string {
|
|
||||||
return "Hello World!"
|
|
||||||
}
|
|
||||||
|
|
||||||
//go:embed frontend/dist/app.js
|
|
||||||
var js string
|
|
||||||
|
|
||||||
//go:embed frontend/dist/app.css
|
|
||||||
var css string
|
|
||||||
|
|
||||||
func main() {
|
|
||||||
|
|
||||||
app := wails.CreateApp(&wails.AppConfig{
|
|
||||||
Width: 1024,
|
|
||||||
Height: 768,
|
|
||||||
Title: "{{.Name}}",
|
|
||||||
JS: js,
|
|
||||||
CSS: css,
|
|
||||||
Colour: "#131313",
|
|
||||||
})
|
|
||||||
app.Bind(basic)
|
|
||||||
app.Run()
|
|
||||||
}
|
|
||||||
@@ -1,15 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "Vue3 Full",
|
|
||||||
"version": "1.0.0",
|
|
||||||
"shortdescription": "Vue 3, Vuex, Vue-router, and Webpack4",
|
|
||||||
"description": "Vue3.0.0 Vuex, Vue-router, and Webpack 4",
|
|
||||||
"install": "npm install",
|
|
||||||
"build": "npm run build",
|
|
||||||
"author": "Kyle Muchmore <kmuchmor@gmail.com>",
|
|
||||||
"created": "2020-09-24 21:18:55.09417 +0000 UTC m=+90.125590001",
|
|
||||||
"frontenddir": "frontend",
|
|
||||||
"serve": "npm run serve",
|
|
||||||
"bridge": "src",
|
|
||||||
"wailsdir": "",
|
|
||||||
"platforms": ["linux", "darwin"]
|
|
||||||
}
|
|
||||||
23
cmd/templates/vue3-js/frontend/.gitignore
vendored
@@ -1,23 +0,0 @@
|
|||||||
.DS_Store
|
|
||||||
node_modules
|
|
||||||
/dist
|
|
||||||
|
|
||||||
|
|
||||||
# local env files
|
|
||||||
.env.local
|
|
||||||
.env.*.local
|
|
||||||
|
|
||||||
# Log files
|
|
||||||
npm-debug.log*
|
|
||||||
yarn-debug.log*
|
|
||||||
yarn-error.log*
|
|
||||||
pnpm-debug.log*
|
|
||||||
|
|
||||||
# Editor directories and files
|
|
||||||
.idea
|
|
||||||
.vscode
|
|
||||||
*.suo
|
|
||||||
*.ntvs*
|
|
||||||
*.njsproj
|
|
||||||
*.sln
|
|
||||||
*.sw?
|
|
||||||