Conservation des assets Windows (icônes) dans le dépôt
7
.gitignore
vendored
@@ -1,13 +1,14 @@
|
|||||||
# --- Build / Wails ---
|
# --- Build / Wails ---
|
||||||
bin/
|
bin/
|
||||||
build/
|
|
||||||
dist/
|
dist/
|
||||||
*.exe
|
*.exe
|
||||||
*.app
|
*.app
|
||||||
*.dmg
|
*.dmg
|
||||||
!build/appicon.png
|
build/**
|
||||||
|
!build/
|
||||||
!build/windows/
|
!build/windows/
|
||||||
!build/windows/icon.ico
|
!build/windows/**
|
||||||
|
!build/appicon.png
|
||||||
|
|
||||||
# Wails generated
|
# Wails generated
|
||||||
# frontend/src/wailsjs/
|
# frontend/src/wailsjs/
|
||||||
|
|||||||
BIN
build/appicon.png
Normal file
|
After Width: | Height: | Size: 341 KiB |
BIN
build/windows/appicon.png
Normal file
|
After Width: | Height: | Size: 341 KiB |
BIN
build/windows/ico_export_0.png
Normal file
|
After Width: | Height: | Size: 76 KiB |
BIN
build/windows/ico_export_1.png
Normal file
|
After Width: | Height: | Size: 25 KiB |
BIN
build/windows/ico_export_2.png
Normal file
|
After Width: | Height: | Size: 8.3 KiB |
BIN
build/windows/ico_export_3.png
Normal file
|
After Width: | Height: | Size: 5.3 KiB |
BIN
build/windows/ico_export_4.png
Normal file
|
After Width: | Height: | Size: 2.9 KiB |
BIN
build/windows/ico_export_5.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
build/windows/icon.ico
Normal file
|
After Width: | Height: | Size: 173 KiB |
15
build/windows/info.json
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"fixed": {
|
||||||
|
"file_version": "{{.Info.ProductVersion}}"
|
||||||
|
},
|
||||||
|
"info": {
|
||||||
|
"0000": {
|
||||||
|
"ProductVersion": "{{.Info.ProductVersion}}",
|
||||||
|
"CompanyName": "{{.Info.CompanyName}}",
|
||||||
|
"FileDescription": "{{.Info.ProductName}}",
|
||||||
|
"LegalCopyright": "{{.Info.Copyright}}",
|
||||||
|
"ProductName": "{{.Info.ProductName}}",
|
||||||
|
"Comments": "{{.Info.Comments}}"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
15
build/windows/wails.exe.manifest
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
|
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3">
|
||||||
|
<assemblyIdentity type="win32" name="com.wails.{{.Name}}" version="{{.Info.ProductVersion}}.0" processorArchitecture="*"/>
|
||||||
|
<dependency>
|
||||||
|
<dependentAssembly>
|
||||||
|
<assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" processorArchitecture="*" publicKeyToken="6595b64144ccf1df" language="*"/>
|
||||||
|
</dependentAssembly>
|
||||||
|
</dependency>
|
||||||
|
<asmv3:application>
|
||||||
|
<asmv3:windowsSettings>
|
||||||
|
<dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true/pm</dpiAware> <!-- fallback for Windows 7 and 8 -->
|
||||||
|
<dpiAwareness xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">permonitorv2,permonitor</dpiAwareness> <!-- falls back to per-monitor if per-monitor v2 is not supported -->
|
||||||
|
</asmv3:windowsSettings>
|
||||||
|
</asmv3:application>
|
||||||
|
</assembly>
|
||||||