Copy over all Phase 2 files

This commit is contained in:
2025-04-28 09:58:27 +02:00
commit 2e93b3e2f3
16 changed files with 4243 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg height="16px" viewBox="0 0 16 16" width="16px" xmlns="http://www.w3.org/2000/svg">
<g fill="#241f31">
<path d="m 9.382812 8.414062 l 1.59375 -7.886718 l 1.628907 3.53125 l 2.828125 0.113281 z m 0 0"/>
<path d="m 9.429688 8.464844 l -4.054688 -8 l 0.128906 4.59375 l -5.207031 0.003906 z m 0 0"/>
<path d="m 9.363281 8.460938 l -8.824219 2.679687 l 6.730469 -0.046875 l 2.023438 4.628906 z m 0 0"/>
<path d="m 9.429688 8.46875 l 3.894531 -0.089844 l 0.707031 4.390625 z m 0 0"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 574 B

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 175 KiB

View File

@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg height="128px" viewBox="0 0 128 128" width="128px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<radialGradient id="a" cx="63.649818" cy="297.94458" gradientTransform="matrix(1 0 0 0.721658 0 -102.776207)" gradientUnits="userSpaceOnUse" r="53.799221">
<stop offset="0.831386" stop-color="#c01c28"/>
<stop offset="1" stop-color="#ed313a"/>
</radialGradient>
<path d="m 17.855469 37.875 h 96.703125 c 3.007812 0 5.449218 2.4375 5.449218 5.445312 v 66.757813 c 0 3.007813 -2.441406 5.445313 -5.449218 5.445313 h -96.703125 c -3.007813 0 -5.449219 -2.4375 -5.449219 -5.445313 v -66.757813 c 0 -3.007812 2.441406 -5.445312 5.449219 -5.445312 z m 0 0" fill="url(#a)"/>
<path d="m 17.871094 27.773438 h 96.601562 c 3.039063 0 5.5 2.460937 5.5 5.496093 v 70.613281 c 0 3.035157 -2.460937 5.496094 -5.5 5.496094 h -96.601562 c -3.035156 0 -5.496094 -2.460937 -5.496094 -5.496094 v -70.613281 c 0 -3.035156 2.460938 -5.496093 5.496094 -5.496093 z m 0 0" fill="#ed333b"/>
<g fill="#ffffff">
<path d="m 75.234375 71.308594 l 7.378906 -32.078125 l 5.871094 14.515625 l 21.789063 -4.382813 z m 0 0"/>
<path d="m 75.492188 71.582031 l -23.480469 -41.40625 l 4.667969 26.765625 l -34.101563 -2.972656 z m 0 0"/>
<path d="m 75.113281 71.566406 l -51.121093 13.871094 l 42.402343 -2.71875 l 12.320313 24.933594 z m 0 0"/>
<path d="m 75.484375 71.605469 l 15.601563 1.195312 l 1.117187 15.5 z m 0 0"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1,11 @@
[Desktop Entry]
Version=1.0
Type=Application
Name=Adwaita Template
Comment=A template for creating GNOME apps with Swift
Categories=Development;GNOME;
Icon=io.github.AparokshaUI.AdwaitaTemplate
Exec=AdwaitaTemplate
Terminal=false

View File

@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="UTF-8"?>
<component type="desktop-application">
<id>io.github.AparokshaUI.AdwaitaTemplate</id>
<name>Adwaita Template</name>
<summary>A template for creating GNOME apps with Swift</summary>
<metadata_license>MIT</metadata_license>
<project_license>LGPL-3.0-or-later</project_license>
<supports>
<control>pointing</control>
<control>keyboard</control>
<control>touch</control>
</supports>
<description>
<p>
This is a <em>long</em> description of this project. Yes - that is required!
</p>
</description>
<launchable type="desktop-id">io.github.AparokshaUI.AdwaitaTemplate.desktop</launchable>
</component>

View File

@@ -0,0 +1,54 @@
{
"app-id": "io.github.AparokshaUI.AdwaitaTemplate",
"runtime": "org.gnome.Platform",
"runtime-version": "46",
"sdk": "org.gnome.Sdk",
"sdk-extensions": [
"org.freedesktop.Sdk.Extension.swift5"
],
"command": "AdwaitaTemplate",
"finish-args": [
"--share=ipc",
"--socket=fallback-x11",
"--device=dri",
"--socket=wayland"
],
"build-options": {
"append-path": "/usr/lib/sdk/swift5/bin",
"prepend-ld-library-path": "/usr/lib/sdk/swift5/lib"
},
"cleanup": [
"/include",
"/lib/pkgconfig",
"/man",
"/share/doc",
"/share/gtk-doc",
"/share/man",
"/share/pkgconfig",
"*.la",
"*.a"
],
"modules": [
{
"name": "AdwaitaTemplate",
"builddir": true,
"buildsystem": "simple",
"sources": [
{
"type": "dir",
"path": "."
}
],
"build-commands": [
"./setup-offline.sh",
"swift build -c release --static-swift-stdlib --skip-update",
"strip .build/release/AdwaitaTemplate",
"install -Dm755 .build/release/AdwaitaTemplate /app/bin/AdwaitaTemplate",
"install -Dm644 data/io.github.AparokshaUI.AdwaitaTemplate.metainfo.xml $DESTDIR/app/share/metainfo/io.github.AparokshaUI.AdwaitaTemplate.metainfo.xml",
"install -Dm644 data/io.github.AparokshaUI.AdwaitaTemplate.desktop $DESTDIR/app/share/applications/io.github.AparokshaUI.AdwaitaTemplate.desktop",
"install -Dm644 data/icons/io.github.AparokshaUI.AdwaitaTemplate.svg $DESTDIR/app/share/icons/hicolor/scalable/apps/io.github.AparokshaUI.AdwaitaTemplate.svg",
"install -Dm644 data/icons/io.github.AparokshaUI.AdwaitaTemplate-symbolic.svg $DESTDIR/app/share/icons/hicolor/symbolic/apps/io.github.AparokshaUI.AdwaitaTemplate-symbolic.svg"
]
}
]
}