Page MenuHomeNawan HQ
Feed All Stories

Feb 11 2026

nawan updated the task description for T77: Update PaperMod to the latest version.
Feb 11 2026, 13:38 · Sprints (30 Jan - 19 Feb 2026), Hugo, Infra, nawan.my.id, User-nawan
nawan created P7 Git fetch branch from shallow repository.
Feb 11 2026, 13:38
nawan updated the task description for T77: Update PaperMod to the latest version.
Feb 11 2026, 13:22 · Sprints (30 Jan - 19 Feb 2026), Hugo, Infra, nawan.my.id, User-nawan
nawan added a comment to T76: PaperMod compatibility issues with Hugo 0.152.0+.

This patch should fix it.

1From abe66c82bebee9dae5fb91df429a16f1fd5c363c Mon Sep 17 00:00:00 2001
2From: Jake Bailey <5341706+jakebailey@users.noreply.github.com>
3Date: Mon, 14 Apr 2025 17:46:51 -0700
4Subject: [PATCH 1/2] Make things work in 0.146+
5
6---
7 layouts/partials/head.html | 8 ++++----
8 layouts/partials/templates/schema_json.html | 2 +-
9 layouts/partials/templates/twitter_cards.html | 2 +-
10 theme.toml | 2 +-
11 4 files changed, 7 insertions(+), 7 deletions(-)
12
13diff --git a/layouts/partials/head.html b/layouts/partials/head.html
14index 3e55c67007..ae6450abe1 100644
15--- a/layouts/partials/head.html
16+++ b/layouts/partials/head.html
17@@ -150,8 +150,8 @@
18
19 {{- /* Misc */}}
20 {{- if hugo.IsProduction | or (eq site.Params.env "production") }}
21-{{- template "_internal/google_analytics.html" . }}
22-{{- template "partials/templates/opengraph.html" . }}
23-{{- template "partials/templates/twitter_cards.html" . }}
24-{{- template "partials/templates/schema_json.html" . }}
25+{{- partial "google_analytics.html" . }}
26+{{- partial "templates/opengraph.html" . }}
27+{{- partial "templates/twitter_cards.html" . }}
28+{{- partial "templates/schema_json.html" . }}
29 {{- end -}}
30diff --git a/layouts/partials/templates/schema_json.html b/layouts/partials/templates/schema_json.html
31index dc3bfd6a0d..8a4efb41c9 100644
32--- a/layouts/partials/templates/schema_json.html
33+++ b/layouts/partials/templates/schema_json.html
34@@ -85,7 +85,7 @@
35 {{ (path.Join .RelPermalink .Params.cover.image ) | absURL }},
36 {{- end}}
37 {{- else }}
38- {{- $images := partial "partials/templates/_funcs/get-page-images" . -}}
39+ {{- $images := partial "templates/_funcs/get-page-images" . -}}
40 {{- with index $images 0 -}}
41 "image": {{ .Permalink }},
42 {{- end }}
43diff --git a/layouts/partials/templates/twitter_cards.html b/layouts/partials/templates/twitter_cards.html
44index 6b0d59bd1d..a6e1d05dd0 100644
45--- a/layouts/partials/templates/twitter_cards.html
46+++ b/layouts/partials/templates/twitter_cards.html
47@@ -6,7 +6,7 @@
48 <meta name="twitter:image" content="{{ (path.Join .RelPermalink .Params.cover.image ) | absURL }}">
49 {{- end}}
50 {{- else }}
51-{{- $images := partial "partials/templates/_funcs/get-page-images" . -}}
52+{{- $images := partial "templates/_funcs/get-page-images" . -}}
53 {{- with index $images 0 -}}
54 <meta name="twitter:card" content="summary_large_image">
55 <meta name="twitter:image" content="{{ .Permalink }}">
56diff --git a/theme.toml b/theme.toml
57index 391b248545..e4352b960b 100644
58--- a/theme.toml
59+++ b/theme.toml
60@@ -38,7 +38,7 @@ features = [
61 "scroll-to-top",
62 "search"
63 ]
64-min_version = "0.125.7"
65+min_version = "0.146.0"
66
67 [author]
68 name = "Aditya Telange"
69
70From 32f2e0e3d19ac7e0d990dd09f11a9d2302121d43 Mon Sep 17 00:00:00 2001
71From: Jake Bailey <5341706+jakebailey@users.noreply.github.com>
72Date: Mon, 14 Apr 2025 17:48:55 -0700
73Subject: [PATCH 2/2] Versioning
74
75---
76 .github/ISSUE_TEMPLATE/bug.yaml | 4 ++--
77 .github/workflows/gh-pages.yml | 4 ++--
78 README.md | 2 +-
79 layouts/_default/baseof.html | 4 ++--
80 4 files changed, 7 insertions(+), 7 deletions(-)
81
82diff --git a/.github/ISSUE_TEMPLATE/bug.yaml b/.github/ISSUE_TEMPLATE/bug.yaml
83index 0cee3ee9d0..d7d7656786 100644
84--- a/.github/ISSUE_TEMPLATE/bug.yaml
85+++ b/.github/ISSUE_TEMPLATE/bug.yaml
86@@ -39,8 +39,8 @@ body:
87 label: Hugo Version
88 description: What version of Hugo are you running?
89 options:
90- - Hugo >= 0.125.7 (Recommended - Minimum version required for PaperMod)
91- - Hugo < 0.125.7 (Incompatible - Not recommended to build PaperMod on lower versions)
92+ - Hugo >= 0.146.0 (Recommended - Minimum version required for PaperMod)
93+ - Hugo < 0.146.0 (Incompatible - Not recommended to build PaperMod on lower versions)
94 validations:
95 required: true
96 - type: input
97diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml
98index 92b859f58f..7dc6f1c392 100644
99--- a/.github/workflows/gh-pages.yml
100+++ b/.github/workflows/gh-pages.yml
101@@ -15,7 +15,7 @@ on:
102 hugoVersion:
103 description: "Hugo Version"
104 required: false
105- default: "0.125.7"
106+ default: "0.146.0"
107
108 # Allow one concurrent deployment
109 concurrency:
110@@ -38,7 +38,7 @@ jobs:
111 build:
112 runs-on: ubuntu-latest
113 env:
114- HUGO_VERSION: ${{ github.event.inputs.hugoVersion || '0.125.7' }}
115+ HUGO_VERSION: ${{ github.event.inputs.hugoVersion || '0.146.0' }}
116 steps:
117 - name: Install Hugo CLI
118 run: |
119diff --git a/README.md b/README.md
120index 1c00072808..7b2956e6df 100644
121--- a/README.md
122+++ b/README.md
123@@ -11,7 +11,7 @@
124 **ExampleSite** can be found here: [**exampleSite**](https://github.com/adityatelange/hugo-PaperMod/tree/exampleSite). Demo is built up with [exampleSite](https://github.com/adityatelange/hugo-PaperMod/tree/exampleSite) as source.
125
126 [![hugo-papermod](https://img.shields.io/badge/Hugo--Themes-@PaperMod-blue)](https://themes.gohugo.io/themes/hugo-papermod/)
127-[![Minimum Hugo Version](https://img.shields.io/static/v1?label=min-HUGO-version&message=>=v0.125.7&color=blue&logo=hugo)](https://github.com/gohugoio/hugo/releases/tag/v0.125.7)
128+[![Minimum Hugo Version](https://img.shields.io/static/v1?label=min-HUGO-version&message=>=v0.146.0&color=blue&logo=hugo)](https://github.com/gohugoio/hugo/releases/tag/v0.146.0)
129 [![Discord](https://img.shields.io/discord/971046860317921340?label=Discord&logo=discord)](https://discord.gg/ahpmTvhVmp)
130 [![GitHub](https://img.shields.io/github/license/adityatelange/hugo-PaperMod)](https://github.com/adityatelange/hugo-PaperMod/blob/master/LICENSE)
131 ![code-size](https://img.shields.io/github/languages/code-size/adityatelange/hugo-PaperMod)
132diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
133index 94e7d5857d..db3a50688c 100644
134--- a/layouts/_default/baseof.html
135+++ b/layouts/_default/baseof.html
136@@ -1,5 +1,5 @@
137-{{- if lt hugo.Version "0.125.7" }}
138-{{- errorf "=> hugo v0.125.7 or greater is required for hugo-PaperMod to build " }}
139+{{- if lt hugo.Version "0.146.0" }}
140+{{- errorf "=> hugo v0.146.0 or greater is required for hugo-PaperMod to build " }}
141 {{- end -}}
142
143 <!DOCTYPE html>

Feb 11 2026, 13:20 · Sprints (30 Jan - 19 Feb 2026), Hugo, Infra, nawan.my.id, User-nawan
nawan updated the task description for T76: PaperMod compatibility issues with Hugo 0.152.0+.
Feb 11 2026, 13:18 · Sprints (30 Jan - 19 Feb 2026), Hugo, Infra, nawan.my.id, User-nawan
nawan renamed T77: Update PaperMod to the latest version from Update PaperMod to latest version to Update PaperMod to the latest version.
Feb 11 2026, 08:33 · Sprints (30 Jan - 19 Feb 2026), Hugo, Infra, nawan.my.id, User-nawan
nawan changed the status of T78: Links resolve to localhost instead of baseURL configuration from Open to Stalled.

Blocked by T77.

Feb 11 2026, 00:07 · Hugo, Infra, nawan.my.id, User-nawan
nawan changed the subtype of T78: Links resolve to localhost instead of baseURL configuration from "Task" to "Defect".
Feb 11 2026, 00:05 · Hugo, Infra, nawan.my.id, User-nawan
nawan added a parent task for T77: Update PaperMod to the latest version: T78: Links resolve to localhost instead of baseURL configuration.
Feb 11 2026, 00:05 · Sprints (30 Jan - 19 Feb 2026), Hugo, Infra, nawan.my.id, User-nawan
nawan added a subtask for T78: Links resolve to localhost instead of baseURL configuration: T77: Update PaperMod to the latest version.
Feb 11 2026, 00:05 · Hugo, Infra, nawan.my.id, User-nawan
nawan created T78: Links resolve to localhost instead of baseURL configuration.
Feb 11 2026, 00:03 · Hugo, Infra, nawan.my.id, User-nawan

Feb 10 2026

nawan changed the status of T76: PaperMod compatibility issues with Hugo 0.152.0+ from Open to Stalled.
Feb 10 2026, 23:52 · Sprints (30 Jan - 19 Feb 2026), Hugo, Infra, nawan.my.id, User-nawan
nawan moved T77: Update PaperMod to the latest version from Backlog to Chores on the nawan.my.id board.
Feb 10 2026, 23:52 · Sprints (30 Jan - 19 Feb 2026), Hugo, Infra, nawan.my.id, User-nawan
nawan moved T77: Update PaperMod to the latest version from Inbox to Personal Site on the User-nawan board.
Feb 10 2026, 23:52 · Sprints (30 Jan - 19 Feb 2026), Hugo, Infra, nawan.my.id, User-nawan
nawan set the point value for T77: Update PaperMod to the latest version to 5.
Feb 10 2026, 23:52 · Sprints (30 Jan - 19 Feb 2026), Hugo, Infra, nawan.my.id, User-nawan
nawan triaged T77: Update PaperMod to the latest version as Unbreak Now! priority.
Feb 10 2026, 23:51 · Sprints (30 Jan - 19 Feb 2026), Hugo, Infra, nawan.my.id, User-nawan
nawan created T77: Update PaperMod to the latest version.
Feb 10 2026, 23:50 · Sprints (30 Jan - 19 Feb 2026), Hugo, Infra, nawan.my.id, User-nawan
nawan moved T76: PaperMod compatibility issues with Hugo 0.152.0+ from Inbox to Personal Site on the User-nawan board.
Feb 10 2026, 23:46 · Sprints (30 Jan - 19 Feb 2026), Hugo, Infra, nawan.my.id, User-nawan
nawan moved T76: PaperMod compatibility issues with Hugo 0.152.0+ from Icebox to Current on the Sprints (30 Jan - 19 Feb 2026) board.
Feb 10 2026, 23:45 · Sprints (30 Jan - 19 Feb 2026), Hugo, Infra, nawan.my.id, User-nawan
nawan updated the title for P5 Hugo 0.152.2 build error from Hugo build error and warning to Hugo 0.152.2 build error.
Feb 10 2026, 23:43 · Hugo
nawan created T76: PaperMod compatibility issues with Hugo 0.152.0+.
Feb 10 2026, 23:41 · Sprints (30 Jan - 19 Feb 2026), Hugo, Infra, nawan.my.id, User-nawan
nawan updated the title for P6 PaperMod theme compatibility fixes for Hugo 0.146.0+ from PaperMod theme compatibility fixs for Hugo 0.146.0+ to PaperMod theme compatibility fixes for Hugo 0.146.0+.
Feb 10 2026, 23:34 · Hugo
nawan created P6 PaperMod theme compatibility fixes for Hugo 0.146.0+.
Feb 10 2026, 23:34 · Hugo
nawan created P5 Hugo 0.152.2 build error.
Feb 10 2026, 23:18 · Hugo
nawan moved T67: Memperbaharui tahun hak cipta di footer from Backlog to Done on the Sprints (30 Jan - 19 Feb 2026) board.
Feb 10 2026, 23:11 · User-nawan, Sprints (30 Jan - 19 Feb 2026), Infra, Hostbrr, nawan.my.id
nawan closed T67: Memperbaharui tahun hak cipta di footer as Resolved.

Mengganti tahun hak cipta dengan time.Now function. Lihat: https://gohugo.io/functions/time/now/.

Feb 10 2026, 23:10 · User-nawan, Sprints (30 Jan - 19 Feb 2026), Infra, Hostbrr, nawan.my.id
nawan changed the join policy for Sudoers.
Feb 10 2026, 21:36
nawan added a member for Sudoers: nawan.
Feb 10 2026, 21:33
nawan removed a member for Sudoers: nawan.
Feb 10 2026, 21:32
nawan changed the edit policy for Sudoers.
Feb 10 2026, 21:32
nawan added a subtask for T15: Readeck?: Unknown Object (Maniphest Task).
Feb 10 2026, 18:32 · User-nawan, narayana, Infra
nawan added a subtask for T48: Setup fail2ban: Unknown Object (Maniphest Task).
Feb 10 2026, 18:22 · narayana, User-nawan, Infra
nawan claimed T73: WKD: Access-Control-Allow-Origin header is not set to '*'.
Feb 10 2026, 18:17 · User-nawan, nawan.my.id, Infra
nawan created T73: WKD: Access-Control-Allow-Origin header is not set to '*'.
Feb 10 2026, 18:17 · User-nawan, nawan.my.id, Infra
nawan created T72: WKD: Content-Type header is not set to 'application/octet-stream'.
Feb 10 2026, 18:14 · Infra, nawan.my.id, User-nawan
nawan closed T70: Perbaharui sidik jari OMEMO di situs pribadi as Resolved.

Selesai dengan id 24366d1954210a7b292f6b74a3ddd693f0412b57. Diff: https://hq.nawan.my.id/P4.

Feb 10 2026, 17:58 · Hugo, Infra, nawan.my.id, User-nawan
nawan updated the task description for T70: Perbaharui sidik jari OMEMO di situs pribadi.
Feb 10 2026, 17:16 · Hugo, Infra, nawan.my.id, User-nawan
nawan moved T71: Hosting Miniflux from Inbox to VPS on the Infra board.
Feb 10 2026, 16:56 · Infra, narayana
nawan created T71: Hosting Miniflux.
Feb 10 2026, 16:55 · Infra, narayana
nawan changed the status of Restricted Maniphest Task, a subtask of T12: Membeli buku "Ngapain Jadi Orang Baik" oleh Michael Schur, from Open to In Progress.
Feb 10 2026, 14:32 · Hajat, Reading, Buku-buku
nawan changed the status of Restricted Maniphest Task, a subtask of T54: Membeli novel DUNE, from Open to In Progress.
Feb 10 2026, 14:32 · Hajat, Buku-buku
nawan changed the status of Restricted Maniphest Task, a subtask of T12: Membeli buku "Ngapain Jadi Orang Baik" oleh Michael Schur, from In Progress to Open.
Feb 10 2026, 14:31 · Hajat, Reading, Buku-buku
nawan changed the status of Restricted Maniphest Task, a subtask of T54: Membeli novel DUNE, from In Progress to Open.
Feb 10 2026, 14:31 · Hajat, Buku-buku
nawan changed the status of Restricted Maniphest Task, a subtask of T12: Membeli buku "Ngapain Jadi Orang Baik" oleh Michael Schur, from Open to In Progress.
Feb 10 2026, 14:26 · Hajat, Reading, Buku-buku
nawan changed the status of Restricted Maniphest Task, a subtask of T54: Membeli novel DUNE, from Open to In Progress.
Feb 10 2026, 14:26 · Hajat, Buku-buku
nawan changed the point value for T3: Identifikasi perbandingan antara fitur-fitur di Redmine dan Phorge from 1 to 3.
Feb 10 2026, 14:23 · Sprints (30 Jan - 19 Feb 2026), User-nawan, Phabricator, Redmine-Migration, Infra
nawan closed T3: Identifikasi perbandingan antara fitur-fitur di Redmine dan Phorge, a subtask of T1: Migrasi dari Redmine ke Phorge, as Resolved.
Feb 10 2026, 14:23 · User-nawan, Redmine-Migration, Infra, Phabricator
nawan closed T3: Identifikasi perbandingan antara fitur-fitur di Redmine dan Phorge as Resolved.

Sepertinya sudah tidak ada lagi yang bisa dilakukan di sini. Selanjutnya, ada baiknya untuk membuat halaman khusus yang membandingkan Redmine dengan Phabricator entah di Phriction atau di Zim Wiki.

Feb 10 2026, 14:23 · Sprints (30 Jan - 19 Feb 2026), User-nawan, Phabricator, Redmine-Migration, Infra
nawan moved T70: Perbaharui sidik jari OMEMO di situs pribadi from Backlog to Chores on the nawan.my.id board.
Feb 10 2026, 00:46 · Hugo, Infra, User-nawan, nawan.my.id
nawan moved T70: Perbaharui sidik jari OMEMO di situs pribadi from Inbox to Personal Site on the User-nawan board.
Feb 10 2026, 00:46 · Hugo, Infra, User-nawan, nawan.my.id
nawan created T70: Perbaharui sidik jari OMEMO di situs pribadi.
Feb 10 2026, 00:45 · Hugo, Infra, User-nawan, nawan.my.id

Feb 9 2026

nawan updated the task description for T3: Identifikasi perbandingan antara fitur-fitur di Redmine dan Phorge.
Feb 9 2026, 19:11 · Sprints (30 Jan - 19 Feb 2026), User-nawan, Phabricator, Redmine-Migration, Infra
nawan closed T55: 1Password mewajibkan Android 12 ke atas agar menerima pembaharuan as Resolved.

Sudah membeli ponsel baru dengan versi Android 15.

Feb 9 2026, 18:07 · User-nawan, Ponsel, 1Password, SaaS
nawan added a parent task for T60: Menerjemahkan takarir berkas "Aceh - Bungong Jeumpa.wav" ke bahasa Indonesia: T64: Takarir untuk WikiDendang.
Feb 9 2026, 18:01 · User-nawan, Sprints (30 Jan - 19 Feb 2026), Wikimedia, Commons
nawan added a subtask for T64: Takarir untuk WikiDendang: T60: Menerjemahkan takarir berkas "Aceh - Bungong Jeumpa.wav" ke bahasa Indonesia.
Feb 9 2026, 18:01 · Wikimedia, Commons
nawan updated the task description for T64: Takarir untuk WikiDendang.
Feb 9 2026, 17:59 · Wikimedia, Commons
nawan created T69: Wormhole File Transfer android apps killed by battery optimization when transfering/receiving large files.
Feb 9 2026, 00:21 · User-nawan, Ponsel

Feb 7 2026

nawan added a project to T9: Terjemahkan "List of 2022 FIFA World Cup controversies" dari enwiki: Sprints (30 Jan - 19 Feb 2026).
Feb 7 2026, 21:59 · Sprints (5 Mar - 13 Mar 2026), Wikimedia, Wikipedia
nawan triaged T67: Memperbaharui tahun hak cipta di footer as Low priority.
Feb 7 2026, 21:55 · User-nawan, Sprints (30 Jan - 19 Feb 2026), Infra, Hostbrr, nawan.my.id
nawan moved T67: Memperbaharui tahun hak cipta di footer from Icebox to Backlog on the Sprints (30 Jan - 19 Feb 2026) board.
Feb 7 2026, 21:55 · User-nawan, Sprints (30 Jan - 19 Feb 2026), Infra, Hostbrr, nawan.my.id
nawan moved T67: Memperbaharui tahun hak cipta di footer from Inbox to Static website on the Hostbrr board.
Feb 7 2026, 21:54 · User-nawan, Sprints (30 Jan - 19 Feb 2026), Infra, Hostbrr, nawan.my.id
nawan created T67: Memperbaharui tahun hak cipta di footer.
Feb 7 2026, 21:54 · User-nawan, Sprints (30 Jan - 19 Feb 2026), Infra, Hostbrr, nawan.my.id
nawan moved T29: Menambahkan penyangkalan pada postingan yang sudah lama from Backlog to Ideas on the nawan.my.id board.
Feb 7 2026, 21:51 · Sprints (5 Mar - 13 Mar 2026), Hugo, Hostbrr, nawan.my.id
nawan moved T27: Menambahkan pemberitahuan bagaimana cara mengirim komentar atau feedback from Backlog to Ideas on the nawan.my.id board.
Feb 7 2026, 21:51 · User-nawan, Hostbrr, nawan.my.id
nawan moved T11: Menambahkan <link> tag ke https://nawan.my.id agar OpenID berfungsi from Backlog to Ideas on the nawan.my.id board.
Feb 7 2026, 21:51 · Hugo, Hostbrr, nawan.my.id
nawan changed the subtype of T6: Integrasikan Hypothesis from "Task" to "Idea".
Feb 7 2026, 21:51 · Hugo, Hostbrr, nawan.my.id
nawan moved T6: Integrasikan Hypothesis from Backlog to Ideas on the nawan.my.id board.
Feb 7 2026, 21:51 · Hugo, Hostbrr, nawan.my.id
nawan set the color for Hostbrr to Violet.
Feb 7 2026, 21:47
nawan set the icon for Hostbrr to Organization.
Feb 7 2026, 21:47
nawan set the icon for nawan.my.id to Infrastructure.
Feb 7 2026, 21:45
nawan created T66: Hos repositori Fossil (lagi).
Feb 7 2026, 21:43 · Fossil, User-nawan, narayana, Infra
nawan moved T65: Enable FastCGI caching for this phorge instance from Inbox to Phabricator on the Infra board.
Feb 7 2026, 21:34 · narayana, Nginx, Infra, Phabricator
nawan set the icon for narayana to Infrastructure.
Feb 7 2026, 21:32
nawan set the color for narayana to Violet.
Feb 7 2026, 21:31
nawan set the icon for Infra to Umbrella.
Feb 7 2026, 21:30
nawan added a project to T65: Enable FastCGI caching for this phorge instance: narayana.
Feb 7 2026, 21:29 · narayana, Nginx, Infra, Phabricator
nawan triaged T65: Enable FastCGI caching for this phorge instance as Normal priority.
Feb 7 2026, 21:27 · narayana, Nginx, Infra, Phabricator
nawan created T65: Enable FastCGI caching for this phorge instance.
Feb 7 2026, 21:27 · narayana, Nginx, Infra, Phabricator
nawan set the color for Nginx to Yellow.
Feb 7 2026, 21:26
nawan created Nginx.
Feb 7 2026, 21:16
nawan updated the task description for T64: Takarir untuk WikiDendang.
Feb 7 2026, 20:53 · Wikimedia, Commons
nawan created T64: Takarir untuk WikiDendang.
Feb 7 2026, 20:48 · Wikimedia, Commons

Feb 5 2026

nawan removed a subtask for T35: Wikipedia Zero: T39: Wikipedia Zero vs Kiwix.
Feb 5 2026, 14:33 · Writing, nawan.my.id
nawan removed a parent task for T39: Wikipedia Zero vs Kiwix: T35: Wikipedia Zero.
Feb 5 2026, 14:33 · Sprints (5 Mar - 13 Mar 2026), User-nawan, Writing (Wikipedia Zero), nawan.my.id
nawan removed a parent task for T38: Jika Wikipedia Zero masih ada: T35: Wikipedia Zero.
Feb 5 2026, 14:32 · User-nawan, Writing (Wikipedia Zero), nawan.my.id
nawan removed a subtask for T35: Wikipedia Zero: T38: Jika Wikipedia Zero masih ada.
Feb 5 2026, 14:32 · Writing, nawan.my.id
nawan removed a parent task for T37: Bagaimana dampak Wikipedia Zero?: T35: Wikipedia Zero.
Feb 5 2026, 14:32 · User-nawan, Writing (Wikipedia Zero), nawan.my.id
nawan removed a subtask for T35: Wikipedia Zero: T37: Bagaimana dampak Wikipedia Zero?.
Feb 5 2026, 14:32 · Writing, nawan.my.id
nawan removed a subtask for T35: Wikipedia Zero: T36: Kenapa proyek Wikipedia Zero dihentikan?.
Feb 5 2026, 14:32 · Writing, nawan.my.id
nawan removed a parent task for T36: Kenapa proyek Wikipedia Zero dihentikan?: T35: Wikipedia Zero.
Feb 5 2026, 14:32 · Sprints (5 Mar - 13 Mar 2026), User-nawan, Writing (Wikipedia Zero), nawan.my.id
nawan removed a parent task for T41: How to backup my laptop?: Unknown Object (Maniphest Task).
Feb 5 2026, 08:31 · User-nawan, Lenovo IdeaPad 3 14IGL05

Feb 3 2026

nawan triaged T15: Readeck? as Low priority.
Feb 3 2026, 18:15 · User-nawan, narayana, Infra
nawan moved T56: Aceh - Bungong Jeumpa.wav: kategori bahasa TeksBerwaktu keliru from Current to Done on the Sprints (30 Jan - 19 Feb 2026) board.
Feb 3 2026, 17:09 · User-nawan, Sprints (30 Jan - 19 Feb 2026), Wikimedia, Commons
nawan moved T60: Menerjemahkan takarir berkas "Aceh - Bungong Jeumpa.wav" ke bahasa Indonesia from Icebox to Backlog on the Sprints (30 Jan - 19 Feb 2026) board.
Feb 3 2026, 17:08 · User-nawan, Sprints (30 Jan - 19 Feb 2026), Wikimedia, Commons
nawan closed T56: Aceh - Bungong Jeumpa.wav: kategori bahasa TeksBerwaktu keliru as Resolved.
Feb 3 2026, 17:07 · User-nawan, Sprints (30 Jan - 19 Feb 2026), Wikimedia, Commons
nawan closed T56: Aceh - Bungong Jeumpa.wav: kategori bahasa TeksBerwaktu keliru, a subtask of T60: Menerjemahkan takarir berkas "Aceh - Bungong Jeumpa.wav" ke bahasa Indonesia, as Resolved.
Feb 3 2026, 17:07 · User-nawan, Sprints (30 Jan - 19 Feb 2026), Wikimedia, Commons
nawan added a subtask for T60: Menerjemahkan takarir berkas "Aceh - Bungong Jeumpa.wav" ke bahasa Indonesia: T56: Aceh - Bungong Jeumpa.wav: kategori bahasa TeksBerwaktu keliru.
Feb 3 2026, 17:07 · User-nawan, Sprints (30 Jan - 19 Feb 2026), Wikimedia, Commons
nawan added a parent task for T56: Aceh - Bungong Jeumpa.wav: kategori bahasa TeksBerwaktu keliru: T60: Menerjemahkan takarir berkas "Aceh - Bungong Jeumpa.wav" ke bahasa Indonesia.
Feb 3 2026, 17:07 · User-nawan, Sprints (30 Jan - 19 Feb 2026), Wikimedia, Commons
nawan removed a subtask for T56: Aceh - Bungong Jeumpa.wav: kategori bahasa TeksBerwaktu keliru: T60: Menerjemahkan takarir berkas "Aceh - Bungong Jeumpa.wav" ke bahasa Indonesia.
Feb 3 2026, 17:07 · User-nawan, Sprints (30 Jan - 19 Feb 2026), Wikimedia, Commons
nawan removed a parent task for T60: Menerjemahkan takarir berkas "Aceh - Bungong Jeumpa.wav" ke bahasa Indonesia: T56: Aceh - Bungong Jeumpa.wav: kategori bahasa TeksBerwaktu keliru.
Feb 3 2026, 17:07 · User-nawan, Sprints (30 Jan - 19 Feb 2026), Wikimedia, Commons