-
-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add frontend watcher and changelog (#20)
* docs: update logo * docs: update graphic demo * docs: update readme * feat: add debounceMS field * feat: add script file * release v2.0.0-beta.5
- Loading branch information
Showing
13 changed files
with
64 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#! /bin/bash | ||
|
||
echo -e "Start running the script..." | ||
cd ../ | ||
|
||
echo -e "Start building the app for macos platform..." | ||
wails build --clean --platform darwin/arm64 | ||
|
||
echo -e "End running the script!" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#! /bin/bash | ||
|
||
echo -e "Start running the script..." | ||
cd ../ | ||
|
||
echo -e "Start building the app for macos platform..." | ||
wails build --clean --platform darwin | ||
|
||
echo -e "End running the script!" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#! /bin/bash | ||
|
||
echo -e "Start running the script..." | ||
cd ../ | ||
|
||
echo -e "Start building the app for macos platform..." | ||
wails build --clean --platform darwin/universal | ||
|
||
echo -e "End running the script!" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#! /bin/bash | ||
|
||
echo -e "Start running the script..." | ||
cd ../ | ||
|
||
echo -e "Start building the app for windows platform..." | ||
wails build --clean --platform windows/amd64 | ||
|
||
echo -e "End running the script!" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#! /bin/bash | ||
|
||
echo -e "Start running the script..." | ||
cd ../ | ||
|
||
echo -e "Start building the app..." | ||
wails build --clean | ||
|
||
echo -e "End running the script!" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#! /bin/bash | ||
|
||
echo -e "Start running the script..." | ||
cd ../ | ||
|
||
echo -e "Current Go version: \c" | ||
go version | ||
|
||
echo -e "Install the Wails command line tool..." | ||
go install github.com/wailsapp/wails/v2/cmd/wails@latest | ||
|
||
echo -e "Successful installation!" | ||
|
||
echo -e "End running the script!" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
{ | ||
"name": "wails-template-vue", | ||
"version":"2.0.0-beta.5", | ||
"shortname": "vue", | ||
"author": "Misitebao <[email protected]>", | ||
"description": "A template using vue and vue-router", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters