Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Related changes

More actions

Enter a page name to see changes on pages linked to or from that page. (To see members of a category, enter Category:Name of category). Changes to pages on your Watchlist are in bold.

Recent changes optionsShow last 50 | 100 | 250 | 500 changes in last 1 | 3 | 7 | 14 | 30 days
Hide registered users | Hide anonymous users | Hide my edits | Show bots | Hide minor edits
Show new changes starting from 10:31, 25 April 2026
 
Page name:
List of abbreviations:
N
This edit created a new page (also see list of new pages)
m
This is a minor edit
b
This edit was performed by a bot
(±123)
The page size changed by this number of bytes

24 April 2026

N    22:04  Template:MainPage/Intro 4 changes history +2,564 [WinterLampost (4×)]
     
22:04 (cur | prev) +1 WinterLampost talk contribs
     
22:04 (cur | prev) −7 WinterLampost talk contribs
     
21:56 (cur | prev) −7 WinterLampost talk contribs
N    
21:51 (cur | prev) +2,577 WinterLampost talk contribs (Created page with "<div id="mainpage-content" class="mainpage-grid "> <div id="mainpage-tracking" class="mainpage-box mainpage-box--col4"> <h5>Love Is Within Your Reach</h5> <p>This unofficial wiki contains extensive information on the game '''Love and Deepspace''', by Infold/PaperGames, and relies on the fandom to keep it up to date! But there are many ways to engage with the wiki, if you aren't quite ready to contribute?</p> <p>Choose your server using the {{MSIcon|palette}} icon in the...")
N    21:40  Template:LinkButton diffhist +122 WinterLampost talk contribs (Created page with "<includeonly><span class="link-button icon-{{{3}}}">[{{{2}}} {{{1}}}]</span></includeonly> <noinclude>{{/doc}}</noinclude>")
N    21:32  Module:Statsbar/styles.css diffhist +773 WinterLampost talk contribs (Created page with ".template-statsbar { margin: var( --space-md ) 0; display: grid; font-size: 0.8125rem; line-height: var( --line-height-xx-small ); grid-auto-columns: minmax( auto, 1fr ); grid-auto-flow: column; } .template-statsbar__item { padding: 0 var( --space-md ); display: flex; align-items: center; flex-direction: column; } .template-statsbar__item + .template-statsbar__item { border-left: 1px solid var( --border-color-base ); } .template-statsbar__label {...")
N    21:31  Template:Statsbar 2 changes history +89 [WinterLampost (2×)]
     
21:31 (cur | prev) +33 WinterLampost talk contribs
N    
21:30 (cur | prev) +56 WinterLampost talk contribs (Created page with "<includeonly>{{#invoke:Statsbar|statsbar}}</includeonly>")
N    21:30  Module:Statsbar diffhist +5,190 WinterLampost talk contribs (Created page with "-- Imported and adapted from Star Citizen Wiki local p = {} local args = {} local origArgs = {} local root -- Returns a table containing the numbers of the arguments that exist -- for the specified prefix. For example, if the prefix was 'data', and -- 'data1', 'data2', and 'data5' exist, it would return {1, 2, 5}. local function getArgNums(prefix) local nums = {} for k, v in pairs(args) do local num = tostring(k):match('^' .. prefix .. '([1-9]%d*)$') if num then...")
N    21:25  Module:Navpills 2 changes history +1,532 [WinterLampost (2×)]
     
21:25 (cur | prev) −6 WinterLampost talk contribs
N    
15:14 (cur | prev) +1,538 WinterLampost talk contribs (Created page with "local mArguments --initialize lazily local p = {} -- Returns a table containing the numbers of the arguments that exist -- for the specified prefix. For example, if the prefix was 'data', and -- 'data1', 'data2', and 'data5' exist, it would return {1, 2, 5}. local function getArgNums(prefix, args) local nums = {} for k, v in pairs(args) do local num = tostring(k):match('^' .. prefix .. '([1-9]%d*)$') if num then table.insert(nums, tonumber(num)) end end table.s...")
N    20:56  Module:Navpills/styles.css 3 changes history +1,806 [WinterLampost (3×)]
     
20:56 (cur | prev) +120 WinterLampost talk contribs
     
20:51 (cur | prev) +45 WinterLampost talk contribs
N    
15:56 (cur | prev) +1,641 WinterLampost talk contribs (Created page with ".template-navpills { display: grid; gap: var( --space-xs ); grid-template-columns: repeat( auto-fill, minmax( 160px, 1fr ) ); grid-auto-rows: 3rem; font-size: var( --font-size-small ); } .template-navpill { position: relative; border: 1px solid var( --border-color-base ); border-radius: var( --border-radius-medium ); font-weight: var( --font-weight-medium ); line-height: var( --line-height-xx-small ); overflow: hidden; } .template-...")
N    20:49  Template:MainPage/Nav 2 changes history +553 [WinterLampost (2×)]
     
20:49 (cur | prev) +9 WinterLampost talk contribs
N    
19:55 (cur | prev) +544 WinterLampost talk contribs (Created page with "<div class="mainpage-section"> <div class="nav-grid">{{Navpills |page1 = Overview |image1 = MainNav_1.png |page2 = Characters |image2 = MainNav_2.png |page3 = Gameplay |image3 = MainNav_3.png |page4 = Events |image4 = MainNav_4.png |page5 = Dating |image5 = MainNav_5.png |page6 = Memories |image6 = MainNav_6.png |page7 = Home Feature |image7 = MainNav_7.png |page8 = Lore |image8 = MainNav_8.png |page9 = Combat |image9 = MainNav_9.png |page10= Galleries |image10 = MainNav...")
N    15:15  Template:Navpills diffhist +87 WinterLampost talk contribs (Created page with "<includeonly>{{#invoke:Navpills|navpills}}</includeonly><noinclude>{{/doc}}</noinclude>")
N    15:12  Module:Arguments diffhist +10,089 WinterLampost talk contribs (Created page with "-- Adapted from Star Citizen Wiki -- This module provides easy processing of arguments passed to Scribunto from -- #invoke. It is intended for use by other Lua modules, and should not be -- called from #invoke directly. local libraryUtil = require('libraryUtil') local checkType = libraryUtil.checkType local arguments = {} -- Generate four different tidyVal functions, so that we don't have to check the -- options every time we call it. local function tidyValDefault(k...")
N    14:32  Template:MainPage/Header 2 changes history +294 [WinterLampost (2×)]
     
14:32 (cur | prev) +72 WinterLampost talk contribs
N    
12:58 (cur | prev) +222 WinterLampost talk contribs (Created page with "__NOEDITSECTION__ <div class="mainpage-header"><span class="mainpage-header-text">Welcome to <h2>Deepspace Lore</h2> A fan-maintained wiki for the mobile game <strong>Love and Deepspace</strong></span> [HEADERIMAGE] </div>")