-
Notifications
You must be signed in to change notification settings - Fork 618
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #123 from putyy/wails
Linux支持
- Loading branch information
Showing
24 changed files
with
175 additions
and
63 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
!.gitkeep | ||
debian/usr/local/bin/* | ||
debian/DEBIAN/control | ||
AppImage/usr/bin/* | ||
AppImage/usr/lib/* |
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 @@ | ||
res-downloader.png |
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,8 @@ | ||
[Desktop Entry] | ||
Type=Application | ||
Name=res-downloader | ||
Comment=This is a high-value and high-performance and diverse resource downloader called res-downloader | ||
Exec=/usr/bin/res-downloader | ||
Icon=/usr/share/icons/hicolor/256x256/apps/res-downloader | ||
Terminal=false | ||
Categories=Utility; |
Binary file not shown.
Empty file.
8 changes: 8 additions & 0 deletions
8
build/linux/AppImage/usr/share/applications/res-downloader.desktop
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,8 @@ | ||
[Desktop Entry] | ||
Type=Application | ||
Name=res-downloader | ||
Comment=This is a high-value and high-performance and diverse resource downloader called res-downloader | ||
Exec=/usr/bin/res-downloader | ||
Icon=/usr/share/icons/hicolor/256x256/apps/res-downloader | ||
Terminal=false | ||
Categories=Utility; |
Binary file added
BIN
+44.8 KB
build/linux/AppImage/usr/share/icons/hicolor/256x256/apps/res-downloader.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
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 @@ | ||
Package: res-downloader | ||
Version: {{Version}} | ||
Section: utils | ||
Priority: optional | ||
Architecture: amd64 | ||
Depends: libwebkit2gtk-4.0-37 | ||
Maintainer: [email protected] | ||
Homepage: https://github.com/putyy/res-downloader | ||
Description: This is a high-value and high-performance and diverse resource downloader called res-downloader |
Binary file not shown.
Empty file.
8 changes: 8 additions & 0 deletions
8
build/linux/Debian/usr/share/applications/res-downloader.desktop
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,8 @@ | ||
[Desktop Entry] | ||
Type=Application | ||
Name=res-downloader | ||
Comment=This is a high-value and high-performance and diverse resource downloader called res-downloader | ||
Exec=/usr/local/bin/res-downloader | ||
Icon=/usr/share/icons/hicolor/256x256/apps/res-downloader.png | ||
Terminal=false | ||
Categories=Utility; |
Binary file added
BIN
+44.8 KB
build/linux/Debian/usr/share/icons/hicolor/256x256/apps/res-downloader.png
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
FROM golang:1.23.4-bookworm | ||
|
||
WORKDIR / | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y --fix-missing \ | ||
build-essential \ | ||
git \ | ||
jq \ | ||
kmod \ | ||
fuse \ | ||
libgtk-3-dev \ | ||
libwebkit2gtk-4.0-dev \ | ||
nsis \ | ||
wget \ | ||
curl \ | ||
gnupg2 \ | ||
lsb-release \ | ||
libfuse-dev \ | ||
libfuse2 \ | ||
file \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
RUN curl -sL https://deb.nodesource.com/setup_20.x | bash - \ | ||
&& apt-get install -y nodejs | ||
|
||
RUN go install github.com/wailsapp/wails/v2/cmd/wails@latest | ||
|
||
RUN wails doctor |
This file was deleted.
Oops, something went wrong.
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
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
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