galaaz 2.1.10.pre.12 → 2.1.10.pre.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +13 -0
- data/script/omarchy/install-galaaz.sh +3 -11
- data/script/omarchy/omarchy-menu.jsonc +12 -15
- data/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '09e94b03c143100bedec0b46d8737b13aa8c25235b0868fddbbaf49d111791c0'
|
|
4
|
+
data.tar.gz: 94ee86839f3d3fd4005aa097d5538a0dc3f0aff2db598a507baa8a08e32d1413
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fd0782c57de1e2ebf14bb11f91c42f90c7aa3223880240462249e99d6075942669c52fe6f05d3d692ae9a94a96e0d00c7d8cb94f03f86dce0f181a4703c9b673
|
|
7
|
+
data.tar.gz: 5f40a5a4dd2349244be53543aa08b587f3c906a75023e30a57f74f1359dfa23e6334c51cfc704fcc5153bda6b67e868b2614816149e7ec5b8e637e7f7bdae724
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 2.1.10.pre.13
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- Omarchy Install rows back to **`disabled:`** (dim + ✓), matching Rails / the
|
|
10
|
+
last known-good Galaaz overlay — not `when:` hide. Nested Knit/Arrow/Ledger
|
|
11
|
+
are still under **Install → Development → Galaaz**; typing a letter in the
|
|
12
|
+
menu search lists them as flat hits with a Galaaz breadcrumb (Omarchy search
|
|
13
|
+
UX, not a broken tree).
|
|
14
|
+
- Font install: restore the pre.6 fontconfig snippet; always `cp -f`
|
|
15
|
+
`omarchy-with-galaaz.ttf`. After upgrade run `galaaz omarchy install` and
|
|
16
|
+
restart the Omarchy shell so Qt reloads family `omarchy` / U+E90E.
|
|
17
|
+
|
|
5
18
|
## 2.1.10.pre.12
|
|
6
19
|
|
|
7
20
|
### Fixed
|
|
@@ -276,13 +276,13 @@ if [[ -f "${SCRIPT_DIR}/fonts/galaaz.ttf" ]]; then
|
|
|
276
276
|
fi
|
|
277
277
|
if [[ -f "${SCRIPT_DIR}/fonts/omarchy-with-galaaz.ttf" ]]; then
|
|
278
278
|
mkdir -p "${HOME}/.local/share/fonts" "${HOME}/.config/fontconfig/conf.d"
|
|
279
|
-
cp "${SCRIPT_DIR}/fonts/omarchy-with-galaaz.ttf" "${HOME}/.local/share/fonts/omarchy-with-galaaz.ttf"
|
|
280
|
-
|
|
279
|
+
cp -f "${SCRIPT_DIR}/fonts/omarchy-with-galaaz.ttf" "${HOME}/.local/share/fonts/omarchy-with-galaaz.ttf"
|
|
280
|
+
# Same conf as the known-good pre.6 dogfood — prefer our TTF over stock omarchy.ttf.
|
|
281
|
+
cat >"${HOME}/.config/fontconfig/conf.d/99-galaaz-omarchy-brand.conf" <<'XML'
|
|
281
282
|
<?xml version="1.0"?>
|
|
282
283
|
<!DOCTYPE fontconfig SYSTEM "urn:fontconfig:fonts.dtd">
|
|
283
284
|
<fontconfig>
|
|
284
285
|
<!-- Prefer Galaaz-extended Omarchy brand font (adds U+E90E). -->
|
|
285
|
-
<dir>${HOME}/.local/share/fonts</dir>
|
|
286
286
|
<selectfont>
|
|
287
287
|
<rejectfont>
|
|
288
288
|
<glob>*/omarchy/omarchy.ttf</glob>
|
|
@@ -291,14 +291,6 @@ if [[ -f "${SCRIPT_DIR}/fonts/omarchy-with-galaaz.ttf" ]]; then
|
|
|
291
291
|
</fontconfig>
|
|
292
292
|
XML
|
|
293
293
|
log "menu font (family omarchy + U+E90E): ${HOME}/.local/share/fonts/omarchy-with-galaaz.ttf"
|
|
294
|
-
if command -v fc-list >/dev/null 2>&1; then
|
|
295
|
-
fc-cache -f "${HOME}/.local/share/fonts" >/dev/null 2>&1 || true
|
|
296
|
-
if fc-list : file family 2>/dev/null | grep -q 'omarchy-with-galaaz.ttf'; then
|
|
297
|
-
log "fontconfig sees omarchy-with-galaaz.ttf"
|
|
298
|
-
else
|
|
299
|
-
log "WARN: omarchy-with-galaaz.ttf not listed by fc-list yet (logout/restart shell if icon missing)"
|
|
300
|
-
fi
|
|
301
|
-
fi
|
|
302
294
|
fi
|
|
303
295
|
if command -v fc-cache >/dev/null 2>&1; then
|
|
304
296
|
fc-cache -r >/dev/null 2>&1 || true
|
|
@@ -6,15 +6,12 @@
|
|
|
6
6
|
// "galaaz add …" as one word — omarchy-launch-tui then does nothing useful.
|
|
7
7
|
//
|
|
8
8
|
// Brand mark: U+E90E in family "omarchy" (same iconFont Cursor/Grok use).
|
|
9
|
-
//
|
|
10
|
-
// is that font plus our R+gem at E90E, installed to
|
|
11
|
-
// ~/.local/share/fonts/omarchy-with-galaaz.ttf. A separate family "galaaz"
|
|
12
|
-
// alone shows missing-glyph tofu in Qt — do not use iconFont "galaaz" here.
|
|
9
|
+
// Font file: ~/.local/share/fonts/omarchy-with-galaaz.ttf (installed by core).
|
|
13
10
|
//
|
|
14
|
-
// Install:
|
|
15
|
-
//
|
|
16
|
-
//
|
|
17
|
-
// Guide
|
|
11
|
+
// Install rows: disabled: (dim + ✓ when installed) — same as Omarchy Rails.
|
|
12
|
+
// Do not use when: to hide Install rows; Omarchy search will still list nested
|
|
13
|
+
// children under a divider when you type a letter (that is search, not a
|
|
14
|
+
// broken tree). Guide/Docs/GitHub: Learn → Galaaz.
|
|
18
15
|
|
|
19
16
|
"learn.galaaz": {
|
|
20
17
|
"icon": "\uE90E",
|
|
@@ -53,7 +50,7 @@
|
|
|
53
50
|
"label": "Galaaz (core)",
|
|
54
51
|
"description": "setup + blogs (gem already installed)",
|
|
55
52
|
"action": "omarchy-launch-tui omarchy-install-galaaz",
|
|
56
|
-
"
|
|
53
|
+
"disabled": "[[ -f $HOME/.config/galaaz/profiles/core ]]"
|
|
57
54
|
},
|
|
58
55
|
"install.development.galaaz.knit": {
|
|
59
56
|
"icon": "\uE90E",
|
|
@@ -61,7 +58,7 @@
|
|
|
61
58
|
"label": "Knit (HTML + PDF blogs)",
|
|
62
59
|
"description": "pandoc + knitr/rmarkdown + TinyTeX",
|
|
63
60
|
"action": "omarchy-launch-tui omarchy-galaaz-add knit",
|
|
64
|
-
"
|
|
61
|
+
"disabled": "[[ -f $HOME/.config/galaaz/profiles/knit ]]"
|
|
65
62
|
},
|
|
66
63
|
"install.development.galaaz.arrow-r": {
|
|
67
64
|
"icon": "\uE90E",
|
|
@@ -69,7 +66,7 @@
|
|
|
69
66
|
"label": "Arrow (R only)",
|
|
70
67
|
"description": "CRAN arrow via Apache prebuilt libarrow",
|
|
71
68
|
"action": "omarchy-launch-tui omarchy-galaaz-add arrow-r",
|
|
72
|
-
"
|
|
69
|
+
"disabled": "[[ -f $HOME/.config/galaaz/profiles/arrow-r || -f $HOME/.config/galaaz/profiles/arrow ]]"
|
|
73
70
|
},
|
|
74
71
|
"install.development.galaaz.arrow-ruby": {
|
|
75
72
|
"icon": "\uE90E",
|
|
@@ -77,7 +74,7 @@
|
|
|
77
74
|
"label": "Arrow (Ruby)",
|
|
78
75
|
"description": "R arrow + arrow-glib / red-arrow (installs R only first)",
|
|
79
76
|
"action": "omarchy-launch-tui omarchy-galaaz-add arrow-ruby",
|
|
80
|
-
"
|
|
77
|
+
"disabled": "[[ -f $HOME/.config/galaaz/profiles/arrow-ruby || -f $HOME/.config/galaaz/profiles/arrow ]]"
|
|
81
78
|
},
|
|
82
79
|
"install.development.galaaz.arrow-debug": {
|
|
83
80
|
"icon": "\uE90E",
|
|
@@ -91,14 +88,14 @@
|
|
|
91
88
|
"iconFont": "omarchy",
|
|
92
89
|
"label": "Bioconductor (DESeq2)",
|
|
93
90
|
"action": "omarchy-launch-tui omarchy-galaaz-add bio",
|
|
94
|
-
"
|
|
91
|
+
"disabled": "[[ -f $HOME/.config/galaaz/profiles/bio ]]"
|
|
95
92
|
},
|
|
96
93
|
"install.development.galaaz.examples": {
|
|
97
94
|
"icon": "\uE90E",
|
|
98
95
|
"iconFont": "omarchy",
|
|
99
96
|
"label": "Examples",
|
|
100
97
|
"action": "omarchy-launch-tui omarchy-galaaz-add examples",
|
|
101
|
-
"
|
|
98
|
+
"disabled": "[[ -f $HOME/.config/galaaz/profiles/examples ]]"
|
|
102
99
|
},
|
|
103
100
|
"install.development.galaaz.ledger": {
|
|
104
101
|
"icon": "\uE90E",
|
|
@@ -106,7 +103,7 @@
|
|
|
106
103
|
"label": "Ledger (R-on-Rails demo)",
|
|
107
104
|
"description": "Clone app, seed, bin/dev",
|
|
108
105
|
"action": "omarchy-launch-tui omarchy-galaaz-add ledger",
|
|
109
|
-
"
|
|
106
|
+
"disabled": "[[ -f $HOME/.config/galaaz/profiles/ledger ]]"
|
|
110
107
|
},
|
|
111
108
|
"remove.development.galaaz": {
|
|
112
109
|
"icon": "\uE90E",
|
data/version.rb
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
$gem_name = "galaaz"
|
|
2
|
-
$version="2.1.10.pre.
|
|
2
|
+
$version="2.1.10.pre.13"
|