Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 21 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,24 @@ builddir
.potrans
repo
.vscode
deploy
deploy
subprojects/**/
subprojects/*.wrap
!subprojects/
!subprojects/packagefiles/
!subprojects/packagefiles/*.patch
!subprojects/granite.wrap
!subprojects/json-glib.wrap
!subprojects/libgee.wrap
!subprojects/granite-stylesheet.wrap
!subprojects/glib-networking.wrap
!subprojects/libproxy.wrap
!subprojects/libpsl.wrap
!subprojects/libsecret.wrap
!subprojects/libsoup.wrap
!subprojects/nghttp2.wrap
!subprojects/openssl.wrap
!subprojects/sqlite3.wrap
.pixiewood
_build
apks/
91 changes: 91 additions & 0 deletions build-aux/pixiewood.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
<?xml version="1.0" encoding="UTF-8"?>
<app xmlns="https://sp1rit.arpa/pixiewood/" xmlns:xi="http://www.w3.org/2001/XInclude">
<metainfo vercalc="sem121010">
<!-- <xi:include href="build://x86_64/data/io.github.elly_code.inscriptions.metainfo.xml" parse="xml" /> -->
<xi:include href="build://aarch64/data/io.github.elly_code.inscriptions.metainfo.xml" parse="xml" />
</metainfo>
<style>
<!-- Currently available themes are "gtk" & "adw" -->
<theme name="gtk"/> <!-- TODO: granite theme -->
<icon type="generate">
<drawable target="foreground" scale=".5" type="svg" path="src://data/icons/64.svg"/>
<!-- You can also use drawable instead of color for target="background" -->
<color target="background">#FFFFFF</color>
<!-- The target="monochrome" is optional -->
<!-- <drawable target="monochrome" scale=".5" type="svg" path="src://data/icons/symbolic.svg"/> -->
</icon>
</style>
<dependencies>
<glib>
<patch>hack</patch>
<patch>pthread-restrictions</patch>
</glib>
<harfbuzz />
<fontconfig />
<gtk />
</dependencies>
<build target="io.github.elly_code.inscriptions">
<architectures>
<!-- <arch>x86_64</arch> -->
<arch>aarch64</arch>
</architectures>
<configure-options>
<option>-Dgtk:media-gstreamer=disabled</option>
<option>-Dgtk:buildtype=debugoptimized</option>
<!-- <option>-Dgtk:introspection=enabled</option> -->
<option>-Dgtk:print-cups=disabled</option>
<option>-Dgtk:build-demos=false</option>
<option>-Dgtk:build-testsuite=false</option>
<option>-Dgtk:build-examples=false</option>
<option>-Dgtk:build-tests=false</option>

<option>-Dgobject-introspection:tests=false</option>

<option>-Djson-glib:documentation=disabled</option>
<option>-Djson-glib:gtk_doc=disabled</option>
<option>-Djson-glib:tests=false</option>
<option>-Djson-glib:conformance=false</option>
<option>-Djson-glib:installed_tests=false</option>

<option>-Dgranite:demo=false</option>

<option>-Dlibgee:tests=disabled</option>

<option>-Dlibsecret:manpage=false</option>
<option>-Dlibsecret:crypto=disabled</option>
<option>-Dlibsecret:gtk_doc=false</option>
<option>-Dlibsecret:bash_completion=disabled</option>

<option>-Dlibsoup:tls_check=true</option>
<option>-Dlibsoup:tests=false</option>
<option>-Dlibsoup:docs=disabled</option>

<option>-Dlibproxy:docs=false</option>
<option>-Dlibproxy:tests=false</option>
<option>-Dlibproxy:config-env=false</option>
<option>-Dlibproxy:config-gnome=false</option>
<option>-Dlibproxy:config-kde=false</option>
<option>-Dlibproxy:config-windows=false</option>
<option>-Dlibproxy:config-sysconfig=false</option>
<option>-Dlibproxy:config-osx=false</option>
<option>-Dlibproxy:vapi=false</option>
<option>-Dlibproxy:curl=false</option>
<option>-Dlibproxy:pacrunner-duktape=false</option>

<option>-Dglib-networking:gnome_proxy=disabled</option>
<option>-Dglib-networking:environment_proxy=disabled</option>
<option>-Dglib-networking:gnutls=disabled</option>
<option>-Dglib-networking:openssl=enabled</option>
<option>-Dglib-networking:libproxy=disabled</option>
<option>-Dglib-networking:default_library=static</option>

<option>-Dgtk:introspection=disabled</option>
<option>-Djson-glib:introspection=disabled</option>
<option>-Dgranite:introspection=false</option>
<option>-Dlibsoup:introspection=disabled</option>
<option>-Dlibsecret:introspection=false</option>
<option>-Dlibproxy:introspection=false</option>
<option>-Dlibgee:disable-introspection=true</option>
</configure-options>
</build>
</app>
6 changes: 5 additions & 1 deletion data/Application.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ Picked: #2c3944d9
Base from wpkelso: #33434eff
*/

window * {
font-weight: 700;

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

default android font is very thin and broken on some phones, making it bold fixes it

}

@define-color accent_color #33434e;

/* Used in the OrientationsBox for the preview icon */
Expand Down Expand Up @@ -155,4 +159,4 @@ scale.temperature trough {
inset 0 2px 0 alpha(#fff, 0.15),
0 1px 0 0 alpha(@bg_highlight_color, 0.3);
}
*/
*/
Loading