All public logs
Combined display of all available logs of The Unofficial Isekai:Slow Life Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 18:24, 31 July 2025 FaeriMagic talk contribs created page Template:Mbox (Created page with "{{#invoke:Message box|mbox}}<noinclude> {{documentation}} </noinclude>")
- 18:23, 31 July 2025 FaeriMagic talk contribs created page Template:Lua (Created page with "<includeonly>{{#invoke:Lua banner|main}}</includeonly><noinclude> {{Lua|Module:Lua banner}} {{Documentation}} </noinclude>")
- 18:22, 31 July 2025 FaeriMagic talk contribs created page Module:Lua banner/doc (Created page with "{{Lua|Module:Yesno|Module:List|Module:TableTools|Module:Message box}} This module implements the {{tl|lua}} template. == Usage from wikitext == This module cannot be used directly from wikitext. It can only be used through the {{tl|lua}} template. Please see the template page for documentation. == Usage from Lua modules == To use this module from other Lua modules, first load the module. <syntaxhighlight lang="lua"> local mLuaBanner = require('Module:Lua banner') </...")
- 18:22, 31 July 2025 FaeriMagic talk contribs created page Module:Lua banner (Imported from Wikipedia.)
- 18:21, 31 July 2025 FaeriMagic talk contribs created page Module:Lang/doc (Created page with "{{Lua|Module:Arguments|Module:Lang/configuration|Module:Lang/data|Module:Lang/ISO 639 synonyms|Module:Lang/tag from name|Module:Unicode data|Module:Yesno}} This module exists primarily to provide correct HTML markup for non–English language text where that text is used in the English Wikipedia. It has a secondary purpose of providing correct visual rendering for this non-English text. The module was developed to consolidate processing for {{tlx|lang}}, {{tlx|langx}},...")
- 18:18, 31 July 2025 FaeriMagic talk contribs created page Module:Lang (Created page with "--[=[ Lua support for the {{lang}}, {{langx}}, {{lang-??}}, and {{transliteration}} templates and replacement of various supporting templates. ]=] require('strict'); local getArgs = require ('Module:Arguments').getArgs; local unicode = require ("Module:Unicode data"); -- for is_Latin() and is_rtl() local yesno = require ('Module:Yesno'); local lang_data = mw.loadData ('Module:Lang/data'); -- language name override and transliteration tool-tip tables l...")
- 18:08, 31 July 2025 FaeriMagic talk contribs created page Template:Syntaxhighlight (Created page with "{{#tag:syntaxhighlight|{{{code|{{{1}}}}}}|lang="{{{lang|{{{2|text}}}}}}"|{{#ifeq:{{{border|}}}|no|style="border: none !important"}}}}<noinclude> {{documentation}} Category:Text-specific formatting and function templates </noinclude>")
- 18:05, 31 July 2025 FaeriMagic talk contribs created page Module:Yesno/doc (Created page with "This module provides a consistent interface for processing boolean or boolean-style string input. While Lua allows the <code>true</code> and <code>false</code> boolean values, wikicode templates can only express boolean values through strings such as "yes", "no", etc. This module processes these kinds of strings and turns them into boolean input for Lua to process. It also returns <code>nil</code> values as <code>nil</code>, to allow for distinctions between <code>nil</c...")
- 18:00, 31 July 2025 FaeriMagic talk contribs created page Module:Yesno (Created page with "-- Function allowing for consistent treatment of boolean-like wikitext input. -- It works similarly to the template {{yesno}}. return function (val, default) -- If your wiki uses non-ascii characters for any of "yes", "no", etc., you -- should replace "val:lower()" with "mw.ustring.lower(val)" in the -- following line. val = type(val) == 'string' and val:lower() or val if val == nil then return nil elseif val == true or val == 'yes' or val == 'y' or val =...")
- 17:54, 31 July 2025 FaeriMagic talk contribs created page Module:Message box/doc (Created page with "{{Documentation subpage|cat=Module documentation subpages}} <!-- MODULE CATEGORY --> Category:Wiki modules")
- 17:53, 31 July 2025 FaeriMagic talk contribs created page Module:Message box (Created page with "require('strict') local getArgs local yesno = require('Module:Yesno') local lang = mw.language.getContentLanguage() local CONFIG_MODULE = 'Module:Message box/configuration' local DEMOSPACES = {talk = 'tmbox', image = 'imbox', file = 'imbox', category = 'cmbox', article = 'ambox', main = 'ambox'} -------------------------------------------------------------------------------- -- Helper functions ---------------------------------------------------------------------------...")
- 05:19, 31 July 2025 FaeriMagic talk contribs created page Category:Pages with broken file links (Created page with "__HIDDENCAT__ Category:Images")
- 05:05, 31 July 2025 FaeriMagic talk contribs moved page File:Icon Skill ★3 Costume 1.png to File:Skill ★3 costume A.png (Standardizing title)
- 03:51, 31 July 2025 FaeriMagic talk contribs created page Template:FellowCostumeUpgradeTable (Created page with "{{#invoke:FellowCostumeUpgradeTable|main | img1 = {{{img1}}} | skill1 = {{{skill1}}} | skill1levels = {{{level1}}} | img2 = {{{img}}} | skill2 = {{{skill2}}} | type = {{{type}}} | skill2levels = {{{level2}}} }}")
- 03:43, 31 July 2025 FaeriMagic talk contribs created page Module:FellowCostumeUpgradeTable (Created page with "local p = {} local function makeSkillTable(skillName, levelData, typeName) local rows = {} for line in mw.text.gsplit(levelData or "", ";", true) do local parts = mw.text.split(mw.text.trim(line), ",") local level = parts[1] or "" local cap = parts[2] or "" local apt = parts[3] or "" table.insert(rows, string.format( '|-\n| style="text-align: center;" | %s || %s || %s', level, cap, apt )) end local tableHeader = string.format([=[ {| class="wikitab...")
- 02:56, 31 July 2025 FaeriMagic talk contribs created page Template:FamilyCostumeUpgradeTable (Created page with "{{#invoke:FamilyCostumeUpgradeTable|main | name = {{{skill}}} | image = {{{icon}}} | levels = {{{stats}}} }}")
- 02:53, 31 July 2025 FaeriMagic talk contribs created page Module:FamilyCostumeUpgradeTable (Created page with "local p = {} function p.main(frame) local args = frame:getParent().args local name = args.name or "Unnamed Costume" local image = args.image or "Placeholder.png" local levels = args.levels or "" local rows = {} for line in mw.text.gsplit(levels, ";", true) do local parts = mw.text.split(mw.text.trim(line), ",") local level = parts[1] or "" local cap = parts[2] or "" local intimacy = parts[3] or "" local bp = parts[4] or "" table.insert(rows, string....")
- 22:24, 30 July 2025 FaeriMagic talk contribs moved page File:Icon Skill ★3 Costume 2.png to File:Skill ★3 costume B.png (Standardizing title)
- 21:37, 30 July 2025 FaeriMagic talk contribs deleted page File:Item Costume "Catnap by the Sea" (★3) Blueprint.png (Cleanup: content was: "#REDIRECT File:Item Costume ⟦Catnap by the Sea⟧ (★3) Blueprint.png", and the only contributor was "FaeriMagic" (talk))
- 21:37, 30 July 2025 FaeriMagic talk contribs moved page File:Item Costume "Catnap by the Sea" (★3) Blueprint.png to File:Item Costume ⟦Catnap by the Sea⟧ (★3) Blueprint.png (Replacing with Unicode alternative text)
- 21:34, 30 July 2025 FaeriMagic talk contribs deleted page Costume "Catnap by the Sea" (★3) (Cleanup: content was: "#REDIRECT Costume ⟦Catnap by the Sea⟧ (★3)", and the only contributor was "FaeriMagic" (talk))
- 21:33, 30 July 2025 FaeriMagic talk contribs deleted page Costume "Catnap by the Sea" (★3) Blueprint (Cleanup: content was: "#REDIRECT Costume ⟦Catnap by the Sea⟧ (★3) Blueprint", and the only contributor was "FaeriMagic" (talk))
- 21:33, 30 July 2025 FaeriMagic talk contribs moved page Costume "Catnap by the Sea" (★3) Blueprint to Costume ⟦Catnap by the Sea⟧ (★3) Blueprint (Replacing with Unicode alternative text)
- 21:31, 30 July 2025 FaeriMagic talk contribs deleted page Template:Navbox Costumes (Cleanup: content was: "#REDIRECT Template:Navbox costumes", and the only contributor was "FaeriMagic" (talk))
- 21:31, 30 July 2025 FaeriMagic talk contribs moved page Template:Navbox Costumes to Template:Navbox costumes (Standardizing title casing)
- 21:29, 30 July 2025 FaeriMagic talk contribs deleted page Template:Infobox Costume (Cleanup: content was: "#REDIRECT Template:Infobox costume", and the only contributor was "FaeriMagic" (talk))
- 21:28, 30 July 2025 FaeriMagic talk contribs moved page Template:Infobox Costume to Template:Infobox costume (Standardizing title casing)
- 21:18, 30 July 2025 FaeriMagic talk contribs moved page Costume "Catnap by the Sea" (★3) to Costume ⟦Catnap by the Sea⟧ (★3) (Replacing with Unicode alternative text)
- 21:18, 30 July 2025 FaeriMagic talk contribs created page MediaWiki:Movepage-reason-dropdown (Created page with "* Common move reasons ** Misspelled title ** Replacing with Unicode alternative text")
- 21:15, 30 July 2025 FaeriMagic talk contribs deleted page Category:★2 Costumes (Cleanup: content was: "See Category:★2 costumes. Category:Candidates for deletion", and the only contributor was "FaeriMagic" (talk))
- 21:15, 30 July 2025 FaeriMagic talk contribs deleted page Category:SSR+ Family Members (Cleanup: content was: "See Category:SSR+ Family members. Category:Candidates for deletion", and the only contributor was "FaeriMagic" (talk))
- 21:15, 30 July 2025 FaeriMagic talk contribs deleted page Category:Sources of Intimacy Increase (Cleanup: content was: "See: Category:Sources of Family Intimacy increase. Category:Candidates for deletion", and the only contributor was "FaeriMagic" (talk))
- 21:12, 30 July 2025 FaeriMagic talk contribs deleted page Category:Sources of Fellow Power Increase (content was: "See: * Category:Sources of Fellow Power bonus (base) * Category:Sources of Fellow Power bonus (percentage) * Category:Sources of Fellow Power bonus (fixed) Category:Candidates for deletion", and the only contributor was "FaeriMagic" (talk))
- 20:27, 30 July 2025 FaeriMagic talk contribs deleted page Category:Sources of Fellow Power effects (Cleanup: content was: "See: * Category:Sources of Fellow Power bonus (base) * Category:Sources of Fellow Power bonus (percentage) * Category:Sources of Fellow Power bonus (fixed) Category:Candidates for deletion", and the only contributor was "FaeriMagic" (talk))
- 20:26, 30 July 2025 FaeriMagic talk contribs deleted page Category:Sources of Fellow Power Bonus (Cleanup: content was: "See: * Category:Sources of Fellow Power bonus (base) * Category:Sources of Fellow Power bonus (percentage) * Category:Sources of Fellow Power bonus (fixed) Category:Candidates for deletion", and the only contributor was "FaeriMagic" (talk))
- 20:26, 30 July 2025 FaeriMagic talk contribs deleted page Category:Sources of Fellow Aptitude Increase (Cleanup: content was: "See Category:Sources of Fellow Aptitude increase. Category:Candidates for deletion", and the only contributor was "FaeriMagic" (talk))
- 20:25, 30 July 2025 FaeriMagic talk contribs deleted page Category:Sources of Fellow Aptitude Bonus (content was: "See Category:Sources of Fellow Aptitude increase. Category:Candidates for deletion", and the only contributor was "FaeriMagic" (talk))
- 20:25, 30 July 2025 FaeriMagic talk contribs deleted page Category:Sources of Family Intimacy Increase (Cleanup: content was: "See Category:Sources of Family Intimacy increase Category:Candidates for deletion", and the only contributor was "FaeriMagic" (talk))
- 20:25, 30 July 2025 FaeriMagic talk contribs deleted page Category:Sources of Family Intimacy Bonus (Cleanup: content was: "See Category:Sources of Family Intimacy increase Category:Candidates for deletion", and the only contributor was "FaeriMagic" (talk))
- 20:25, 30 July 2025 FaeriMagic talk contribs deleted page Category:Sources of Family Blessing Power Increase (Cleanup: content was: "See Category:Sources of Family Blessing Power increase. Category:Candidates for deletion", and the only contributor was "FaeriMagic" (talk))
- 20:24, 30 July 2025 FaeriMagic talk contribs deleted page Category:Sources of Family Blessing Power Bonus (Cleanup: content was: "See Category:Sources of Family Blessing Power increase. Category:Candidates for deletion", and the only contributor was "FaeriMagic" (talk))
- 20:17, 30 July 2025 FaeriMagic talk contribs created page Isekai wiki:Manual of Style (Created page.)
- 19:21, 30 July 2025 FaeriMagic talk contribs deleted page Category:Sources of Building Earnings Bonus (Cleanup: content was: "See Category:Sources of Village earnings bonus. Category:Candidates for deletion", and the only contributor was "FaeriMagic" (talk))
- 19:20, 30 July 2025 FaeriMagic talk contribs deleted page Category:Sources of Blessing Power Increase (Cleanup: content was: "See Category:Sources of Family Blessing Power increase. Category:Candidates for deletion", and the only contributor was "FaeriMagic" (talk))
- 19:20, 30 July 2025 FaeriMagic talk contribs deleted page Category:Sources of Aptitude Increase (Informed) (Cleanup: content was: "Currently not making subcategories for Category:Sources of Fellow Aptitude increase unless it gets crowded. Category:Candidates for deletion", and the only contributor was "FaeriMagic" (talk))
- 19:20, 30 July 2025 FaeriMagic talk contribs deleted page Category:Sources of Aptitude Increase (Cleanup: content was: "See Category:Sources of Fellow Aptitude increase. Category:Candidates for deletion", and the only contributor was "FaeriMagic" (talk))
- 19:19, 30 July 2025 FaeriMagic talk contribs deleted page Category:Source of Intimacy Increase (Cleanup: content was: "See Category:Sources of Family Intimacy increase. Category:Candidates for deletion", and the only contributor was "FaeriMagic" (talk))
- 19:19, 30 July 2025 FaeriMagic talk contribs deleted page Category:Rarity upgradeable Fellows (Cleanup: content was: "See Category:Fellows with rarity advancement. Category:Candidates for deletion", and the only contributor was "FaeriMagic" (talk))
- 19:18, 30 July 2025 FaeriMagic talk contribs deleted page Category:Rarity upgradeable Family members (Cleanup: content was: "See Category:Family members with rarity advancement. Category:Candidates for deletion", and the only contributor was "FaeriMagic" (talk))
- 19:18, 30 July 2025 FaeriMagic talk contribs deleted page Category:Rarity upgradeable characters (Cleanup: content was: "See Category:Characters with rarity advancement. Category:Candidates for deletion", and the only contributor was "FaeriMagic" (talk))