{{Header}} {{title|title= Progress Reports }} {{#seo: |description=Overview on the continuous progress for Whonix and Kicksecure with individual specific contributions for content, research, implementation etc |image=Page-progress-reports-thumb.jpg }} {{devwiki}} {{about_mininav}} [[File:Page-progress-reports-thumb.jpg|thumb|200px]] {{intro| On this page we give an overview on the continuous progress for Whonix and Kicksecure and on the most active contributors. }} = Introduction = {{#widget:Icon_Bullet_List |item=fa-solid fa-chart-line cs-green,Whonix and Kicksecure are both long standing projects with an established history and both are still continuously further developed. |item=fa-solid fa-list cs-blue,On this page we like to give an overview on the continuous progress for Whonix and Kicksecure and on the most active contributors. They write content, they research, they implement and much more. |item=fa-regular fa-user cs-blue,Each contributor has a chapter. }} = arraybolt3 = == 2024-09-26 == == Investigate using dracut's upstream overlayfs feature == Date: 2024-09-26 Kicksecure currently uses a Debian-specific filesystem overlay module for "live mode". dracut has the same feature already existing upstream, so we would like to switch to it. Tested switching to it on Kicksecure, for some reason the dracut-native overlayfs module was silently skipped over despite being set up properly. Tested again on Trixie, everything just worked. Upstream bug comment: https://github.com/dracutdevs/dracut/issues/1565#issuecomment-2378133277 == Investigate Pipewire audio issues == Date: 2024-09-26 Successfully reproduced Pipewire audio bug and device-level workaround (switching to AC97 audio) using Debian 13 (Testing). I didn't think it would be reproducible on Debian 13, but it was. Still need to investigate if Ubuntu has this problem. Left a comment at https://forums.whonix.org/t/port-from-pulseaudio-to-pipewire-for-audio-support/16879/49. == Resolve inability to boot encrypted Debian with dracut == Date: 2024-09-26 Bug link: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1078792 If you install dracut on a Debian 13 (Testing) machine with unencrypted /boot and encrypted root, the system will fail to boot successfully upon next reboot. The root cause of this turned out to be a missing runtime dependency in dracut. When using systemd within dracut (as Debian does by default), systemd-cryptsetup is necessary to unlock the disk. The dracut package does not depend on systemd-cryptsetup, and so the initrd is left with no way to decrypt the root partition. Adding systemd-cryptsetup to the dependencies of dracut before installation is enough to resolve the problem. (The result doesn't look very good, the user is left with a gray rectangle that doesn't even necessarily look like a text box, and there's no indication that they're supposed to type their passphrase, but at least the disk can be decrypted.) Dracut gives no warnings when it generates an unusable initrd in this way, so I filed a bug report about it: https://github.com/dracut-ng/dracut-ng/issues/684 I also commented on the existing Debian bug report with my findings: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1078792#15 I did not yet submit the fix to Debian, as Debian Salsa happened to be down for maintenance just when I was doing this. == Switch to systemd-less dracut == Date: 2024-09-26 Dracut with systemd enabled has a module conflict leading to a scary error message about being unable to mount sysroot. This error message ultimately is harmless, but disturbing. See https://forums.kicksecure.com/t/iso-error-message-during-boot-mount-sysroot-special-device-liveos-rootfs-does-not-exist/418/4. When researching how to resolve this, I found https://github.com/dracutdevs/dracut/issues/1820#issuecomment-1133439023 which suggested omitting systemd from the dracut initramfs. After a couple of builds, I was able to do this and get a working Kicksecure ISO, however it now showed a (less scary) error message stating switch_root: failed to unlink mnt: Directory not empty. This turned out to be because Dracut mounts /dev/cdrom0 to /mnt/cdrom0 and then later tries to delete the directory without clearing it. After some more research, I wrote a dracut module that unmounted /mnt/cdrom0 and then rmdir'd /mnt/cdrom0, resolving the issue. This was tested and confirmed working. Code changes: https://github.com/ArrayBolt3/derivative-maker/commit/894d0657b7cd69370d67759709fff166d469cc37 == Test for memory leaks in kloak == Date: 2024-09-26 ChatGPT pointed out some potential memory leak areas in kloak's source code. I looked at them and didn't see any particular issues. After checking the allocation and free behavior, I additionally compiled and ran kloak, then did typing tests and lots of mouse movements in order to stress test kloak. No significant memory usage was noticed indicative of a leak. == Investigate dom0 implementation of kloak in Qubes OS == Date: 2024-09-26 Read through https://github.com/QubesOS/qubes-issues/issues/8541, investigated qubes-gui-daemon's source code to determine how to implement kloak most effectively there and suggested a potential way forward (writing kloak's functionality into the GUI daemon). Comment at https://github.com/QubesOS/qubes-issues/issues/8541#issuecomment-2377325699 Implementing kloak within individual VMs does not seem practical in the long run since kloak can't run above the X server or compositor without special support from that server or compositor, and Qubes OS's Wayland compositor is intended to be implemented without support for kernel input devices. This means that kloak has to be placed at the GUI daemon layer, in which case it's most likely easiest to just make it part of the GUI daemon. == 2024-09-25 == == Harden Calamares encryption settings == Date: 2024-09-25 Discovered that encryption code is located in libkpmcore, which is a component of KDE and not something that can be easily changed in Calamares yet. Discussed obstacles and potential implementation strategies with Patrick, decided to try just getting more secure settings upstream first. KDE development discussion post: https://discuss.kde.org/t/making-libkpmcores-luks2-settings-more-secure/21764 == Require user to make encryption choice explicit == Date: 2024-09-25 I originally started by trying to implement this from scratch to offer it as a feature request to upstream Calamares. As it turned out however, the feature already existed, and was able to be switched on by enabling a preCheckEncryption variable. Code change: https://github.com/ArrayBolt3/live-config-dist/commit/410c62e664e7d1387e7c013867242838ff2cb912 While initially trying to implement this, I discovered a bug in Calamares where the user could check the "Encrypt system" checkbox and then proceed past the partitioning screen without entering a passphrase. I reported the issue upstream at https://github.com/calamares/calamares/issues/2375 (along with a PR that should resolve it). == Update kloak readme == Date: 2024-09-25 Updated README.md to reflect current state of kloak. Code changes: https://github.com/ArrayBolt3/kloak/commit/4bbdf38cc6c6f9162348d9b23deef3169f8465b8 == Add Qubes OS support to kloak == Date: 2024-09-25 Determined how to manually enable kloak on Qubes OS, documenting findings at https://forums.whonix.org/t/current-state-of-kloak/5605/111. Getting this working by default needs orchestration, asked for advice from Qubes OS developers on how to proceed at https://github.com/QubesOS/qubes-issues/issues/1850#issuecomment-2374908358. Disabled AddressSanitizer in kloak, it was unfortunately incompatible with Whonix's ASLR settings. See https://stackoverflow.com/questions/77672217/gcc-fsanitize-address-results-in-an-endless-loop-on-program-that-does-nothing. Code change: https://github.com/ArrayBolt3/kloak/commit/c3500fc38cea3d69c96765f6691688e4079ecd67 During work, discovered that Qubes OS and VirtualBox users may be distinguishable from other users based on typing and mouse movement patterns, potentially due to VM clock resolution. Recorded findings at https://forums.whonix.org/t/device-fingerprinting-of-vm-users-virtualbox-qubes-xen/20460. == 2024-09-24 == == Automatically maximize Calamares window == Date: 2024-09-24 Ensured that a fullscreen window was acceptable, tested and implemented. Code change: https://github.com/ArrayBolt3/live-config-dist/commit/ab8a7e1829f7050882385488a67e9a316a9270fd == Investigate use of systemd-oomd == Date: 2024-09-24 Left a note at https://forums.kicksecure.com/t/consider-installing-systemd-oomd-by-default/223/4 with some thoughts. systemd-oomd has caused trouble before and is likely best to avoid. == Check haveged test suite == Date: 2024-09-24 The blog article at https://jakob.engbloms.se/archives/1374 made it look like haveged's test suite was passing even if the generator only ever output 1s. Using the latest version of haveged, I patched it to only ever output 1s, then ran the test suite. The suite failed under these conditions. Documented findings at https://github.com/jirka-h/haveged/issues/81#issuecomment-2372664967. == Kloak Development == === add configuration option to disable rescue key === Date: 2024-09-24 Added -p (persistent) option for disabling rescue key sequence. Ensured -k (for setting a custom rescue key sequence) and -p could not be used simultaneously, and documented -p in the help output. Code changes: https://github.com/ArrayBolt3/kloak/commit/ac9d1fc2712966a5ae834a690a885db9f10b2b0b === Document rescue key === Date: 2024-09-24 Added documentation for using the rescue key, customizing it, and disabling it. https://www.whonix.org/wiki/Keystroke_Deanonymization?shownotice=1#Rescue_Keys === makefile fix === Date: 2024-09-24 Added check for pkg-config to kloak's makefile, fixing a minor indentation-related bug in the makefile in the process. Code changes: https://github.com/ArrayBolt3/kloak/commit/a290f5f0fd864ea459e1c3e75a424fe7dd33cca8 === Test mouse click obfuscation === Date: 2024-09-24 Tested on both my physical machine (Kubuntu 24.04) and on a Whonix Workstation VM. Mouse click events were seen in the log output of kloak when running in verbose mode, and noticeable randomization was being applied even when kloak ran as a systemd service. Reported findings at https://github.com/vmonaco/kloak/issues/51#issuecomment-2371866583 and https://github.com/vmonaco/kloak/issues/51#issuecomment-2372382050. === Investigate xrdp support === Date: 2024-09-24 https://www.whonix.org/wiki/Keystroke_Deanonymization#xrdp === Document kloak testing procedure === Date: 2024-09-24 Looked into potential applications that could be used to test kloak's effectiveness. Two hopeful-looking solutions were found on GitHub (https://github.com/johwconst/keystrokeDynamics2FA and https://github.com/goncalopp/keystroke_dynamics), however both of them proved to be prohibitively difficult to set up due to badly outdated Python code. TypingDNA appeared to be too privacy-invasive to recommend to other users. Settled on vmonaco's device fingerprinting test, and documented how to use it. Results can be seen at https://www.whonix.org/wiki/Keystroke_Deanonymization#Defense_Testing. == Document how to clear apt-cacher-ng's cache == Date: 2024-09-24 Kicksecure's build process uses apt-cacher-ng. If a corrupted package is downloaded from Debian's mirrors, it will crash the current build due to a hash sum mismatch, then crash every subsequent build because the corrupted package will be stuck in the cache. After a couple hours of debugging what was happening, I traced it back to the cache, cleared it, got a successful ISO build after a little bit more fiddling, then documented my findings at https://www.kicksecure.com/wiki/Dev/Build_Documentation/VM#Build_repeatedly_errors_out_with_hash_sum_mismatch. == seccomp debugging documentation == Date: 2024-09-24 Documented how to find a specific system's syscall table at https://www.kicksecure.com/wiki/Seccomp. == autostart systemd user unit xdg-desktop-portal == Date: 2024-09-24 Got an ISO to build properly after some fiddling, then tested xdg-desktop-portal autostart by: * Installing xdg-desktop-portal * Installing xdg-desktop-portal-gtk * Running systemctl --user status xdg-desktop-portal and systemctl --user status xdg-desktop-portal-gtk - this showed that the portal was NOT running yet * Opening Firefox * Clicking Menu > Settings > scroll to Files and Applications > click "Browse..." next to Downloads * Running systemctl --user status xdg-desktop-portal and systemctl --user status xdg-desktop-portal-gtk while the portal window was shown - this showed that the portal WAS running Added needed packages (along with an ISO build failure fix) to kicksecure-meta-packages. PR: https://github.com/Kicksecure/kicksecure-meta-packages/pull/1 == Date: 2024-09-23 == == Kloak Development == === bugfix for time issues === Date: 2024-09-23 Debugged root cause of time-related keyboard lockup bug reported at https://forums.whonix.org/t/sdwdate-can-cause-system-time-to-jump-backwards-causing-issue-with-kloak/20433, recorded findings and created bugfix. Findings report at https://github.com/vmonaco/kloak/issues/31#issuecomment-2368666686 and https://forums.whonix.org/t/sdwdate-can-cause-system-time-to-jump-backwards-causing-issue-with-kloak/20433/4, bugfix at https://github.com/ArrayBolt3/kloak/commit/36385d7b0050601e6f255b168c297dab8d8fb027 === Investigate stronger compile-time hardening flags for Kloak === Date: 2024-09-23 Found and implemented suggestions at https://best.openssf.org/Compiler-Hardening-Guides/Compiler-Options-Hardening-Guide-for-C-and-C++.html, fixing all code issues found in the process. Code changes: https://github.com/ArrayBolt3/kloak/commit/c9c5a9876bd7fba17ec638efd065cc0836329766 === Avoid use of strncpy === Date: 2024-09-23 https://github.com/vmonaco/kloak/issues/66 mentioned wanting strncpy replaced with strlcpy for better security. However Linux's manpages warned about potential security issues with strlcpy (potential for DoS attacks if an attacker could control an input string) and performance issues, and recommended the use of a custom "strtcpy" function instead. This recommendation seemed reasonable, so I implemented it. Code changes: https://github.com/ArrayBolt3/kloak/commit/0c66a7b2da09cbabc5c4368a532ab43a0f34fbb8 === Integrate "Add a header file to make future development easier" pull request === Date: 2024-09-23 Pull request: https://github.com/vmonaco/kloak/pull/61 Adapted and integrated into Whonix's fork of kloak. Code changes: https://github.com/ArrayBolt3/kloak/commit/b0f0c926d84a6d60363c89c11b8f36cc55b57459 === Integrate "ChatGPT3" pull request === Date: 2024-09-23 Pull request: https://github.com/vmonaco/kloak/pull/65 Some of the code (most notably the strncpy bits) were implemented differently in my adaption of it, using strtcpy instead. Code changes: https://github.com/ArrayBolt3/kloak/commit/7f9bc1bcfd08e8b3554e135a4c4d59a0a09b26d8 and https://github.com/ArrayBolt3/kloak/commit/bb4a7143877eb12904e797224c2b0afc05463713 === Integrate "Add support for new devices attached after kloak starts" pull request === Date: 2024-09-23 Pull request: https://github.com/vmonaco/kloak/pull/67 The implementation of this PR had some issues, mainly with the use of a separate kloak process for every input device. I mentioned this at https://github.com/vmonaco/kloak/pull/67#issuecomment-2369121000, then adapted the code using a method that used only a single kloak process for all devices. Code changes: https://github.com/ArrayBolt3/kloak/commit/0d91a09a76ffa21b2782d673fcb91b16574b58d6 === Add ASan and UBSan integration === Date: 2024-09-23 Investigated ASan and UBSan, determined how to add them to kloak, ensure nothing broke horribly when done. Ultimately ended up being quite easy. Code changes: https://github.com/ArrayBolt3/kloak/commit/5beda6da49cf1ef9ef09767e35a5660015160ee8 === Fix ARM support === Date: 2024-09-23 ARM support bug: https://github.com/vmonaco/kloak/issues/25 ARM support seemed to mostly "just work" on the Raspberry Pi 4B when compiling and running kloak directly, unsandboxed. However sandboxing revealed that the syscall filtering rules set in kloak's systemd unit were not correct and thus kloak was crashing. Determining the right syscalls for aarch64 (and then also for x86_64 on top of that) took a while, as did setting up the RPi as a development board, but it was doable. Code changes: https://github.com/ArrayBolt3/kloak/commit/d7f386dcdd25263eb9e7a7031b171fdec3d0d4d3 and https://github.com/ArrayBolt3/kloak/commit/7fa9500c32f6560bf6ee7fe55438e27869601a0e === Code review with ChatGPT === Date: 2024-09-23 At Patrick's suggestion, I ran kloak's main.c file through ChatGPT to see if there were obvious issues. Based on its advice, I broke out post-execution cleanup code into its own function and ensured that the cleanup code was called on both normal and abnormal shutdowns. No AI-written code was integrated into kloak in the process, nor were any suggestions blindly implemented. Code changes: https://github.com/ArrayBolt3/kloak/commit/ba5df2543f247ed5592690d97019e0444e79b749 === Create pull request against Whonix's kloak fork === Date: 2024-09-23 Reported changes and suggested merging them into Whonix's kloak fork. Pull request: https://github.com/Whonix/kloak/pull/1 = Hans = == Sprint 2024-08 to 2024-09 == * 2024-09-26 ** USB_installation discussion and small improvements ** ISO page *** number icon color language changed *** number and alphabet icons for Linux Ubuntu and Debian *** beautify iso_writer_installation_linux more and sub templates *** ISO page 7 new images for TOC (steps) ** gallery tag new white style created *** documentation + tests ** codemirror large file problem research + summary * 2024-09-25 ** Art Gallery image fix ** revision of USB-Installation *** texts + icons *** restructure + styling ** Super large file problems codemirror research ** EditorAutoBackup byte oversize management feature *** general exception handling *** icon color change + notification *** documentation + cleanup * 2024-09-24 ** Template:Collapsible feature addToClass added + documentation ** EditorAutoBackup bugfix limit case *** quota exceeded improvement suggestion ** New template Icon + tests + documentation [[Dev/mediawiki#Icon_.28Template.29|Icon (Template)]] ** [[Template:Iso_writer_installation_linux]] improved ** [[ISO]] page completely revised 100% *** image overwidth fix (globally) ** improved {{CustomRepo|_Template_VirtualBox_CSS.css}} ** [[Progress_Reports]] page intro + image + Hans data + styling * 2024-09-23 ** request-servers-to-fetch-and-deploy.sh created *** secrets outsources *** references updated *** documentation ** EditorAutoBackup features discussion ** ISO thorough testing *** Discussion ISO *** heavy editing of page ISO 60% ** new gray and white color schemes added + documentation * 2024-09-19 ** CodeSelect white space bug analysis ** Editor-Autobackup new 100% implemented *** documentation *** added to wiki enhancements ** deploy to servers prompt improvement * 2024-09-18 ** CodeSelect new technique textarea global helper *** table with codeselect overheight bugfix (automatically because it was caused in Firefox by old technique) *** codeselect cleanup and logical restructure ** gallery tag documentation and wikitest test ** Editor-Autobackup new 50% ready * 2024-09-17 ** CodeSelect *** execCommand replacement research + implementation of new syntax + permissions research *** white space bug solution (new implementation via textarea) ** Discussion ToDo ** CodeEditor pre and underline *** images created *** buttons added * 2024-09-16 ** CodeSelect research leading space bug + found newline collapse bug ** add reporting bugs to support header whonix kicksecure ** gallery tag mobile and minerva skin research + minerva like implementation ** Extension HeadScript documentation update ** Discussion competitor page style Research ** Wiki Enhancements Extensions search + texts + remove standard extensions ** EditorAutoBackup version 2.0 specifications * 2024-09-13 ** Whonix and Kicksecure local pages move local info *** remove metager + add perplexity (kick) *** legacy code cleanup ** Gallery usage discussion *** new gallery template tried but not working with Template *** Research about tag ** twitter image research (extensive!) *** private server testing *** documentation ** Wiki_Enhancements reorder of old content *** new content points (80% ready) *** new images *** gallery tag usage * 2024-09-12 ** Mininav more narrow pseudo-bold technique + small selector bugfix ** deploy to servers: Check prompted directory to prevent user error ** thumbgallery styling improved *** new parameters mode justify *** bugfixes on legacy code *** documentation + wikitest ** page Wiki_Enhancements completed *** images created *** text + structure + beautification via our templates / modules * 2024-09-11 ** build files improved structure *** remove legacy code + cleanup *** better in-code documentation *** wiki documentation created ** php warnings regarding codeSelect bugfix *** code cleanup ** Kicksecure local page added load text *** added docu search *** drop shadow icon *** general style improvement on all screen sizes + tested ** mininav bugfix support for external links * 2024-09-10 ** Download button bug analysis ** Splide deprecated analysis + recommendation ** Splide numbered pagination implementation + Lighthouse readjustment ** Collapsible template documentation + new tests ** Kicksecure forum descriptions ** Discussion Todo ** wiki enhancements summary 50% * 2024-09-09 ** mediawiki-extension-CSS maintenance analysis and recommendation ** dark mode documentation ** delete legacy mwcombinejswrapper ** mininav rendering inconsistency analysis + pseudo-bold font weight technique ** Whonix local pages discussion upgrade style + add info text + upgrade with doc searches * 2024-09-06 ** Image file syntax research *** replace all file image Image by File *** documentation ** Splide slider deprecation and pagination counter CSS analysis ** Dev/Logo page content improvement *** new file names + replace in both wikis + remove Logo_box.png chapter and file (not used anywhere anymore) *** documentation ** Created new template Collapsible + documentation ** Link color improvements * 2024-09-05 ** Lighthouse *** links rely on color for Virtualbox page research + bugfix + documentation *** Header images wrong display size fix *** reduce unused CSS research + documentation ** jscookie deprecation analysis ** ContentImage global Alternative *** testing with link and empty link *** remove all contentimage usage one page at a time *** some individual page corrections ** replace multiple empty lines with one on both wikis * 2024-09-04 ** Scrollwrapper enrichTolerance vs false-positive enrich + documentation ** CustomScrollbar *** new global settings feature *** scroll-through feature *** prevent text selection spilling *** documentation ** Styling broken images research + solution discussion + simple style solution ** Darkmode lib new version diff analysis ** thumbnail ContentImage analysis ** Tab content controller *** remove auto-select first tab *** new wikitest *** documentation *** flagged reviews widget overlay designfix * 2024-09-03 ** pagespeed mininav links not crawlable analysis + improved documentation ** pagespeed deep check Virtualbox pages: img alt descriptions, links descriptive text, info box color improvements ** tab controller documentation improvement ** image no-load analysis *** Torbrowser new version bug testing (on our side) *** Analysis and suggestions for header + footer improvement ** mediawiki-link-to-archive backport + documentation + compatibility suggestion ** custom srollbar mobile improvement analysis ** contentImage newline and thumbnail option analysis ** dark mode maintainanace analysis and suggestion {{Collapsible |title=Archive |content= * 2024-08-30 ** Broken WikiSEO og:image investigation + suggestions ** wikitableautowrapper replacement with more general solution scrollautowrapper *** file cleanup + css cleanup *** new conditional application - wrapper only if needed. Saves client performance *** new feature screen height conditional top scrollbar (only if threshold is reached) *** New wikitests [[Dev/wikitest#ScrollAutoWrapper|ScrollAutoWrapper]] *** New / updated documentation [[Dev/mediawiki#ScrollAutoWrapper|ScrollAutoWrapper]] ** Content shift investigation for https://gtmetrix.com/reports/www.kicksecure.com/saJHEvIh/ *** mw-headscript font preload optimization according to guidelines * 2024-08-29 ** FUTO further communication ** confidential research (multiple subjects) ** Kicksecure HP blur bugfix ** video link new parameter style *** new style subtle *** new svg *** documentation ** Donors page and Transparency page improvements (style and content) * 2024-08-28 ** Discussion ToDo ** FUTO reaction discussion + text suggestions ** In [[Template:DonorCard]] *** the new parameter "project" was introduced *** The parameter range was extended with a "dis" value for discreet donors and implemented / styled *** and documentation was updated: [[Dev/mediawiki#DonorCard|DonorCard]] ** New chapter in Documentation [[Dev/mediawiki#Parser_Function_Special_constructions_for_if.2C_ifeq.2C_ifexpr_and_more|Parser Function Special constructions for if, ifeq, ifexpr and more]] ** On [[Testpage_Donors]] *** we have a new section for discreet donors with the respective new cards *** and we have a new section for testing of the project specific cards *** Also a TOC was added back in because there are so many sections now and it's just a test page *** and Introduction section was wrapped into an info warning box to emphasize that this is not a real content page ** On page [[Donors]] *** FUTO card was added (only visible on https://www.whonix.org/wiki/Donors) *** The donors policy was changed NOT LOGGED IN, so this is only visible in the revisions https://www.kicksecure.com/wiki/Donors ** On page https://www.kicksecure.com/wiki/Transparency *** Non-admin edit was made. FUTO entry is just a slimmed down version of PUP ** SVG to PNG conversion error report ** Replaced tabs in all project files with 2 spaces * 2024-08-27 ** Discussion ToDo ** Vector Legacy Maintenance documentation ** Lighthouse 4 error documentations ** adrelanos phabricator acount checkup + double report finding ** Bug report Error "Links are not crawlable" ** build-and-deploy-to-servers bugfixes layout improvements * 2024-08-26 ** PUP footer text analysis and suggestions ** General Sponsorship Policies review and improvements ** bugfix hidden table zero width table wrapper bug ** codeSelect *** hidden reveal bugfix *** feature cs-no-custom-scrollbars – natürliches scrollen für debugviaurlmodal *** improved structure and comments *** Added test to [[Dev/wikitest]] *** documentation ** Improved hashcontroller with new feature + performance improvement on js client + documentation ** Documentation for custom scrollbar [[Dev/mediawiki#CustomScollbar|CustomScollbar]] * 2024-08-24 ** Footer PUP section discussion *** implementation + styling ** advertisement page enhancements discussion * 2024-08-23 ** CustomRepo Template created *** Replace all occurrences with the new template *** documentation [[Dev/mediawiki#CustomRepo_.28Template.29|CustomRepo (Template)]] ** Discussion ToDo ** Donor Card message parameter introduced *** styling *** documentation [[Dev/mediawiki#DonorCard|DonorCard]] ** wikitable wrapper *** scrollbar unification of solution for mobile and desktop *** native scrolling introduced for nojs users *** thumbnail table float width correction bugfix (was hidden before, eg on page [[Dev/wikitest]] on top right) *** firefox perfect no content shift fixing *** strong code reduction (not needed due to unification) *** documentation [[Dev/mediawiki#WikitableAutoWrapper_and_ScrollableIndicator|WikitableAutoWrapper and ScrollableIndicator]] ** codeSelect *** scrollbar solid implementation (works for mobile and desktop) *** bugfix buttonimage (was not shown for empty string parameter) *** overflow perfect content shift prevention firefox * 2024-08-22 ** Discussion ToDo ** Headscript concept work *** jswrapper new function core dependent lib scripts *** performance test *** documentation ** wikitable custom scrollbar implementation + firefox content shift prevention ** codeSelect custom scrollbar * 2024-08-21 ** Task analysis + transcription ** overlong archive link analysis *** fixed improperly close archive_link *** removed nowrap solution *** documentation ** bug Overlong CodeSelect not showing scroll bar analysis ** headscript reorganize + cleanup *** add jquery dependent scripts section ** tinybar implementation + first test successful * 2024-08-20 ** About pages (Kick, Whonix) Lighthouse fixed *** touch target spacing + archive links fixed *** cite backlinks fixed ** archive link *** added class "external" *** linebreak analysis + solution suggestion + linewrap parameter + implementation + documentation ** mw-collapsible label now possible as paragraph p ** Footer image aspect ratio fix for Lighthouse ** Whonix and Kicksecure Documentation pages fixed for Lighthouse * 2024-08-19 ** Bugfix Donor broken images ** Firefox donation/EUR bug research + rejected ** task archive chapters were reorganized ** top headline edit button missing bug analysis + suggestion ** Legacy Vector TOC research and Lighthouse bug report to Mediawiki ** Touch target spacing improvement for Lighthouse * 2024-08-16 ** Whonix HP explainer video *** only load on demand *** remove superfluous code *** move code to whonix localpages *** remove superflous video poster *** documentation ** remove affiliate link option + comment out plus premium support and investors ** wikieditor codeselect newlines ** external links and Archive_link archive.org bugfix ** Whonix page About pagespeed research and questions to admin ** update fonts + documentation * 2024-08-15 ** Pagespeed *** Kicksecure TM symbol issue resolution ** issue “Failed to load resource” research ** Fontawesome *** subset research + documentation *** unify to new icon syntax (files + both wikis) and remove spaces *** double loading bugfix + documentation * 2024-08-14 ** Evaluation + rejection of keyboard shortcuts idea for editor ** Prevention of Firefox's hidden scrollbar behavior research + lib research (overlayscollbars, simplebar, slimbar, minibar, tinyscollbar) + implementation test + rejection documentation ** CodeSelect new feature parameter breaklines + multiwiki + documentation + bugfixes in wikitable wrapper occuring ** Homepages hero image Pagespeed solution documentation [[Dev/mediawiki#Homepage_.28.2Fwiki.2FHomepage.29|Homepage (/wiki/Homepage)]] * 2024-08-13 ** New Editor Button implementation 100% *** CSS styling *** 3 svg images *** documentation + multiwiki + testing [[Dev/mediawiki#EditorAddNewEditButtons|EditorAddNewEditButtons]] ** Discussion wikitable wrapper scroll indicator for desktop *** implementation top scollbar *** documentation [[Dev/mediawiki#WikitableAutoWrapper_and_ScrollableIndicator|WikitableAutoWrapper and ScrollableIndicator]] * 2024-08-12 ** Vector Skin Doc Update and rewrite at 3 chapters ** Repo files contributor editor settings documentation ** table scrollable on desktop re-evaluation ** Lighthouse Links without discernible name documentation ** Editor Button upgrade discussion + implementation 50% * 2024-08-09 ** Lighthouse Links not crawlable problem research + bug report ** Lighthouse id attributes error re-checked ** Lighthouse re-check discernable links task ** Lighthouse Whonix and Kicksecure homepages both solution for "touch targets space" problem + SVGs created as overview image previews * 2024-08-08 ** Lighthouse Links solution for Kicksecure and Whonix homepage and About page ** Lighthouse error Thumbnails with link research + bug report + design fixes ** Lighthouse Splide bug no-hack workaround Kick and Whonix homepages * 2024-08-07 ** Mediawiki ticket bug report regarding html not stable policy ** Communication setup and communication with forecast researchers * 2024-08-06 ** Mail outreach for possible open source partner ** Forecast research and communication == Sprint 2024-01 to 2024-02 == * 2024-02-03 ** Tor Safest Header Logo Alt text styling ** Tor Browser tasks analysis and replies ** Pagespeed tasks *** expand not crawlable revisit analysis *** mininav not crawlable research and analysis *** source map research *** About pages image alt fix *** Whonix about headline order *** Duplicated slider IDs analysis and suggestions and solution *** Link and background colors contrast adjustments ** lefttorightimage template and widget upgrade + documentation ** Local Homepage tasks: remove JS and analyse random news possibility * 2024-02-02 ** Registered Sign style fixes mobile ** Mediawiki selflink ticket progress analysis and suggestions ** Unified homepage dark section colors for background and links ** Copyright injection script *** Exclude index.php *** Add headlines to protected elements *** Simplify protect node identification *** Bugfix false-protection *** Protection of up to 300 words from injection *** Debug mode messages + user message *** Testing *** Documentation ** Slider revision discussion *** Reposition arrows *** Unify colors *** Reposition flow control * 2024-02-01 ** Discussion TODO ** Homepages *** Unified and simplified card structure on Homepage all link - heavy editing on Widget:Page_Homepage on Kicksecure and Whonix. Cards all have the same structure and basic functionality right now *** Unified Page_Homepage.css from Whonix and Kicksecure. Put the common parts in shared Page_homepage_common.css and only specific styles on the specific CSS files. Prevent double and follow-up problems like outdated code. Also refactored code and structure for much better future usability *** Created Snowden on Whonix wiki page ** Sliders on Homepages *** Simplified slider creation (less code due to unified cards) *** Moved slide styles to Homepage *** Make all slides links so url preview bar (bottom left in browsers) shows always link *** Make text selectable on slides (must be done because of previous point: all slides links) and prevent triggering opening link or modal due to text marking *** Improved Homepage styling in general and specifically sliders, unified styling (less code) *** Unified hover transform for all slides *** Special slider style for dark sections (auto-detect with CSS) *** Updated [[Dev/mediawiki#Splide_homepage_sliders]] * 2024-01-31 ** Trademark Register fine tuning ** headscript better page route analysis ** hsversion cache control inserted in CSS extension use cases in Kicksecure and Whonix *** new files for pages and templates *** documentation ** new AddMessageToCopiedText.js – add copyright text to all copied text on the wikis *** excluding “protected objects” *** Prevent Protection due to the selection starting and ending in different protected elements * 2024-01-30 ** Discussion TODO ** Slider improvements *** improved api (data-slider-type) *** Unified the section data structure for the home pages *** googleoff for whole slider *** Responsive for mobile (less slides visible) *** New type htmlcard for press cards *** Implemented in Kicksecure and Whonix homepages *** Documentation *** Restyling control element icons *** Prevent click action when text selection active ** task discussion replace css extension ** Homepage card sui disabler moved up, written new text and made new modal * 2024-01-29 ** Discussion TODO + Kicksecure system browser choice ** Headscript avoid php errors ** register sign more subtle ** expand button color fix + google lighthouse metric ** discover hidden elements extended for anchors + documentation ** slider implementation *** created temporary testing environment *** Fixed a small bug in headscript regarding when the splider script is loaded (only on homepage but it was too strict) *** styling *** fine tuning *** adjustment for other sections *** multiple different click events handled * 2024-01-26 ** Mediawiki self-link new draft for feature request ** GoogleOff *** Applied to CodeSelect *** Review of “see share button” SEO bug ** Slider for wiki Homepages *** splidejs docu research *** setup and import in file system and in headscript *** Regexp to only load library on homepages *** homepageSliderInit.js created *** Implementation, testing, problem analysis *** New solution suggestions ** cacheclear discussion ** Reposition of editor augmentation logos due to new Mediawiki version ** Share widget improvement: new reddit logo and markdown button ** Broken anchor problem review and analysis * 2024-01-25 ** javascript-notice template fix ** share widget *** plain copy was made more prominent *** "wiki" and data-project data was removed from in share texts *** A new url templating language and parser were introduced *** New colored share symbols were introduced, new logo for the Mediawiki share option *** Plain copy was re-implemented as a code select line on top *** A complete re-arragement of the elements in a new order was don *** Description texts were added for the copy url options *** Testing was done *** Documentation was updated, especially in-source ** Discussion ToDo * 2024-01-24 ** Register symbol review and improvement *** Removed logo text and replace logo plus text *** Responsive styling ** Parsoid self-link research and suggestions ** ChatGPT css suggestions review and analysis ** Outreach / communication ** Blurry gui preview image replacement ** Evolution host SVG file with text * 2024-01-23 ** New Build System Multiwiki docu rewrite - Multiwiki and sub chapters ** Review of build file changes by admin ** Improved payviaPaypal forceSandbox ** Improved build and deploy ** EditorMultiwikiNotice new terminology (from documentation) implemented (publisher/subscriber instead of master/slave) ** Docu Replacement [[Mediawiki:files]] and refilter Common.js + Common.css + #css:Mediawiki files etc ** parsoid and mediawiki image link rendering review and documentation ** Headline style improvement * 2024-01-22 ** New build system continuation *** adjust build.json files ** move wiki specific src files and adjust build config files *** diff check that new build was done correctly relative to old rendered files *** 2 repo solution analysis and suggestion ** Paypal widget rewrite / bugfix review ** Kicksecure logo rectangle ** Pay via paypal sandbox mode *** Always activated on staged server *** Sandbox indicator widget *** Documentation ** Improved local deploy script ** documentation staging server test * 2024-01-20 ** mw-combine rewrite completed *** Optimizing file structure *** Refactoring mw-combine *** Refactoring build.json *** in-file documentation *** Debugging + testing + bugfixing *** Demonstration video *** Discussion Call * 2024-01-19 ** Discussion Todo ** Created switching script to staged server config and back for local usage of contributors ** New wiki files build system *** git configuration + 3 repos initialized *** files transferred from old system + completeness check *** architecture analysis and discussion *** resctructuring *** bash script + mw-combine rewrite beginning == Sprint 2023-08 to 2023-09 == * 2023-09-08 ** Virtualbox installer logo ** Illustrative images *** Whonix-Gateway Xfce VM illustrative image *** Whonix-Workstation Xfce illustrative image *** Kicksecure CLI illustrative image ** HP images *** Stream Isolation image *** File swap creator image *** targeted updates image ** Stream isolation thumbnail too big ** Nav-menu column overflow bugfix * 2023-09-07 ** donor cards broken + wikitest ** Discussion Todo ** pagespeed fixes ** discuss CSS hide footer items ** Expand Collapse replace new technique + docu + tests ** mediawiki bug report CSS/HTML changes * 2023-09-06 ** Pagespeed fixes ** donation appeal page discussion ** GrapheneOS task review ** Mobile_Phone_Security wiki page content enhancements ** CSS hide footer items * 2023-09-05 ** Mediawiki Code Editor Warnings Research ** Server Cache Busting review ** Google Mobile Font review ** whonix homepage press section ** mw-collapsible-toggle screenreader aria research ** header hover over effect and link ** mw-collapsible bug report * 2023-09-01 ** add querystring to Headscript discussion + version + hsversion ** CSS extension cache busting discussion ** footer - TM vs R – Kicksecure and Whonix Headline + Symbol solution ** homepage - sequential heading levels ** Whonix HP new player hero image + play / pause player upgrade + SVG play symbol * 2023-08-31 ** header nav menu hover plus link analysis ** Header Hamburger Menu like super menu *** Kicksecure + Whonix *** Refactor Header code ** icon bullet list span upgrade + tests + documentation ** anti spam email upgrade + Template Contact icon bullet list upgrade ** Hompages "Learn More" labels ** TODO Discussion * 2023-08-30 ** toc line wrapping bugfix ** forums link indicator wrap bugfix ** whonix homepage video bugfix ** anti spam email hover feaure + icons + documentation + whonix port ** super menu closeable when clicking elsewhere + open when hover * 2023-08-28 ** Whonix HP VPN table bugfix ** Kicksecure Whonix Super Menu close via X ** Antispam Email Tooltip Whonix + Kicksecure + tests + documentation ** Template:GoogleOff span upgrade + tests + documentation ** Discussion Header Menus JS Hover * 2023-08-25 ** footer superfluous scroll bar fix ** Header menu Kicksecure Whonix *** new open close technique *** menu to full size *** icon switch to x ** pagespeed fixes for Whonix and Kicksecure ** Whonix vs VPN table fix research ** tables word breaking mediawiki bugfix * 2023-08-24 ** Footer new version for Kicksecure and Whonix *** Code review + refactor + testing *** Documentation *** Dark Mode Button Fix *** Open Source Logos Upgrade * 2023-08-23 ** New Header Whonix and Kicksecure *** Nav Menu *** Multiwiki restructure *** code review + refactor *** testing + documentation ** FontAwesome research + upgrade ** Footer new version 20% * 2023-08-22 ** Whonix Forum banner color ** Sitenotice id new solution review + tests and documentation ** Discussion Todo ** Header new menu structure + design + multiwiki strategy * 2023-08-18 ** Mediawiki old vector skin *** Responsive code review *** 2x bug report upgrades ** ContentImage upgrade + tests + documentation ** Flagged Revisions Design Bugfix ** Mediawiki update review finalized ** Header new version 60% * 2023-08-17 ** Wiki update all broken fixes (image, thumbs, thumbgallery, community support, videolink) ** MediaWiki verison log research + diff file review * 2023-08-16 ** Community Support Template upgrade + tests + docu + pages ** New feature pre[data-code] ** Template nowrap bugfix ** StageServerIndicator + Headscript modification + documentation ** wikitest check after update * 2023-08-15 ** Expand Button different labels + tests + documentation + pages update ** mininav image icons + tests + documentation ** Content Review Debian install + verify signatures ** Content text improvement verifying software signature ** Community support template : upgrade (first iteration) * 2023-08-14 ** Tab Controller citation bug search + feature cite-ref + new wikitest + documentation ** Expand Button label discussion ** wiki syntax discussion ** header + footer discussion ** Whonix Kicksecure HP images review ** Whonix HP table pagespeed fix ** tab content controller multi line space reseved + mininav upgrade + tests + documentation * 2023-08-11 ** Forum links analysis + link upgrade ** DiscoverHiddenElements new feature ** tab content controller upgrade ** FlyinBanner testpage upgrade ** minimav image support analysis * 2023-08-10 ** Share Tooltip and headline edit better positioning and better (and more reliable) hover effect ** Mbox task review (closed) ** contentimage thumbnail upgrade + documentation ** GoogleOff for footer QR area ** too much white space after table bug fix ** tab controller *** height bug fix *** linkid use case upgrade *** feature reviews * 2023-08-09 ** Discussion Todo ** Download Button new icons parameter + titles (for these icons) + tests (wikitest) + documentation ** Whonix Forum header footer restored ** Download page Source Code link for Kicksecure and Whonix ** Footer Header discussion and suggestions for Kicksecure and Whonix ** Whonix Forum nojs bug research + bugfix + bug report ** Share widget icon upgrade * 2023-08-08 ** Discussion Todo ** Re-Balanced headline visuals ** Whonix discourse forums revert to default ** page too long (width) bug fix (2 pages) ** Whonix super menu mobile fix ** Share Tooltip Button better click + new icon suggest ** Download Button custom image feature review ** CodeSelect spacing bug researc == Sprint 2022-07 to 2023-06 == * 2023-06-23 ** Wikitests written for all functional elements and CSS, cleanup done and reordered wikitext page ** Upgrade share toolkit *** Now index.php pages are correctly translated to non-index.php share links. *** And speed improvement: before the base url calculation was done again and again for each link, now just once ** Bugfix miniModal : hash did not work properly ** Bugfix hashController : slightly wrong if condition corrected ** Bugfix WikitableAutoWrapper : did not work for mobile because of small mistake. Now works ** Small CSS Bugfix for introlike template + documentation ** Made Pages.js multiwiki (because redundancy), introduce LocalPages.js, Introduced new wikitest JS on Pages.js ** Cleanup for build.json ** VideoLink template update : Indivious onion link fix and documentation for future fixes * 2023-06-22 ** Discussion Todo ** Video Homographs Revision + Title image ** Mediawiki Widget Bug Research ** CodeSelect small bugfix (due to FontAwesome upgrade ** Testcases * 2023-06-21 ** Checked and deleted non-multiwiki widgets Kicksecure and Whonix, that are not in use anymore and made the other widgets MultiWiki ** new Template:Headline + changed all widget to template + documentation ** Oldid bugfix Whonix ** Review widget bug * 2023-06-20 ** Updated and secured (against undeclared vars) of all Multiwiki Widgets: Checkbox Bug research, Widgets: CodeSelect + DonationPanel + DownloadButton + EagerImage + FlyInNoti + Footer + Header + Headline + HtmlComment + LeftRightImageText + SitenoticeBanner + Subdomain_link + VideoLink *** Upgraded some widgets and corrected bugs for rare case scenarios, especially in DownloadButton, FlyInNotitication, SitenoticeBanner and Subdomain_link *** New tests for all of the on [[Dev/wikitest]] * 2023-06-16 ** Video Homograph review + Preview image ** Multiwiki deploy + testing ** Intro Template ul upgrade ** Whonix-host intro + icon list + content images ** Features page review ** Bugfix Widget Headline ** Widget:Archive error handling upgrade + wikitests * 2023-06-15 ** YouTube video production: Homograph attacks * 2023-06-14 ** Unlighthouse research report ** Github.io version for Kicksecure and Whonix + GitHub Pages config ** Extension:Cookiewarning feature request * 2023-06-13 ** Share Widget Upgrade : Hover Connector ** Text Extracts Research + Feature request written ** Extension:CookieWarning GoogleOff analysis ** JS Stream Download Hash research ** Web vitals extension research * 2023-06-09 ** Bugfix Tab Controller TOC interaction + documentation ** MiniModal upgrade to Hash Controller + documentation ** /Linux nojs white space fix ** Edit section research + suggestion + Mediawiki Bug report ** Upgrade headline widget integration into Tab controller for Headlines invisible to TOC + documentation ** UPgrade Hash Controller special chars + documentation * 2023-06-08 ** Reserach TOC Tab Feature ** Todo Discussion ** Created new feature Hash controller, documentation see [[Dev/mediawiki#Hash_Controller]] ** Tab Controller Feature : react to TOC ** Tab Controller Feature : write to Hash * 2023-06-07 ** Tab Controller *** Content Cleanup *** Content Shift Re-Correction (navigation) *** Upgrade of the Image syntax *** Page adjustments with new image syntax *** wikitest examples created *** Documentation updated *** Syntax upgrade on Whonix ** Discussion ToDo ** Phabricator ticket analysis * 2023-06-06 ** New [[Widget:EagerImage]] ** Tab Controller *** Complete upgrade of syntax, in all files [[Template:Tab]], JS file and CSS file **** All features were ported and new features added *** ID feature implemented. All tabs are now links **** works for nojs users as jump point **** for js users opens the tab and all parent tabs and scroll to position *** Replaced all old syntaxes on Kicksecure with new syntax: old Template-syntax and
* 2023-06-02 ** Tab Controller *** Image Content Shift Discussion *** Image Preload via Javascript *** General discussion *** Code Refactoring *** Reimagining + Documentation * 2023-06-01 ** new widget [[Widget:Headline]] + documentation ** TabContentController *** nojs upgrade **** searchAndReplace all occurrences of [[Template:Tab]] on Kicksecure and Whonix **** documentation **** New wiktests *** id upgrade for nojs + documentation * 2023-05-31 ** Phabricator review updates ** Font-Awesome FA6 CodeSelect Adaptation ** Discussion Tab Controller Content Shift ** Chromium Scroll shift bug discussion ** Outreach text written ** webpagetest review, research and tests ** Discussion Todo * 2023-05-30 ** Blockquote overlap bugfix ** TOC weird look Firefox bugfix ** Quotation in table bugfix → in reality: table auto wrapper padding bugfix ** Phabricator research and answer ** Sitenotice active parameter upgrade + documentation ** Banner styling in general and banner001 ** Micro Content Shift Chromium Bug research ** font awesome direct style for header super menu * 2023-05-24 ** Content Shift Fix Virtualbox + Donate ** PayViaPaypal content shift prevention + Nojs Improvement ** Chrome reload shift bug report ** Font Awesome upgrade ** Banners documentation upgrade * 2023-05-23 ** Blockquote normal style + special style + documentation ** Content shift prevention *** CodeSelect image content button *** CodeSelect target feature styling + helper div styling + prism styling *** ShareTooltip *** Auto table wrapper *** Small fixes for special pages * 2023-05-22 ** Mediawiki template parser bug answer refinement * 2023-05-20 ** Quotation new Cases + Tests ** MediaWiki list parser bug research + documentation ** new template ContentImage + documentation ** Header design fix for over-wide pages ** Content shift design fixes for mw-collapsible and tabContentController * 2023-05-19 ** Discussion Todo ** Content Shift research + CodeSelect content shift prevention ** Blockquote improvements ** Quotation Template + documentation ** Developer documentation about html templates, specifically Mediawiki parser bug avoidance ** MediaWiki bug report about html templates inside lists ** Contributor Template bugfix + wikitable-auto-wrapper upgrade * 2023-05-13 ** Blockquote margin improvement ** JSHint analysis + improvements + documentation + other tools ** new blockquote design * 2023-05-12 ** Discussion Todo and usage of the noinclude tag ** Table overlength vertical content shift prevention ** Share Modal vertical content shift prevention ** check integrity of user downloaded files research * 2023-05-10 ** TOC mobile overwidth CSS fix ** Excluded header and footer from search engines ** new feature ThumbGallery + documentation ** Scroll table research + discussion + desktop version modification * 2023-05-09 ** Todo Discussion ** Bug reports review + improvement ** table over-width research + new feat wikitableAutoWrapper + documentation + replace scroll-table Kicksecure + Whonix * 2023-05-06 ** Form element labels pagespeed bug report preparation ** Open Graph Research ** FlyinNotification updated and moved to footer ** GoogleOff upgrade ** Mediawiki image link "selflink" bug report preparation ** Collapsible elements research ** async defer research and tests ** critical css reseach tests * 2023-05-05 ** Download Choice on homepage improvements ** Mediawiki bugs reviews and reports written ** Todo Discussion ** Browser ddos vulnerabilities report written ** mininav image link problem research / analysis ** Header super menu mobile position bugfix * 2023-05-02 ** "Layout was forced ..." error message research * 2023-04-29 ** Outreach texts written + planning + scheduling ** Homepage Download improvements + mobile ** Template Virtualbox improved * 2023-04-28 ** Code link css ** Cookie samesite research + implementation ** thumb lazy load bugfix ** Mobile hidden scrollbar research + fix ** Discussion Todo * 2023-04-26 ** Bug analysis $.cookie ** bug fixing page Linux ** Tab controller replace old syntax with new template ** “Show only once” template research ** thumbnail content shift research ** blockquote css ** Google Off template and documentation [[Dev/mediawiki#GoogleOff_Template]] ** HtmlComment widget and documentation [[Dev/mediawiki#HtmlComment_Widget]] ** FlyinNotificationTestpage and documentation [[Dev/mediawiki#FlyInNotification_Module]] * 2023-04-25 ** Tab Controller Template + Replace + documentation ** Funding strategy discussion ** Small mobile design tasks ** Cookie discussion + move to JS cookie multiwiki + documentation ** Video Script rewrite * 2023-04-22 ** Homograph attack video script rewrite ** $.cookie to mw.cookie research and replace toclevelswitcher + flyinnotification + sitenotice + debugviaurlmodal ** tab-content-controller new feature linked controllers + documentation updated * 2023-04-21 ** Discussion Todo ** Video short screenshots final production *** Thumbnail design *** Tweet preparation *** Research Youtube shorts thumbnail rules * 2023-04-19 ** Windows Installer Dev Coop ** YT shorts rules research ** Video screenshots rewrite 30% less text (to fit shorts criteria) ** Video Homograph rewrite ** Video short about Screenshots production * 2023-04-18 ** Whonix Windows Installer Design analysis + suggestions + Call ** Mediawiki Testers Version If-Clause ** Multiwiki-Deploy + Testing ** code-box fixes ** thumbnail fixes mobile ** /wiki/Download upgrade + homepage * 2023-04-14 ** Mw-collapsible patch review ** tab content controller white border style + dark class + new function data-tcc-url + documentation ** Discussion Todo ** [[Linux]] on Kick + multiwiki ** mininav upgrade mn-dark + documentation ** icon bullet list comma bugfix * 2023-04-12 ** Template Upstream Wiki upgrade ** improved template Archive Link ** Self Support First Policy Page + Template ** Upgrade Mbox template ** New template: introlike * 2023-04-11 ** FlyInNotification mobile links + dark mode close ** Thumb bugfixes ** VideoLink Widget upgrade ** Virtualbox Templates + Redirect + ReplaceLinks ** flatpak-install page fix * 2023-04-06 ** Marketing strategy suggestions ** flyinnotification bug review + little design improvement + headline link ** Video link template ** Virtualbox CLI and Xfce unification ** Flatpak install unification * 2023-04-05 ** Self Support First Policy suggestions ** Donation strategy analysis * 2023-04-04 ** Discussion ToDo ** Video short url impersonation punycode script ** Video short mistrust screenshots script ** flyinbanner link + documentation ** thumb improvements ** Pull request helper-scripts ** Suggestions for "Free Tools marketing strategy" * 2023-04-01 ** Todo updated ** grep-find-unicode-wrapper new version as scan-text-file ** Unicode dangerous characters research ** Video hidden attacks revisions + video description * 2023-03-31 ** FlyInNotification mobile small version ** Bug report answer Collapsible Elements ** Video Hidden Text Attacks production + title image ** Thumbs double border improvements * 2023-03-29 ** Video Hidden Text Attacks production * 2023-03-28 ** Whonix wiki/Linux content fix ** Pagespeed improvements *** Headline research *** Research “Links are not crawlable” *** Total blocking time research and testing * 2023-03-25 ** Donate pages improvements text image design ** Content fix Whonix Linux installer page ** Discussion ToDo ** PayviaPaypal change amount on interval change ** "Time to Interactive" performance research ** Software pitch * 2023-03-24 ** PayViaPaypal upgrades usability, simple design ** FlyinNotification upgrades functionality, design, smallery file size ** Strategy discussion * 2023-03-22 ** mwcombine source maps + uglify syntax + documentation ** Discussion ToDo ** PayViaPaypal redesign (guardian) + cleanup * 2023-03-21 ** Video Kicksecure 001 script ** Cookie warning bug analysis ** Pagespeed optimizations ** mwcombine error output + add source map for custom js * 2023-03-15 ** Discussion Todo ** Image optimization SVG and hero + analysis ** Improved Whonix Linux installer page ** Repo web interface research * 2023-03-14 ** Instantpage documentation ** purge extension and fork analysis ** Donors page thumbnail ** multipart email thunderbird research ** Discussion instantpage and multipart email * 2023-03-11 ** Discussion Todo ** mw-combine upgrade feature justcopy + refactoring + documentation ** DonorCard.css upgrade + DonorTestpage link threshold correction (only s and higher examples) ** Integration and testing instantpage.js ** Headscript refactoring ** Thumbs design fix for gallery thumbs * 2023-03-10 ** Design fixed KS Trust page + Whonix HP ** Discussion ToDo ** BackToTopButton mobile fadeout ** Responsive Thumbnails + docu ** Source map research * 2023-03-08 ** Discussion Todo, DonorCard etc ** Donor cards feature + design upgrade + documentation update ** Donors and Testpage Donors texts ** Template intro thumbnail fixes + notpageimage research ** Content attribution, Design improvements ** Extension:Popup reference preview research and suggestions * 2023-03-07 ** Bugfix PayViaPayPal + upgrade design ** Research image thumb generation mediawiki ** [[Template:intro]] CSS Firefox fix + upgrade hidden thumbnail thumb parameter + documentation [[Dev/mediawiki#Intro_paragraph]] ** Donors Wiki page related tasks * 2023-03-04 ** Discussion ToDo ** new [[Template:DonorCard]] design + 5 levels and anon + Link feature and link indicator + documentation [[Dev/mediawiki#DonorCard]] ** new [[Testpage_Donors]] ** new [[Donors]] page ** [[Template:Intro]] visual improvements * 2023-03-03 ** Bugfix Kicksecure homepage overview-image ** Bugfix newline bug in HeaderMultiWiki ** Sitenotice close button upgrade optically and functionally ** Check image quality ** PagePreview / TextExtracts bugfix on some pages ** [[Template:intro]] upgrade + documentation ** Fontawesome preloading ** Donor Page card design * 2023-03-01 ** Banner bigger close + cookie bugfix ** Discussion CSS optimization and CSS extension ** Banner rewrite with new method and documentation ** Multiwiki deploy and testing * 2023-02-28 ** Image optimization + metatag Research + new helper program ** Codeselect upgrade optional img lazy load + docu ** extension:pagePreviews broken fixes ** intro template and css upgrade * 2023-02-27 ** Discussion ToDo ** ShareTooltip regexp-bugfix + new mediawiki share logo ** Textextracts extension research ** Footer fixing ** Reduce warnings of w3c validator ** Banner slim variants ** short debugging discussion mw-combine error * 2023-02-22 ** Bugfix for mobile back button broken ** Bugfix fors Anchors missing ** Discussion Todo ** Fixed Kicksecure Badge svg file ** Banner dev wanted for Kicksecure was created ** New banners were uploaded and installed * 2023-02-15 ** Creation of 5 banners ** Discussion donor recognition * 2023-02-14 ** MiniModal upgrade all modals close on back button + documentation ** MwCombineWrapper refactoring ** Whonix Kicksecure HP minor fixes ** optimized SVG versions for some logo images ** coming soon sign * 2023-02-13 ** Discussion ToDo ** PageHomepage *** Modals share anchors introduced *** Text can now again be marked and individually copied *** Highlighting of selected card via url hash + extending hidden areas if needed + open modal if available + back button can be used to return from modal *** CSS reduction + Firefox fixes *** MiniModal upgrades + documentation [[Dev/mediawiki#Mini_Modal]] * 2023-02-06 ** Discussion ToDo ** CodeSelect highlight language extension variable externalization ** Minify JS-HTML suggestion ** mw-combine sanity test and conditional folder creation for src-copy + documentation ** forums year end banner repair ** Page editing via header super menu oldid fix ** Removed nojs.css mentions and updated documentation ** fonts.css relevance checked and deleted on all wikis ** multi-wiki-deploy, tests and small bugfixes * 2023-02-04 ** CodeSelect Highlight upgrades: less code, better usage, bugfix + documentation ** Optimization mw-combine: better naming, spacing, formatting, usage * 2023-02-03 ** Discussion Todo highlight / prism, discussion strategy ** Replaced highlight-js with prism-js for CodeSelect + new tests on Testpage + feature target highlight + prevent highlight for CodeSelect icon form for speed optimization ** Nojs.css deleted and purged from build.json + styles moved to other style files (closer to nojs styles ** mw-combine improved: folder sanity check, array check for build.json categories * 2023-02-02 ** Discussion Todo ** Research highlight js libs, removed Highligh extension, installation of highlight.js ** CodeSelect integration of deferred highlight.js + new Feature "lang" to control highlight language or set to auto / none ** CodeSelect examples were created [[Testpage1]] ** CodeSelect documentation was updated [[Dev/mediawiki#CodeSelect]] * 2023-01-31 ** Code review for link-to-archive ** CodeSelect review research + rewrites + new feature "target" + nojs adjustments + template lang research + documentation * 2023-01-30 ** discuss codeselect / JavaScript security ** TOCLevelSwitcher upgrade no content shift + documentation ** Sitenotice new functionality was added (data-banner-expires) ** Sitenotice end of year now uses the normal functionality ** Sitenotice thorough documentation [[Dev/mediawiki#SiteNotice_End_Of_Year_Banner]] and [[Dev/mediawiki#SiteNotice_Info_and_Donation_Banners]] * 2023-01-27 ** push to the mediawiki-extensions-CookieToBodyClass git repository ** headscript fail open investigation, research, testing ** New Feature SiteNotice replacement for DismissableSitenotice + documentation [[Dev/mediawiki#SiteNotice_Donation_Banner]] * 2023-01-26 ** Tor Browser noscript optical bug fix + documentation ** Hide banners cleanup ** New Mediawiki Extension CookieToBodyClass + documentation * 2023-01-25 ** Header Donate designfix ** Login image bug and localWiki option concept ** Reproduce attempt for wide resolution bug ** Simplify hide_all_banners + documentation ** Discussion ToDo ** Whonix outreach communication ** Kicksecure vector text convert to path ** About / FAQ mininav unification ** Mediawiki extension research * 2023-01-24 ** Todo discussion ** Footer QR Modal empty img to JS + Testing ** Header Refinement images + multiwiki deploy ** Homepages shaking hands bugfix ** main mw-combine js defer ** fontawesome experiments and research * 2023-01-23 ** Kicksecure and Whonix homepage and footer image optimization including link rewrites to thumbs, lazy loading async decoding and re-uploads of images which are too small. Also documentation: [[Dev/website#Images.2C_Files_and_usage_of_thumb]] and some style upgrades ** Kicksecure Header mobile bugfix ** Mobile bars logo for Kicksecure and Whonix headers. Also 4 main images in header given width and height * 2023-01-21 ** Installation wiki on local Kicksecure VM ** Documentation ** Mediawiki thumb research * 2023-01-20 ** Another test and testing with google pagespeed and gtmetrix + documentation ** Documentation about deferrable js scripts ** new feature: pageRefToLinks + documentation, ** Whonix and Kicksecure HP replace background images with images (for good page metrics) ** multiwiki-deploy and review * 2023-01-19 ** Principle research on mediawiki extensions and review of DismissableSitenotice extension ** Installation local wiki vm und and ssh keygen ** Scrollindicator desktop fix + documentation ** loading eager lazy research with admnin ** Created multiple test cases for loading with google pagespeed under /test * 2022-12-28 ** end-of-year donation banner fix ** broken PayPal donate button investigation * 2022-12-22 ** srcset discussion ** Whonix homepage replace all background images with foreground + give alt attributes ** Kicksecure homepage last images from background to foreground ** srcset sizes research ** full local file CSS JS documentation * 2022-12-21 ** Deactivation and replacement of Bootstrap on Kicksecure and Whonix ** upgrade MiniModal (retain dom events in content, esp. for CodeSelect) ** Sitenotice exclude from search ** Duplicate footer fixed ** Kicksecure homepage head area + no background images + alt attributes * 2022-12-20 ** Discussion page speed ** Search engine bots no index for functional components ** Kicksecure homepage: logo as svg + overview image preload blur ** Whonix homepage slogan and call to action + overview image preview blur ** mediawiki common.js event alternative * 2022-12-19 ** Research Blurhash srcset ** Mediawiki new version CSS and JS fixes: Search + Editor Fullscreen + all pages, nocache cookie, reduced dependencies ** SVGs for Kicksecure logos ** Research hiding repetetive text parts from search bots ** DebugViaUrlModal upgrades * 2022-12-09 ** Outreach thank you mail HTML and mail body + send security discussion * 2022-12-08 ** Discussion thank you message ** Research Multipart-Mime Emails Research + Discussion + Technology outline ** Outreach thank you mail template * 2022-12-07 ** Whonix Exposé 100% ** Outreach communication ** ShareTooltip Markdown bugfix ** Thank you message research * 2022-12-06 ** Video via nginx discussion ** research combine CSS/JS or not ** CSS column bugfix ** Real World attacks page ** Whonix Exposé 60% * 2022-12-05 ** Prevent Enhance Headlines feature + Template + documentation ** HTML5 video on demand HLS DASH etc discussion ** Preloading fonts in Headscript ** HTML5 video play (speed) bug fix ** Templates tcc bug examination ** Page_homepage.css loading discussion * 2022-12-02 ** Whonix Youtube channel go live ** strategy discussion ** Footer Youtube and Invidious buttons ** Whonix Homepage Play button * 2022-12-01 ** Whonix outreach communication ** Whonix 003 Video final render * 2022-11-30 ** Whonix 003 Video review + improvements + title image ** Whonix outreach communication ** deep exif and ffprobe checks for all videos ** Kicksecure welcome page all resolutions ** HTML5-Video research ** Strategy discussion ** created Bitchute channel * 2022-11-29 ** Whonix 003 Video Cut 100% * 2022-11-28 ** Tab Controller new Feature nested tabs ** Outreach artist reviews and communication ** Elementary IO compare HP search for our own communication improvements ** Outreach strategy discussion ** Page speed analysis and improvement suggestions ** Outreach video pre-production * 2022-11-25 ** Odysee and Rumble accounts created ** Footer improvement discussion ** ShareTooltip alt attr improvements ** outreach video script upgrade and discussion ** Whonix outreach communication ** Replace vm and host live mode links ** Analysed Whonix Host page * 2022-11-24 ** Bugfix EOY donation banner contentforSlideserror + refactoring + deploy to Kicksecure and Whonix ** Whonix outreach communication ** Bugfix: Kicksecure Welcome page long screen bug + Whonix checkup for bug (no problems) + newest version EOY donation banner + close button bugfix ** Whonix Forum Post count CSS fix ** Kicksecure + Whonix Donate pages now MultiWiki ** Share Tooltip Selector Bugfix * 2022-11-23 ** Whonix outreach communication ** Forums End of year banner + onion compatible + tor testing ** HTML/CSS validate errors fixed (there was a W3C error) ** Whonix Forum Search bar Support Link via JS ** Sitenotice Speedup Kicksecure + Whonix + performance test + documentation ** Dispora link for Whonix footer ** Whonix Live Mode page 50% * 2022-11-22 ** Forums CORS Research together with admin ** mw-combine now copies the src files to "src-copy" folder too for different use cases ** Whonix forum: mixed content error research ** archive link selector bugfix ** Forum end of year banner 50% ** wiki end of year banner performance testing ** Whonix welcome page static HTML end of year banner ** Wiki End of year banner Page speed-up research * 2022-11-18 ** Local Browser HP *** Play button bugfix *** Payment-links fix *** Tor Research solution attempts *** Fix cookie by using localstorage *** jquery depedency from debian package *** Documentation * 2022-11-17 ** Mediaviewer CSS fix ** Preparation Whonix Live page * 2022-11-16 ** EndOfYear for local welcome pages 100% *** deploy to Whonix and Kicksecure *** Date limit, not shown after 2022-12-31 *** Move whonix local welcome page endofyear library source to kicksecure local welcome page *** Dismiss close animation *** documentation [[Dev/mediawiki#SiteNotice_End_Of_Year_Banner]] ** Whonix outreach communication * 2022-11-15 ** Whonix outreach communication ** EndOfYear finalization, smooth fadeIn, customizable title, nojs, deployed to Wikis ** Changed Whonix forums search text ** Changed Whonix and Kicksecure navigation ** EndOfYear for Kicksecure local HP 30% * 2022-11-14 ** Whonix Forum Archive symbol fix ** EndOfYear crypto-adresses, donate-button-mobile, cookie for dismissing, make it param-generic, content shift prevention, tests and preparation to deploy to forums * 2022-11-12 ** Grub-live and USB_installation pages improvements ** EndOfYear Banner 95% ** PayViaPaypal as jQueryExtention ** Whonix forums topics mobile design bugfix ** Donate page panel mobile + learn more * 2022-11-11 ** Whonix outreach + donations discussion ** EndOfYear Banner 30% * 2022-11-10 ** Kicksecure [[Live_Mode]] page creation 100% done ** fontsize CSS helper classes + documentation ** [[Grub-live]] page revision 100% done ** [[:Template:live]] navigation update and redirects from former VM_Live_Mode and Host_Live_Mode pages ** Kicksecure [[USB_Installation]] page review 100% * 2022-11-09 ** Discussion LiveMode and Marketing ** Kicksecure new Live Mode page 30% * 2022-11-08 ** Whonix outreach communication ** Possible shop research and discussion ** Kicksecure GUI images ** Discourse No Jump + Mobile fixes + documentation ** Live Mode content review * 2022-11-07 ** Encrypted Support v1.1 deploy attemps ** Kicksecure Logo Telegram fix ** Discourse forums documentation ** Discourse forums footer + research * 2022-11-04 ** Encrypted support v1.1 - 100% ** https://www.whonix.org/wiki/DoNot - complete content review and many user friendly rewrites * 2022-11-03 ** Kicksecure Forum new images + new categoris ** Kicksecure and Whonix forums legal banner ** Kicksecure and Whonix forums Nojs research and solution ** Encrypted support v1.1 - 20% * 2022-11-02 ** Virtualbox transfer to Whonix ** Forum improvements for Kicksecure and Whonix ** new Whonix forum category images ** Kicksecure logo re-imagining suggestions * 2022-11-01 ** Hidden text danger demonstration Nojs fix ** [[VirtualBox]] page improvements ** Content discussions and improvements ** [[VirtualBox]] page improvements ** General print version improvements of Whonix and Kicksecure ** mw-combine improvements ** Newsletter research ** Whonix outreach voice actor research * 2022-10-31 ** Whonix FAQ improvements, analysis of texts and rewrites * 2022-10-28 ** Integration of Whonix new tor explainer images ** Kicksecure Livemode promo image + HP integration ** Whonix About page improvements ** LeftRightImage Feature promo style ** LeftRightImage Feature imagelink + documentation ** mw-multi-wiki deploy ** Content and examples for [[Shell]] * 2022-10-27 ** Kicksecure internal welcome page image attribution ** skin pref admin documentation ** hide-all-banners noscript research ** CodeSelect insert-html-mode feature, see [[Dev/mediawiki#CodeSelect]] ** Whonix new tor explainer images * 2022-10-26 ** Kicksecure internal welcome page + CC search ** set-up of git repositories (especially new dark mode fork) * 2022-10-25 ** Dark Mode Firefox and Tor Browser research and suggestions ** Virtualbox and Whonix testing on Ubuntu ** Stage Server discussion ** Git deploy call ** Dark Mode Extension Fork + documentation [[Dev/mediawiki#Extension_Dark_Mode_.28Fork.29]] * 2022-10-24 ** Multiwiki/LocalWiki refactoring + documentation ** EditorMultiwikiNotice new + onion feature + documentation see [[Dev/mediawiki#EditorMultiwikiNotice]] ** Whonix wiki old mw-combine quickfix, later revert to stable ** Whonix outreach campaign communication * 2022-10-23 ** Sitenotice mobile scaling bugfix ** Multiwiki/LocalWiki refactoring + documentation * 2022-10-22 ** Mw-combine php notice fix ** new feature TabContentController js, css, nojs, content shift prevention and documentation [[Dev/mediawiki#Tab_Content_Controller]] ** Refactoring of [[Template:VirtualBox_Host_Software_Installation]] with TabContentController * 2022-10-21 ** ShareToolTip markdown/phpbb anchor upgrades bugfixes testing documentation ** Custom footer research + overlay fix ** Footer Randomnews replacement ** Dark mode button for custom footer ** CSS fixes for editorautobackup ** Multiwiki deploy of new features to Whonix and testing * 2022-10-20 ** ShareToolTip upgrade + Clipboard options ** Dark Mode bugfix research + fix ** Footer overlays important review tools research and solution suggestions ** Whonix outreach campaign communication * 2022-10-19 ** Whonix outreach campaign communication ** prevent Sitenotice Content Shift banner and documentation, see [[Dev/mediawiki#SiteNotice_Donation_Banner]] ** CodeSelect Image Button Version and documentation, see [[Dev/mediawiki#CodeSelect]] ** Multiwiki deploy of new features to Whonix and testing * 2022-10-15 ** Research on how to prevent content jumps for Sitenotice. New documentation in [[Dev/mediawiki#SiteNotice_Donation_Banner]] under "Sitenotice display cycle" ** Pageload timing method and pageload url param in {{CustomRepo|MwCombineJsWrapper.js}} ** Performance testing documentation: [[Dev/mediawiki#Performance_Testing]] ** Whonix outreach campaign communication * 2022-10-14 ** Kicksecure + Whonix 2 new HP features ** SiteNotice Layout Shift research and suggestion ** Performance Tests Page [[PerformanceTests]] created ** 2 JS Performance fns created in {{CustomRepo|JsPerformanceTests.js}} * 2022-10-13 ** Kicksecure homepage updated like Whonix HP (structure, css, fns, content) ** added Kicksecure HP Features ** changed Kicksecure HP cumulative changed metric from 0.24 → 0.02 by predictable image sizes ** seo images research * 2022-10-12 ** ShareTooltip new Sharing Options ** Whonix HP content shift reduction and speed optimizations ** Kicksecure HP Features + Upgrade 50% * 2022-10-11 ** new Debug via URL Modal, see [[Dev/mediawiki#Debug-via-url-modal]] + documentation ** porting to Whonix ** mw-combine finalization and dontload options ** new {{CustomRepo|MwCombineJsWrapper.js}} for mw-combine. For user transparency ** Updated Javascript documentation [[Dev/mediawiki#Javascript_specific]] * 2022-10-10 ** Review outreach storyboard and corrections ** new landing page feature cards ** mw-combine more dontload options ** landing page pagespeed optimizations * 2022-10-09 ** Meeting pagespeed analysis and optimization + documentation * 2022-10-08 ** Headline Bug (hidden behind padding) ** gtmetrix / pagespeed analysis – performance test strategy ** new image for everything Tor * 2022-10-07 ** ShareTooltip upgrade as jQuery Extension ** CodeSelect upgrade as jQuery Extension ** Creation EnhanceHeadlines ** Deployment to Kicksecure and Whonix ** Testing ** Documentation ** Homepage new features cards and images * 2022-10-01 ** realization contractor communication, negotiation and clarification * 2022-09-30 ** Script 003 outreach improvements and realization contractor research and communication * 2022-09-29 ** Script 003 outreach preproduction: storyboard (incl. texts, images, restructuring) * 2022-09-28 ** Shortened rewrite Script 003 outreach ** discussion privacy first mobile operating systems ** small bugfix leftRightImage * 2022-09-23 ** Script 003 outreach ** Whonix installation and virtualbox testing ** documentation * 2022-09-22 ** ShareTooltip further upgrades and finalization ** user group promo texts and images collage * 2022-09-21 ** outreach artwork finalization ** ShareTooltip, bugfix, documentation and deployment * 2022-09-20 ** ShareTooltip upgrades and revisions ** outreach artwork reviews * 2022-09-19 ** Introduction of ShareTooltip component ** work on social media strategy * 2022-09-16 ** User Groups concept images ** coordination with artist ** Homepage new image Linux account separation research ** Homepage tooltip upgrade ** Homepage link symbol repositioning * 2022-09-15 ** review and improvement Main_Page ** new [[Template:LeftRightImageText]] + documentation ** upgrade [[Widget:Download_Button]] (scalable by fontsize) + documenation ** review of About, Features, FAQ and more * 2022-09-13 ** Homepage clickable boxes logos ** Homepage apps Section alignment ** improved intro paragraph * 2022-09-12 ** Download page optimization ** video content script and review ** new feature Left-Right Image Text * 2022-09-09 ** video content script ** video content banner * 2022-09-08 ** video content logo, setup, texts * 2022-09-07 ** bugfix Modal Search ** bugfix EditorSave ** video content production * 2022-09-06 ** new promo images ** MiniModal vertical cut fix ** video content production * 2022-09-02 ** Homepage fixes ** new promo images * 2022-09-01 ** Homepage content review ** new promo images ** improved modals ** mobile fix for section press * 2022-08-31 ** Upgraded [[Dev/mediawiki#Mini_Modal]] ** Upgraded [[Dev/mediawiki#Editor_SaveAndContinue]] ** created new Element Col Container see [[Dev/mediawiki#Col_Container]] ** Improved Whonix Homepage * 2022-08-30 ** Improved Whonix Homepage ** Improved images ** Improved Whonix Main_Page * 2022-08-29 ** new tool Icon-Bullet-List widget, CSS and documentation ** new CSS feature Color Schemes + documentation ** new feature vspacer ** improved Download Button onion link ** Fixed hidden banner issue * 2022-08-25 ** Whonix content production * 2022-08-24 ** Whonix content production ** table icon improvements: Whonix comparison with VPNs * 2022-08-23 ** New tool: info-tooltip ** added new nojs-classes ** new {{CustomRepo|Pages.js}} ** table improvements: Whonix comparison with VPNs * 2022-08-22 ** Whonix webpage improvement, table Whonix comparison with VPNs * 2022-08-20 ** Whonix content production * 2022-08-18 ** Whonix content production * 2022-08-17 ** Content Review ** improved https://www.whonix.org/wiki/Contribute ** Mininav upgrade for external links ** reverted Download-Button back to widget ** converted Responsive Thumbnail into template ** created intro paragraph design class * 2022-08-16 ** Content Review * 2022-08-15 ** CSS and JS validation and review with linters ** reviewed and changed mobile.js ** improved hide-enlarge * 2022-08-05 ** Improvement on Whonix Homepage * 2022-08-04 ** Javascript Dom Timing bug research ** Mediawiki Newline Bug research and report * 2022-08-03 ** Improved mw-combine allow comments in build.js and docu ** changed from Widget to Template Download-button ** Kicksecure HP mobile fixes ** TOC level switcher upgrade ** MediaWiki newline bug research ** small Headscript content upgrades * 2022-08-02 ** Fix Sitenotice only visible on pages with localSkin ** small Homepage fix ** Thumbnails fix ** Deploy Fixing ** CSS Refactoring ** Headscript content upgraded * 2022-08-01 ** HeadScript Upgrade nojs.css ** headscript-upgrade nojs.css ** Template Header minified ** CSS Extension review ** Kicksecure Footer fix ** Documentation of new include concept * 2022-07-30 ** HeadScript Upgrade mw-autogen ** mw-combine.php ** headscript-content.php ** refactored existing JS files * 2022-07-29 ** Javascript research and development of new include concept with autogenerated JS and CSS * 2022-07-28 ** [[Dev/mediawiki#Wiki_Js_Loader]] - wikiJsLoader 100%, debug feature and documentation ** New design and level dependence feature for [[Dev/mediawiki#TOC_Level_Switcher]] ** [[Dev/mediawiki#Archive_link]] nofollow feature for onion links ** [[Dev/mediawiki#SearchModal]] was created to outsource the SearchModal from the Header ** [[Dev/mediawiki#Mini_Modal]] was upgraded with throwing new events * 2022-07-27 ** [[Dev/mediawiki#Wiki_Js_Loader]] - wikiJsLoader 95% and documentation * 2022-07-26 ** Fix [[Template:Box]] and [[Template:Mbox]] if-clauses ** Checked Whonix wiki exports all present in Kicksecure wiki ** Created Ahmia logo https://www.whonix.org/wiki/File:Search-ahmia.png * 2022-07-25 ** MultiWiki refactoring ** info-box improvement thumbs * 2022-07-22 ** Fix Vector 22 search mobile ** MultiWiki Restructure plan and Doc ** MiniModal Navi Fix ** EditorAutoBackup V2 plan * 2022-07-21 ** Docu Flagged Revisions ** Research, analysis, docu for skins ** Fix search for Vector 2022 skin ** Fix burger menu for Vector 2022 skin * 2021-07-20 ** Fix EditorAutoBackup all buttons working ** Fix and document Revision Bottom bar, see [[Dev/mediawiki#MediaWiki_limitations]] * 2022-07-18 ** restructuring of [[Dev/mediawiki]] finalization ** new module MiniModal ** new module EditorAutoBackup * 2022-07-16 ** Research regarding wgCanonicalNamespace ** restructuring of [[Dev/mediawiki]] * 2022-07-15 ** Whonix BIMI Logo SVG fix ** FlyInNotification converted to MultiWiki ** General MultiWiki conversion * 2022-07-14 ** Created badge and seal "Hardened by Kicksecure" [[Dev/Logo#Badge]] and [[Dev/Logo#Seal]] ** Fixed [[Signing_Key]] on Mobile ** Whonix BIMI Logo SVG created ** Finalized homepage ** Long lines fix https://www.whonix.org/wiki/Onionizing_Repositories#Footnotes ** Fixed Snowden Images https://github.com/EgoBits1/Whonix-Website/issues/2 * 2022-07-13 ** Continued and finished work on homepage. * 2022-07-12 ** og:image on all pages ** image for chroot ** fixed Kicksecure Text Logo ** improved [[Download]], [[Donate]] ** Kicksecure BIMI Logo SVG created ** improved Header and Header Menu ** created homepage and style first and second section * 2022-07-11 ** use-2-column class + documentation + already applied to https://www.kicksecure.com/w/index.php?title=Mobile_Phone_Security&stable=0#Espionage_Data_Harvesting ** Repaired "based on Kicksecure" image to fit frame on https://www.whonix.org/wiki/Homepage ** Design fix: Whonix News in Footer ** Design upgrade: TM and C symbols as images in Whonix Footer, R symbol prepaired in code to replace TM in the future ** Whonix Facebook Profile: Upgrade to 400x400px ** Updated [[Template:Supported Platforms Icons]] with new images ** New OG:images for Facebook, Twitter, Reddit, Github. New OG:images for Download sub pages ** Deployed images on Download subpages == Sprint 2021-12 to 2022-03 == * 2022-03-23 ** Tried to separate data of {{CustomRepo|FlyInNotification.js}} into separate JSON file. Failed because of insufficient Mediawiki Javascript content and data access API * 2022-03-19 ** Kicksecure new logo finalization ** data export to Kicksecure * 2022-03-18 ** Kicksecure logo new design * 2022-03-17 ** Welcome page finalization ** new improved version of Whonix concept image * 2022-03-16 ** Redesign Welcome page part 1 ** FlyInNotification improvements ** Upgrade of [[Template:Box]] * 2022-03-15 ** FlyInNotification finalization ** predictable column break classes für 3-column areas * 2022-03-10 ** creation of module FlyInNotification * 2022-03-09 ** Redesign of Homepage amendments * 2022-03-07 ** Redesign of Homepage finalization and made responsive * 2022-03-05 ** Redesign of Homepage part 2 * 2022-03-04 ** Redesign of Homepage part 1 * 2022-03-03 ** DownloadButton now responsive ** NoJS version of ExpandAll ** Mobile scrollbars * 2022-03-01 ** Make page responsive [[VirtualBox]] ** improved manually place anchors [[Template:Anchor]] ** fixed: header overlaps direct links ** Expand/Collapse All button beautified, improved functionality and Javascript rewritten ** beautified: [[Documentation]], [[Advanced Documentation]] and [[Design]] ** introduced: class "use-3-columns" and subclass "keep-together" [[Dev/mediawiki#class_use-3-columns]] * 2022-02-28 ** improved [[Template:Box]] and [[Template:Mbox]], see [[Dev/mediawiki#Box_and_MBox]] ** improved [[Template:DownloadTableUnified]] ** improved [[VirtualBox]] * 2022-02-26 ** improved [[Donate/Affiliate_Link]] ** introduced thumbs without enlarge Button ** improved Expand/Collapse button * 2022-02-25 ** [[Dev/wiki#JavaScript_vs_no-JavaScript|JavaScript vs no-JavaScript div tags]] ** improved [[Donate/PayPal]] ** improved design details of payment pages * 2022-02-24 ** images (.thumb, .thumbinner) made responsive, examples see [[Warning]] ** Donation panel, mininav, EUR page improvements ** Download_Button redirect feature * 2022-02-23 ** Improved donation panel: Payment links, design ** Improved our Extension:CSS fork, alternative inclusion method for local CSS ** further new Vector skin fixes: min-width * 2022-02-22 ** new Vector skin activated, resulting problems fixed ** 10 year banner: close improved, scaling for mobile * 2022-02-21 ** 10 year banner created ** SiteNotice improvements and fixes ** Php Notice Undefined Index fixes * 2022-02-12 ** realization PayPal module, see [[Dev/mediawiki#PayViaPaypal_module]] * 2022-02-11 ** donation panel Nojs solution ** donation panel realization and images for other payments * 2022-02-10 ** improved FullScreenEditor for CodeMirror ** improved donation panel * 2022-02-09 ** new NoJS classes available: [[Dev/mediawiki#NoJS-Only_classes]] * 2022-02-08 ** donation panel crypto section finished ** donation panel paypal section design finished * 2022-02-07 ** development start of donation panel ** creation of original QR logo * 2022-02-05 ** improved Header overlap: no found occurrences anymore. Plus documentation: [[Dev/mediawiki#Fixed_Header_Overlap_for_anchors]] ** improved Mininav style when item stack and for smaller displays ** research and documentation about DismissableSitenotice ** research and documentation about GDPR CookieWarning * 2022-02-04 ** SiteNotices beautified, enhanced via JS and documented ** Footnotes Newline in the normal html way again,
for newline ** BackToTopButton documentation ** Mediawiki notifications (e. g. "Your edit was saved") beautified for whonix theme and placed visibly below header * 2022-02-03 ** SaveAndContinue-Button: Modal improvement ** Back to Top Button introduced ** Rejected: Scrollable Table Bugfix - this is a result of the table being hidden in an invisible element, so not a bug. If the table is hidden is has no dimension and so it cannot "know" if its content is oversize ** Footnotes always respect newlines setting and discussion (later reverted) ** [[Widget:Download_Button]]: responsive for small displays (under 450px) * 2022-02-02 ** mini navigation (buttons on top of some pages) visually enhanced ** wiki edit preview our-footer overlaps save bar bugfix ** Archive_link: explained wrong "|onion={{QubesOS_onion}}" vs correct use "|onion=http://{{QubesOS_onion}}" * 2022-01-31 ** RandomNews for footer shortened and improved ** TOC hide/show improved * 2022-01-20 ** tables oversize solution introduced, also for mobile swipe indicator for oversize ** Download Page, supported icons improved * 2022-01-19 ** improvements for mediawiki search ** new mono font introduced ** pre alternative for special cases introduced ** table of contents jump paddings corrected * 2022-01-18 ** improved styles for tables, lists, blockquotes, pre, code etc * 2022-01-17 ** codeSelect Bugfixes and style improvements * 2022-01-15 ** Development of Extension:CSS fork with new functionality ** Header improved for JS users * 2022-01-14 ** Header overlapping jump targets fixed ** Vector Skin remove external link symbols ** Editor Fullscreen Feature for editor added ** Header made responsive down to 370px and optimized for mobile usability ** CodeSelect Nojs style fix + new parameter inline so multiple instances can be combined in one line {{CodeSelect|code=--target virtualbox|inline=true}}, {{CodeSelect|code=--target qcow2|inline=true}}, and {{CodeSelect|code=--target raw|inline=true}} * 2022-01-13: Completely new Header developed and installed ** Header is inserted as a Template and fixed to top ** Header features like the header form 2022-01-09 ** Completely Nojs and Mobile friendly * 2022-01-11: SaveAndContinue-Button: New JS-Feature for faster Development * 2022-01-10: Creation of BodyScript2 Mediawiki Extension * 2022-01-09: New Header developed ** Restructuring via Sidebar ** unifying all menus in one supermenu ** replacement of donate button ** Main Logo links to whonix.org ** nice hover effects ** Search in modal instead of box (for js users, else go to search page) * 2022-01-08: Nojs.css incorporated - styles exclusively for Nojs visitors * 2022-01-06: New footer incorporated ** new Style, better layout and ordering ** Bootstrap modals for content ** engaging action buttons ** Integration of whonix news * 2022-01-06: Bugfix Archive_link Onionshare mishandling (eg https://flathub.org/apps/details/org.onionshare.OnionShare), Bugfix Archive_link CSS not loaded in Tor browser. Other bugfixes. Subdomain_link improved. * 2022-01-03: Crypto address templates unified and Crypto address images unified * 2021-12-31: Footer RandomNews. Solution: RandomNews template was not available in Footer2 widget (because: widget), so RandomNews was called in Footer2-Template. In template it is hidden by CSS and the whonix random news section in footer is filled with generic text. If JS is available RandomNews are moved to Footer (true HTML widget area) * 2021-12-31: CodeSelect Improvements, Refinements #3. Green color and check mark if copy is clicked * 2021-12-30: CodeSelect Improvements ** after clicking the copy symbol, the copy symbol changes into a green checkmark, later changes back ** CodeSelect can be called as a template but also simply by
code
- essential for usage in Widgets * 2021-12-29: Footer subdomain fixes by protocol and apex domain for forums subdomain (whonix.org and .onion) * 2021-12-28: Footer redesigned * 2021-12-24: Template [[Template:Subdomain_link]] and [[Widget:Subdomain_link]] created (ability to link without knowing the website context) * 2021-12-23: CodeSelect further improved: less white space, more compact, better nojs-version, better js-animation * 2021-12-23: Combi task: External Links / Template + Widget Archive-Link ** Improved Mediawiki Extension "Link to archive" *** differentiate automatically between normal link, onion-link and link to web.archive.org *** Show logos instead of long "[archive]" text *** logo / title attribute / logo link href according to linked url: normal → archive symbol + archive link / onion → onion logo and onion link / archive link → archive logo and same link ** Template [[Template:Archive_link]] and [[Widget:Archive_link]] and {{CustomRepo|Archive_link.css}} created: Similar to "Link to archive", but you can choose if you want an archive link, onion link or both * 2021-12-21: Whonix Logo Format: discussed: jpeg and png specific use cases. And logo-text and logo delivered without padding * 2021-12-21: Whonix Logo finished ** last revision of logo submitted and accepted ** export accordning to guidelines: https://www.whonix.org/wiki/Dev/Logo ** no problems reported by reviewer * 2021-12-20: mediawiki skin selection ** Whonix? -> Keeping mediawiki skin Foreground and adding CSS fixes later. ** Kicksecure: Which skin should be used as foundation? -> Same but with different CSS to have distinctive styles/colors. * 2021-12-19: Colored Platform Icons, 500px*500px ** some icons pulled from web in better solution ** apple logo rights research. Seems using the logo is in most of the world public domain and in copyrighted jurisdictions logo is considered fair use and used by open source projects (means no licence) ** kvm logo complete redesign ** review/improve colored symbols for [[Template:Supported_Platforms_Icons]] since these are used on [[Download]] and whonix.org homepage * 2021-12-18: Whonix old logo refinement, old text removed, text "Whonix" redrawn * 2021-12-17: CodeSelect finished ** HTML restructured, Style improved ** direct copy button added, info tooltip added ** modernized und documented JS mechanic ** improved upon old mechanic with sidescrolling ** Non-JS compatible with similar style * 2021-12-16: Update Download Button VirtualBox wiki page Download Button: prettify and easier functionality * 2021-12-14: invoice template improvements * 2021-12-13: discuss (easy, not important): cannot click inspect on other websites * 2021-12-13 CSS very basic review. Answers for the following questions are desired: ** Is Whonix wiki currently using [[Mediawiki:Foreground.css]]? Yes. ** Is [[Mediawiki:Common.css]] currently in use? Also Yes. ** Advantages and disadvantages of merging these pages? -> No. Keep and [[Mediawiki:Common.css]] and [[Mediawiki:Foreground.css]] separate. Split into essentials (CSS for CodeSelect in [[Mediawiki:Common.css]]) and skin (Foreground) ([[Mediawiki:Foreground.css]]) specific. }} = nurmagoz = == newer == === 17 - 22/9/2024 === - Review / fix Dev/audio: https://www.kicksecure.com/wiki/Dev/audio - Testing KVM PipeWire Fix ticket https://forums.whonix.org/t/no-audio-with-spice-pipewire-halts-with-alsa-qemu-pipewire-unsupported/20341/4 https://gitlab.com/qemu-project/qemu/-/issues/2561#note_2123338529 Forums: https://forums.whonix.org/t/running-whonix-vms-on-android-phone/20412/6 https://forums.whonix.org/t/vanguards-additional-protections-for-tor-onion-services/8064/29 https://forums.whonix.org/t/warning-flatpak-system-operation-deploy-not-allowed-for-user/20393/5 https://forums.whonix.org/t/qubes-sudo-su-root-hardening-development-discussion/8561/40 https://forums.whonix.org/t/no-audio-with-spice-pipewire-halts-with-alsa-qemu-pipewire-unsupported/20341/5 Github: https://github.com/flatpak/flatpak/issues/5937 https://github.com/QubesOS/qubes-issues/issues/9459 === 10 - 16/9/2024 === Tested New Point Release: (So as .6) https://download.kicksecure.com/ova/17.2.2.7/ https://download.whonix.org/ova/17.2.2.7/ test AC97 audio test Intel HD audio Tested Whonix Windows Installer: https://download.whonix.org/windows/17.2.2.7/ It comes with virtualbox 7.1 KVM libvirt xml improvements - enable 3D: https://forums.whonix.org/t/how-to-enable-3d-acceleration-in-kvm/16501/18 https://github.com/Kicksecure/libvirt-dist/blob/master/usr/share/libvirt-dist/xml/Whonix-Workstation.xml https://github.com/Kicksecure/libvirt-dist/blob/master/usr/share/libvirt-dist/xml/Whonix-Custom-Workstation.xml https://github.com/Kicksecure/libvirt-dist/blob/master/usr/share/libvirt-dist/xml/Kicksecure.xml https://github.com/Kicksecure/libvirt-dist/blob/master/usr/share/libvirt-dist/xml/Whonix-Gateway.xml KVM libvirt xml improvements - unit='MB': https://forums.whonix.org/t/stop-using-unit-kib-use-unit-mb-instead/20383 Added tab controller: https://www.kicksecure.com/wiki/VirtualBox/Other_Versions https://www.whonix.org/wiki/Template:Restart_Tor Forums: https://forums.whonix.org/t/kicksecure-17-2-2-0-unreleased-version-sound-driver-issue/20379 https://forums.whonix.org/t/whonix-virtualbox-integration-and-upgrades/11705/34 https://forums.whonix.org/t/virtualbox-intel-hd-audio-and-pipewire-incompatibility-audio-broken-after-increasing-ram-to-5-gb-no-sound-after-latest-updates-pipewire-bug/18211/21 https://forums.whonix.org/t/find-usr-lib-modules-6-1-0-25-amd64-kernel-drivers-xen-bad-message-unable-to-truncate-for-updated-status-of-security-misc-read-only-file-system/20345/4 Tickets: https://gitlab.freedesktop.org/pipewire/pipewire/-/issues/4263 https://gitlab.com/qemu-project/qemu/-/issues/2561 === 2 - 9/9/2024 === KVM 3D Documentation: https://www.whonix.org/wiki/KVM#3D_Graphics_Acceleration Upstream Tickets: https://gitlab.freedesktop.org/pipewire/pipewire/-/issues/4263 https://gitlab.com/qemu-project/qemu/-/issues/2561 illustrative image: https://forums.whonix.org/t/missing-libre-illustrative-images/3912/307 Forums: https://forums.whonix.org/t/find-usr-lib-modules-6-1-0-25-amd64-kernel-drivers-xen-bad-message-unable-to-truncate-for-updated-status-of-security-misc-read-only-file-system/20345 https://forums.whonix.org/t/audio-broken-after-increasing-ram-to-5-gb-no-sound-after-latest-updates-pipewire-bug/18211/11 https://forums.whonix.org/t/how-to-enable-3d-acceleration-in-kvm/16501/8 https://forums.whonix.org/t/virtualbox-7-0-20-results-in-errors-while-6-1-26-works-with-whonix-release-17-2-0-7/20337/4 https://forums.whonix.org/t/virt-gtk-experimental-alternative-to-virt-manager-better-perf-but-worse-sandboxing/20250/10 https://forums.whonix.org/t/no-audio-with-spice-pipewire-halts-with-alsa-qemu-pipewire-unsupported/20341 https://forums.whonix.org/t/sound-is-cleaner-with-pipewire-from-backports-on-virtualbox/20344 === 26/8 - 1/9/2024 === - libvirt upstream bug report https://lists.libvirt.org/archives/list/users@lists.libvirt.org/thread/6ZAUM545XYFC5E4PYH2BBXI3DGBJRCAJ/ - VirtualBox Hardware-accelerated Graphics Testing https://forums.whonix.org/t/virtualbox-3d-acceleration/8673/11 - Qubes ISO Documentation https://www.kicksecure.com/wiki/Qubes#ISO Forums: https://forums.whonix.org/t/virt-gtk-experimental-alternative-to-virt-manager-better-perf-but-worse-sandboxing/20250/7 https://forums.whonix.org/t/qubes-sudo-su-root-hardening-development-discussion/8561/35 https://forums.whonix.org/t/whonix-xfce-installer-cli-fails-on-kicksecure/20301/2 https://forums.whonix.org/t/whonix-virtualbox-integration-and-upgrades/11705/30 https://forums.whonix.org/t/proxmox-a-dedicated-kvm-platform-for-whonix/3733/40 Github: https://github.com/shutter-project/shutter/issues/688 https://github.com/shutter-project/shutter/issues/659#issuecomment-2294947191 === 16 - 25 /8/2024 === - Tested KVM without dnsmasq: https://forums.whonix.org/t/whonix-kvm-dnsmasq-listen-port-on-host-operating-system-attack-surface-reduction/15973/42 - Made many adjustment to OnionShare wiki page: https://www.whonix.org/wiki/OnionShare - Tested KVM 3D Graphics Acceleration: https://www.whonix.org/wiki/KVM#3D_Graphics_Acceleration https://forums.whonix.org/t/how-to-enable-3d-acceleration/16501/5 - Added tab controller to: https://www.whonix.org/wiki/KVM#Install_KVM https://www.kicksecure.com/wiki/Spectre_Meltdown#Platform_Specific https://www.kicksecure.com/wiki/Spectre_Meltdown#Install_Microcode_Package https://www.kicksecure.com/wiki/Recovery#Serial_Console - Tested KVM random limit test https://forums.whonix.org/t/help-welcome-kvm-development-staying-the-course/166/583 Forums: https://forums.whonix.org/t/onionshare-on-whonix-workstation-how-to-connect-to-tor/20174/3 https://forums.whonix.org/t/blocking-certain-applications-from-accessing-internet/20247/2 https://forums.whonix.org/t/virt-gtk-experimental-alternative-to-virt-manager-better-perf-but-worse-sandboxing/20250/7 Github: https://github.com/Kicksecure/libvirt-dist/pull/111#event-13893986296 https://github.com/Kicksecure/libvirt-dist/pull/112#event-13893984607 === 13 - 15/18/2024 === - Migrated https://www.whonix.org/wiki/Spectre_Meltdown to Kicksecure wiki - Tested onionshare instructions on whonix - VirtualBox netstat comparison before and after whonix installation - Tried no dns for VMs in KVM and no dnsmasq with PR for Internal/External Whonix network: https://forums.whonix.org/t/whonix-kvm-dnsmasq-listen-port-on-host-operating-system-attack-surface-reduction/15973/36 Forums: https://forums.whonix.org/t/very-hard-to-notice-phishing-scam-firefox-tor-browser-url-not-showing-real-domain-name-homograph-attack-punycode/8373/15 https://forums.whonix.org/t/what-is-whonix-xfce-17-0-3-0-ova/20221/6 https://forums.whonix.org/t/nixos-distro-preview/19883/5 https://forums.whonix.org/t/running-android-apps-inside-whonix-workstation-waydroid/16911/5 https://forums.whonix.org/t/lxqt-wayland-support/18178/4 https://forums.whonix.org/t/change-default-shell-from-bash-to-zsh-by-default/14792/164 === 09/7 - 12/18/2024 === - Added screenshots to: https://www.kicksecure.com/wiki/Secure_Boot#Secure_Boot_DKMS_Signing_Key_Enrollment https://www.kicksecure.com/wiki/Desktop#Disable_Autologin https://www.kicksecure.com/wiki/Protection_Against_Physical_Attacks#Login_Screen https://www.kicksecure.com/wiki/Login#Graphical_Login_Screen https://www.kicksecure.com/wiki/Login#Console_Login_Screen https://www.kicksecure.com/wiki/Grub#GRUB_Encryption_Password_Prompt - Added screenshots with tabs and text: https://www.kicksecure.com/wiki/Debian#Install_the_Kicksecure_Package https://www.kicksecure.com/wiki/Recovery#Boot_Virtual_Machine_from_ISO_instead_of_Virtual_Hard_Drive - URL migration: https://www.whonix.org/wiki/Dev/Expected_Build_Warnings - Documented: https://www.kicksecure.com/wiki/Timezone - Forum: https://forums.whonix.org/t/qubes-sudo-su-root-hardening-development-discussion/8561/29 https://forums.whonix.org/t/debian-12-live-to-mount-encrypted-ssd/20192/11 https://forums.whonix.org/t/help-welcome-kvm-development-staying-the-course/166/574 https://forums.whonix.org/t/haveged-entropy-daemon/17158/8 https://forums.whonix.org/t/whonix-gateway-systemcheck-whonixcheck-no-longer-automatically-starting-at-first-boot/20175/2 https://forums.whonix.org/t/missing-libre-illustrative-images/3912/305 https://forums.whonix.org/t/i-cant-connect/19597/5 https://forums.whonix.org/t/whonix-gw-will-not-run-anon-connection-wizard-thus-no-internet-connect-there-is-workaround/18405/3 https://forums.whonix.org/t/monero-integration-in-whonix/5949/90 https://forums.whonix.org/t/change-default-shell-from-bash-to-zsh-by-default/14792/163 Tickets: https://github.com/QubesOS/qubes-issues/issues/9251 https://github.com/NixOS/nixpkgs/issues/314887 https://github.com/QubesOS/qubes-issues/issues/9343 https://github.com/QubesOS/qubes-issues/issues/9344 https://github.com/QubesOS/qubes-issues/issues/9374 https://gitlab.com/bztsrc/usbimager/-/issues/151 (usbimager interface improvement ticket) === 01/5 - 08/7/2024 === - Bureaucracy https://forums.whonix.org/t/keepassxc-browser-doesnt-work-out-of-the-box/16877/7 https://forums.whonix.org/t/lxde-wayland-support/17388/5 https://forums.whonix.org/t/remove-hexchat-unmaintained/18391/10 https://forums.whonix.org/t/anon-gpg-tweaks-gpg-conf-enhancements-duraconf-a-collection-of-hardened-configuration-files/5378/24 https://forums.whonix.org/t/sudo-su-sorry-try-again-3-incorrect-password/19833/2 https://forums.whonix.org/t/install-catfish-file-searching-tool-xfce-de-by-default/19837 https://forums.whonix.org/t/include-monero-wallet-again/19871/2 https://forums.whonix.org/t/sudo-virsh-c-qemu-system-define-whonix-gateway-xml-error-failed-to-define-domain-from-whonix-gateway-xfce-17-0-3-0-xml-erdomain-configuration-does-not-support-video-model-virtio/19874/2 https://forums.whonix.org/t/desktop-renders-slowly-despite-high-resource-spec/19727/2 https://forums.whonix.org/t/i-cant-connect/19597/3 https://forums.whonix.org/t/help-welcome-kvm-development-staying-the-course/166/554 https://forums.whonix.org/t/using-nixos-would-allow-us-to-implement-both-live-usb-and-stateless/8790/5 https://forums.whonix.org/t/nixos-distro-preview/19883 https://forums.whonix.org/t/tinyproxy-config/19885/2 https://forums.whonix.org/t/help-welcome-kvm-development-staying-the-course/166/557 https://forums.whonix.org/t/onion-search-engine/19898/2 https://forums.whonix.org/t/permission-denied-with-flatpak-sys-block/15781/10 https://forums.whonix.org/t/flatpak-warning-failed-to-get-revokefs-fuse-socket-from-system-helper-flatpak-system-operation-getrevokefsfd-not-allowed-for-user/19906 https://forums.whonix.org/t/change-default-shell-from-bash-to-zsh-by-default/14792/160 https://forums.whonix.org/t/restrict-hardware-information-to-root-testers-wanted/8618/59 https://forums.whonix.org/t/monero-integration-in-whonix/5949/90 https://github.com/QubesOS/qubes-issues/issues/9087 === 15/3- 25/4/2024 === - Wiki fixes (shifting pages, correcting redirects, fixing URLs) - Testing kicksecure/Whonix releases (specially kicksecure .iso) - Adding illustration images - Bureaucracy https://forums.whonix.org/t/i-cant-see-the-whonix-dekstop/19545/2 https://forums.whonix.org/t/mouse-extra-buttons-not-working-on-vmware/19602/2 https://forums.whonix.org/t/i-cant-connect/19597/2 https://forums.whonix.org/t/hiddenvm-project-best-solution-available/10732/8 https://forums.whonix.org/t/does-enabling-flathub-repository-has-any-security-impact/19625/2 https://forums.whonix.org/t/suggest-trustworthy-tor-hidden-services-as-time-sources-for-sdwdate/856/241 https://forums.whonix.org/t/how-to-emulate-android-on-whonix-need-to-run-telegram/19681/2 https://forums.whonix.org/t/how-to-emulate-android-on-whonix-need-to-run-telegram/19681/5 https://forums.whonix.org/t/vless-reality-proxy-tor-can-the-vps-provider-see-the-traffic/19573/11 https://forums.whonix.org/t/bridge-request-tool-anon-connection-wizard-tor-control-panel-moat/19680/2 https://forums.whonix.org/t/csp-content-security-policy-denial-of-service/19673/2 https://github.com/QubesOS/qubes-issues/issues/9045 https://github.com/flathub/org.xfce.mousepad/issues/48 https://github.com/QubesOS/qubes-issues/issues/9152 https://github.com/Kicksecure/sdwdate/pull/48 === 26/2 - 14/3/2024 === - Tested whonix, kicksecure releases - Finished whonix wiki link fixes - Fixed some texts in whonix wiki https://forums.whonix.org/t/riseup-email-sucks/19511/5 https://forums.whonix.org/t/error-s-when-importing-vm-templates-kvm/19464/3 https://forums.whonix.org/t/gateway-to-tor-or-not-to-tor/19534/4 https://github.com/QubesOS/qubes-issues/issues/9025 https://github.com/QubesOS/qubes-issues/issues/1590#issuecomment-1969826818 https://github.com/QubesOS/qubes-issues/issues/8896#issuecomment-1960560934 === 16-25/2/2024 === - Removed multiple dead wikis from whonix and kicksecure https://www.kicksecure.com/wiki/Hardened_Malloc_Light https://www.kicksecure.com/wiki/Hardened_Malloc https://www.kicksecure.com/wiki/Hardened_Malloc/Manual_Installation https://www.kicksecure.com/wiki/Linux_Kernel_Runtime_Guard_LKRG - Providing logs for KVM to compare it and help MAC support: https://forums.whonix.org/t/whonix-on-mac-m1-arm-development-discussion/14136/28 https://www.whonix.org/wiki/Dev/KVM#Audit_Output_of_virsh_domxml-to-native - Testing new Apparmor profile with TB https://forums.whonix.org/t/cannot-upload-files-with-tor-browser-apparmor-issue/18243/19 - Testing pipewire functionality in qubes: https://github.com/QubesOS/qubes-issues/issues/8896 - Added missing illustration image === 15/2/2024 === - Testing KVM CPUinfo: https://www.whonix.org/w/index.php?title=Protocol-Leak-Protection_and_Fingerprinting-Protection&stable=0#KVM_Whonix-Workstation_17_/proc/cpuinfo - Removed hexchat from the wiki and fixed some wiki text https://forums.whonix.org/t/remove-hexchat-unmaintained/18391/8 https://forums.whonix.org/t/whonix-gw-will-not-run-anon-connection-wizard-thus-no-internet-connect-there-is-workaround/18405 https://forums.whonix.org/t/guest-systems-sees-cpu-of-the-host/1413/29 === 1-14/2/2024 === - Removed all links to: https://www.whonix.org/wiki/Special:WhatLinksHere/Mixmaster https://www.whonix.org/wiki/Special:WhatLinksHere/Nymservers https://www.whonix.org/wiki/Special:WhatLinksHere/JonDonym https://www.whonix.org/wiki/Special:WhatLinksHere/Remailer - Moved unwanted parts to deprecated page. - Fixed Whonix broken URLs === 15-30/1/2024 === - Testing whonix/kicksecure with vbox features (TPM, UEFI) - Testing OpenSUSE and check packages - Finished re-checking Kicksecure broken links - Uploaded missing illustrative images - Lower progress due to taking cold (sick) --------------------------- == older == === 25-31/8/2023 === * Testing Whonix/Kicksecure new releases * Finished Kicksecure URLs checkup https://forums.whonix.org/t/suggest-trustworthy-tor-hidden-services-as-time-sources-for-sdwdate/856/236 https://forums.whonix.org/t/tor-browser-crashes-in-whonix-16-with-hardened-malloc/17209/5 https://forums.whonix.org/t/hardened-malloc-hardened-memory-allocator/7474/201 https://forums.whonix.org/t/vbox-occasionally-hangs-while-maxing-out-host-disk-read/17207/2 https://forums.whonix.org/t/i2p-client-inside-whonix-workstation-issues/15890/62 https://forums.whonix.org/t/help-welcome-kvm-development-staying-the-course/166/539 https://forums.whonix.org/t/debian-12-kvm-with-firwalld-nftables-wont-work-there-is-workaround/17203 https://forums.whonix.org/t/help-welcome-kvm-development-staying-the-course/166/538 https://forums.whonix.org/t/when-tails-can-connect-but-whonix-cannot-what-is-the-reason/17188/5 https://forums.whonix.org/t/error-invalid-argument-could-not-get-preferred-machine-for-usr-bin-qemu-system-x86-64-type-kvm/17184 https://forums.whonix.org/t/tor-is-not-yet-fully-bootstrapped-30-done/8792/26 https://forums.whonix.org/t/guest-has-not-initialized-the-display-yet-kali-linux-host/17141/4 https://forums.whonix.org/t/haveged-entropy-daemon/17158/3 === 24/8/2023 === * Testing and identifying discourse breakage issue with TB on safest (notified both forums). * Adding new illustration images. * Testing whonix and kicksecure new releases. * Added war on gnu license and the importance of it https://meta.discourse.org/t/broken-page-load-navigating-discourse-with-tor-browser-on-safest-security-setting-noscript-active/274837/9 https://forums.whonix.org/t/livecheck-sh-issue/17118/2 === 23/8/2023 === * Learning and Adding new Quotation template. https://forums.whonix.org/t/which-editor-is-safe-dear-whonix-community/17105/8 https://forums.whonix.org/t/worried-about-whonix-tor-always-same-fucking-exit-node/17084/9 https://forums.whonix.org/t/which-editor-is-safe-dear-whonix-community/17105/6 https://forums.whonix.org/t/which-editor-is-safe-dear-whonix-community/17105/8 https://forums.whonix.org/t/tor-controller-gui-tor-control-panel/5444/96 https://forums.whonix.org/t/how-protect-bug-downfall-cpu-exploit-meltdown-spectre/17111/2 === 22/8/2023 === * OFF === 20-21/8/2023 === * Bureaucracy * Adding new social media which is gnusocial jp * Organizing Social media profiles wiki page for whonix and kicksecure * Uploaded kicksecure and whonix vbox gui/cli screenshots * Migrating /dev/curl bash and pipe * Added tab controller to: https://www.whonix.org/wiki/Other_Operating_Systems#Easy https://www.whonix.org/wiki/Other_Operating_Systems#Whonix-GNU.2FLinux-Workstation https://www.whonix.org/wiki/Other_Operating_Systems#VM_settings https://www.kicksecure.com/wiki/Grow_Virtual_Harddisk https://www.kicksecure.com/wiki/Shrink_Virtual_Harddisk https://forums.whonix.org/t/how-protect-anonymous/17111 https://forums.whonix.org/t/which-editor-is-safe-dear-whonix-community/17105/2 https://forums.whonix.org/t/do-paravirtualized-devices-pose-a-security-risk-to-the-host-and-other-vms-on-it/17106/2 https://forums.whonix.org/t/worried-about-whonix-tor-always-same-fucking-exit-node/17084/6 https://forums.whonix.org/t/help-welcome-kvm-development-staying-the-course/166/532 https://forums.whonix.org/t/jmp-mobile-number-through-jabber-no-sim-card-or-mobile-phone-needed/11050/16 === 19/8/2023 === * Adding tabs to Tips_on_Remaining_Anonymous#Avoid_(Mobile)_Phone_Verification_(Use_only_with_caution) * Fixing SecBrowser wiki page text * Spreading news about new whonix/kicksecure TLS hardening configs https://forums.whonix.org/t/tls-with-its-highest-available-security-options/17098 https://forums.whonix.org/t/unsupported-qcow2-feature-extended-l2-entries/17060/3 https://forums.whonix.org/t/worried-about-whonix-tor-always-same-fucking-exit-node/17084/4 https://forums.whonix.org/t/is-type-2-hypervisor-more-safe-than-type-1-hypervisor/17085/2 === 17-18/8/2023 === OFF === 15-16/8/2023 === * Testing kloak in non-qubes * Researching GNU app installation * Researching android -> GNU backup * Clearing https-everywhere mention from the wiki since its deprecated * Renewing [https://forums.whonix.org/t/list-of-hosting-providers-that-accept-cryptocurrencies-as-payment/8502 Hosts that accept cryptocurrencies] for their payment https://forums.whonix.org/t/forcing-onion-on-whonix-org/510/18 === 13-14/8/2023 === * Bureaucracy * Making draft for social media spread of Whonix TLS improvement https://forums.whonix.org/t/discourse-integration-change-whonix-forum-software-to-discourse/1181/41 https://forums.whonix.org/t/monero-integration-in-whonix/5949/80 https://forums.whonix.org/t/new-qubes-website-new-whonix-website/1736/169 https://forums.whonix.org/t/windows-whonix-workstation-in-kvm/17039/5 https://forums.whonix.org/t/ubuntu-lagging/17038/6 https://forums.whonix.org/t/sdwdate-and-sdwdate-gui-development-thread/1137/395 https://github.com/monero-project/monero-gui/issues/4206 https://gitlab.torproject.org/tpo/applications/tor-browser/-/issues/42011 https://meta.discourse.org/t/broken-page-load-navigating-discourse-with-tor-browser-on-safest-security-setting-noscript-active/274837 === 11-12/8/2023 === OFF === 8-10/8/2023 === * Bureaucracy * Fixing kicksecure broken links (partial full finish) * Fixing new icons for verify page * Retesting page /Testing for vbox * Reporting discourse nojs issue https://github.com/Kicksecure/anon-apt-sources-list/pull/1 https://github.com/QubesOS/qubes-issues/issues/8413 https://forums.whonix.org/t/restrict-hardware-information-to-root-testers-wanted/8618/55 https://forums.whonix.org/t/discourse-integration-change-whonix-forum-software-to-discourse/1181/34 === 6-7/8/2023 === * Bureaucracy * Reporting bugs and features for mediawiki * Finished adding tabs (+upload new images) and fixing text to: https://www.kicksecure.com/wiki/Verify_the_virtual_machine_images https://www.kicksecure.com/wiki/VirtualBox/Other_Versions#Install_from_VirtualBox.org_Repository https://github.com/QubesOS/qubes-issues/issues/8400 === 4-5/8/2023 === OFF === 3/8/2023 === * Finished Qubes Disposable wiki * Finished Kicksecure verification steps wiki === 1 - 2/8/2023 === * Looking on Qubes Disposables page in thoroughly way * Working on Kicksecure verification steps wiki https://forums.whonix.org/t/sys-whonix-dom0-updates-failing-on-qubes-r4-1-with-qubes-whonix-16/16998 https://forums.whonix.org/t/onion-xmpp-connections-over-whonix/16993/2 https://github.com/QubesOS/qubes-builder-debian/pull/77#issuecomment-1660158921 https://github.com/waydroid/waydroid/issues/1027#issuecomment-1660419839 === 31/7/2023 === * Bureaucracy * Investigating about gignet mirror to update their whonix images to latest * Verified and cleaned old todo list * Retested qubes-whonix dispvms * Tickets and Activities: https://forums.kicksecure.com/t/running-android-apps-inside-kicksecure-waydroid/304 https://github.com/QubesOS/qubes-issues/issues/8382 https://github.com/waydroid/waydroid/issues/1027 === 30/7/2023 === * Installing Waydroid on Kicksecure * Debugging sdwdate-gui systray in Qubes * Tickets and Activities: https://forums.whonix.org/t/workstation-black-screen-after-boot/16959/3 https://forums.whonix.org/t/note-installing-waydroid-will-remove-busybox-which-is-a-dep-to-kicksecure-dependencies-cli/16910/6 https://forums.whonix.org/t/virtualbox-workstation-and-gateway-weird-behavior/16970 https://forums.whonix.org/t/cloudflare-dns-sometimes-doesnt-resolve-main-whonix-mirror-properly/16956/3 https://forums.whonix.org/t/merge-2-menus-of-sdwdate-tray-better-ux/16900/17 https://forums.whonix.org/t/freenet-cant-connect-node/16962/2 https://forums.whonix.org/t/why-is-the-timezone-different/16971/4 https://forums.whonix.org/t/does-whonix-tb-differ-from-upstream/16969/2 https://github.com/waydroid/waydroid/issues/1027 https://github.com/webcompat/web-bugs/issues/125004#issuecomment-1657107180 === 28-29/7/2023 === OFF === 27/7/2023 === * Spread whonix new release to public forums and chats * Added tabs to https://www.whonix.org/wiki/Multiple_Whonix-Workstation#How-to:_Use_more_than_One_Whonix-Workstation_%E2%84%A2_-_Easy * Tickets and Activities: https://forums.whonix.org/t/missing-libre-illustrative-images/3912/291 https://forums.whonix.org/t/merge-2-menus-of-sdwdate-tray-better-ux/16900/13 === 26/7/2023 === * Discussion about signify and improving verification steps * Spread whonix release to social media * Tickets and Activities: https://forums.whonix.org/t/qubes-sudo-su-root-hardening-development-discussion/8561/18 https://forums.whonix.org/t/cloudflare-dns-sometimes-doesnt-resolve-main-whonix-mirror-properly/16956 === 25/7/2023 === * Learned and applied Tab Controller to https://www.whonix.org/wiki/Multiple_Whonix-Gateway * Tickets and Activities: Merged the wikis: https://forums.whonix.org/t/merge-2-menus-of-sdwdate-tray-better-ux/16900/12 === 24/7/2023 === * Bureaucracy === 23/7/2023 === * Communicate with whonix mirrors * Tickets and Activities: https://forums.whonix.org/t/i-need-ur-help-with-an-error-in-starting-virtual-machines-kvm/16940/3 https://forums.whonix.org/t/remove-unwanted-programs-delete-unnecessary-software/1905/9 https://forums.whonix.org/t/kswapd0-high-cpu-usage-on-whonix-17/16933/2 https://forums.whonix.org/t/i2p-client-inside-whonix-workstation-issues/15890/58 https://github.com/QubesOS/qubes-builder-debian/pull/75#event-9894816172 https://github.com/QubesOS/qubes-issues/issues/6566#issuecomment-1648515708 https://github.com/QubesOS/qubes-issues/issues/8369 === 21-22/7/2023 === OFF === 20/7/2023 === * Bureaucracy === 19/7/2023 === * Bureaucracy * Finished changing names wherever possible === 18/7/2023 === * Tested waydroid on whonix 17 * Tickets and Activities: https://forums.whonix.org/t/merge-2-menus-of-sdwdate-tray-better-ux/16900/7 https://forums.whonix.org/t/waydroid-and-whonix/13643/10 https://forums.whonix.org/t/whonix-ws-kvm-broken-due-to-reinstalled-security-misc/16902/5 https://forums.whonix.org/t/whonix-17-wont-work-directly-on-debian-12-bookworm-host-no-iptables/16903/2 https://forums.whonix.org/t/help-welcome-kvm-development-staying-the-course/166/528 https://forums.whonix.org/t/note-installing-waydroid-will-remove-busybox-which-is-a-dep-to-kicksecure-dependencies-cli/16910 https://forums.whonix.org/t/running-android-apps-inside-whonix-workstation-waydroid/16911 https://github.com/QubesOS/qubes-issues/issues/8365 https://github.com/waydroid/waydroid/issues/1006 https://github.com/waydroid/waydroid/issues/1007 === 17/7/2023 === * Bureaucracy * Tickets and Activities: ** Remove offline i2ps eepsites in whonix wiki ** Upgrade kicksecure to bookworm in amd and power9 ** Tested whonix 17 on kvm https://forums.whonix.org/t/whonix-17-wont-work-directly-on-debian-12-bookworm-host-no-iptables/16903 https://forums.whonix.org/t/change-default-shell-from-bash-to-zsh-by-default/14792/133 https://forums.whonix.org/t/xfce-theming-a-few-suggestions/7205/80 https://forums.whonix.org/t/whonix-ws-kvm-broken-due-to-reinstalled-security-misc/16902/3 https://forums.whonix.org/t/remmina-vs-rustdesk/16302/5 https://forums.whonix.org/t/anarsec-qubes-whonix-guide/16887/6 === 16/7/2023 === * Tickets and activities: https://forums.whonix.org/t/i2p-integration/4981/369 https://forums.whonix.org/t/merge-2-menus-of-sdwdate-tray-better-ux/16900 https://forums.whonix.org/t/uploading-images-sometimes-will-give-invalid-csrf-token-some-cookies-are-misusing-the-recommended-samesite-attribute/16898 https://forums.whonix.org/t/generate-whonix-gw-dvm-with-salt-to-give-the-possibility-to-base-sys-whonix-on-it/16901 https://forums.whonix.org/t/disposable-browser-fingerprint/16894/2 https://forums.whonix.org/t/command-not-showing-up-fully-in-the-wiki-when-using-codeselect-code/16899 https://forums.whonix.org/t/wrongs-links-in-kvm-install-guide/16897/2 https://www.whonix.org/wiki/I2P#Installation_and_Setup https://www.whonix.org/wiki/I2P#Steps_for_I2P_Configuration_and_Usage_After_Installation Finished cleaning up qubes-minimal packages === 15/7/2023 === OFF === 1 - 14/7/2023 === * Testing: Tested all whonix and kicksecure releases of version 17.x (on vbox and qubes 4.2) Tested Whonix - I2P + TB and sorted out all issues (but tomorrow will be documented) * Tickets and activities: https://github.com/bitcoin/bitcoin/issues/28054 https://github.com/QubesOS/qubes-issues/issues/8286#issuecomment-1627786685 https://github.com/QubesOS/qubes-issues/issues/8330#issuecomment-1625923003 https://github.com/QubesOS/qubes-issues/issues/8346 https://github.com/QubesOS/qubes-issues/issues/6325#issuecomment-1633056725 https://github.com/QubesOS/qubes-issues/issues/8342 https://github.com/QubesOS/qubes-issues/issues/5836 https://github.com/QubesOS/qubes-issues/issues/8341 https://github.com/QubesOS/qubes-issues/issues/8335 https://github.com/QubesOS/qubes-issues/issues/8193#issuecomment-1626208571 https://github.com/QubesOS/qubes-issues/issues/8336#issuecomment-1626359102 https://github.com/QubesOS/qubes-issues/issues/8333 https://github.com/QubesOS/qubes-issues/issues/8331#issue-1794108471 https://github.com/QubesOS/qubes-issues/issues/8332 https://github.com/QubesOS/qubes-issues/issues/8334 https://github.com/QubesOS/qubes-issues/issues/8079#issuecomment-1626045208 https://github.com/QubesOS/qubes-issues/issues/8269#issuecomment-1606111278 https://github.com/QubesOS/qubes-issues/issues/8359 https://github.com/QubesOS/qubes-issues/issues/8360 https://forums.whonix.org/t/keepassxc-browser-doesnt-work-out-of-the-box/16877/2 https://forums.whonix.org/t/whonix-delete-the-unnecessary-files-programs/1905/6 https://forums.whonix.org/t/whonix-delete-the-unnecessary-files-programs/1905/8 https://forums.whonix.org/t/default-dns-provider-discussion-for-kicksecure-not-whonix/16870/2 https://forums.whonix.org/t/default-dns-provider-discussion-for-kicksecure-not-whonix/16870/4 https://forums.whonix.org/t/default-dns-provider-discussion-for-kicksecure-not-whonix/16870/6 https://forums.whonix.org/t/default-dns-provider-discussion-for-kicksecure-not-whonix/16870/8 https://forums.whonix.org/t/dino-im-messenger/7773/45 https://forums.whonix.org/t/dino-im-messenger/7773/48 https://forums.whonix.org/t/use-dnscrypt-by-default-in-kicksecure-not-whonix/8117/61 https://forums.whonix.org/t/suggest-trustworthy-tor-hidden-services-as-time-sources-for-sdwdate/856/233 https://forums.whonix.org/t/remove-imagemagick/6143/13 https://forums.whonix.org/t/flatpak-as-a-software-source-flathub-as-a-source-of-software/8500/52 https://forums.whonix.org/t/missing-libre-illustrative-images/3912/287 https://forums.whonix.org/t/local-browser-homepage-for-tor-browser-in-whonix/347/114 https://forums.whonix.org/t/local-browser-homepage-for-tor-browser-in-whonix/347/116 --------------------------- == '''OLDEST''' == === 23/1/2023 === * Fixed/Reviewed links and/or Improved text: https://www.whonix.org/wiki/Dev/Download_Statistics https://www.whonix.org/wiki/Dev/Download_Wizard https://www.whonix.org/wiki/Dev/Installation_from_Repository https://www.whonix.org/wiki/Mailing_Lists https://www.whonix.org/wiki/Dev/Redistribution https://www.whonix.org/wiki/Essential_Tests https://www.whonix.org/wiki/Dev/Vision https://www.whonix.org/wiki/Dev/Tails_Doc_Fork https://www.whonix.org/wiki/UniStation https://www.whonix.org/wiki/Dev/Inspiration https://www.whonix.org/wiki/Dev/Zerobox https://forums.whonix.org/t/long-wiki-edits-thread/3477/2268 === 19/1/2023 === * Fixed/Reviewed links and/or Improved text: https://www.whonix.org/wiki/Dev/Porting https://www.whonix.org/wiki/Dev/Logo https://www.whonix.org/wiki/Dev/TPO_Trademark https://www.whonix.org/wiki/Dev/64bit https://www.whonix.org/wiki/Dev/Firefox_Add-On https://www.whonix.org/wiki/Dev/tor-launcher https://www.whonix.org/wiki/BackupScript https://www.whonix.org/wiki/Dev/Firewall_Unload https://www.whonix.org/wiki/Dev/Test https://www.whonix.org/wiki/Dev/Linux_Installer https://www.whonix.org/wiki/Dev/Windows_Installer https://www.whonix.org/wiki/Dev/Windows_Starter https://www.whonix.org/wiki/Windows_Quick_Start_Testers_Only_Version https://www.whonix.org/wiki/Dev/research https://www.whonix.org/wiki/Dev/patreon https://www.whonix.org/wiki/Dev/Gajim https://www.whonix.org/wiki/Dev/Project_friendly_applications_best_practices https://www.whonix.org/wiki/SecBrowser https://www.whonix.org/wiki/Dev/wallpaper https://www.whonix.org/wiki/Dev/certification https://www.whonix.org/wiki/Dev/STIG https://www.whonix.org/wiki/Dev/surveys https://www.whonix.org/wiki/Dev/Automated_Tests https://www.whonix.org/wiki/Dev/Torified_Wi-Fi_Hotspot https://www.whonix.org/wiki/KVM_Testers_Only_Version https://www.whonix.org/wiki/Dev/Xfce https://www.whonix.org/wiki/Dev/Issue_Tracker https://www.whonix.org/wiki/Dev/Homepage https://www.whonix.org/wiki/Transparency === 18/1/2023 === * Fixed/Reviewed links and/or Improved text: https://www.whonix.org/wiki/Dev/Archived_Discussions https://www.whonix.org/wiki/Dev/GNOME https://www.whonix.org/wiki/Dev/Source_Code_Intro https://www.whonix.org/wiki/Dev/News https://www.whonix.org/wiki/Dev/SSL_Certificate_Pinning https://www.whonix.org/wiki/Dev/JonDo https://www.whonix.org/wiki/Dev/Project_Host https://www.whonix.org/wiki/Dev/Network_Manager https://www.whonix.org/wiki/Dev/Continuous_Integration https://www.whonix.org/wiki/Dev/DHCP https://www.whonix.org/wiki/Hosting_a_Mirror === 17/1/2023 === Fixed/Reviewed links and/or Improved text: https://www.whonix.org/wiki/Dev/anon-ws-disable-stacked-tor https://www.whonix.org/wiki/Dev/Default_Application_Policy https://www.whonix.org/wiki/Dev/Tor https://www.whonix.org/wiki/Dev/setup-dist https://www.whonix.org/wiki/Dev/Disclaimer https://www.whonix.org/wiki/Comparison_Of_Package_Managers https://www.whonix.org/wiki/Dev/Advanced_Deanonymization_Attacks https://www.whonix.org/wiki/Dev/latency-obfuscator https://www.whonix.org/wiki/Dev/MAC https://www.whonix.org/wiki/Dev/vanguards === 16/1/2023 === OFF === 15/1/2023 === OFF === 13/1/2023 === Fixed/Reviewed links and/or Improved text: https://www.whonix.org/wiki/Dev/anon-ws-disable-stacked-tor https://www.whonix.org/wiki/Dev/Default_Application_Policy Discussion: https://chat.openai.com/chat https://www.grammarly.com/ === 12/1/2023 === Fixed/Reviewed links and/or Improved text: https://www.whonix.org/wiki/Dev/Qubes https://www.whonix.org/wiki/Dev/About_Developers https://www.whonix.org/wiki/Next https://www.whonix.org/wiki/Dev/onion-grater === 11/1/2023 === Fixed/Reviewed links and/or Improved text: https://www.whonix.org/wiki/Dev/Operating_System https://www.whonix.org/wiki/Dev/VirtualBox https://www.whonix.org/wiki/Dev/KVM === 10/1/2023 === Fixed/Reviewed links and/or Improved text: https://www.whonix.org/wiki/Dev/Technical_Introduction https://www.whonix.org/wiki/Dev/Leak_Tests https://www.whonix.org/wiki/Dev/Anonymity_Network https://www.whonix.org/wiki/Dev/Threat_Model https://www.whonix.org/wiki/Dev/Virtualization_Platform https://www.whonix.org/wiki/Dev/Gateway https://www.whonix.org/wiki/Dev/Host https://www.whonix.org/wiki/Dev/Project_Host https://www.whonix.org/wiki/Dev/Build_Anonymity https://www.whonix.org/wiki/Dev/Expected_Build_Warnings https://www.whonix.org/wiki/Verifiable_Builds - No new issues with testers upgrades - https://github.com/QubesOS/qubes-issues/issues/7959#issuecomment-1375525256 === 9/1/2023 === Fixed/Reviewed links and/or Improved text: https://www.whonix.org/wiki/Swap-file-creator https://www.whonix.org/wiki/Project-APT-Repository https://www.whonix.org/wiki/Debian_Packages https://www.whonix.org/wiki/Access_Local_Network_or_Host_or_Clearnet_Internet_from_VM https://www.whonix.org/wiki/Access_Gateway_Port_From_Host https://www.whonix.org/wiki/Censorship_Circumvention_Tools https://www.whonix.org/wiki/Whonix-Gateway_System_DNS https://www.whonix.org/wiki/Whonix-Gateway_Own_Traffic_Transparent_Proxy https://www.whonix.org/wiki/Access_Workstation_Port_From_Host https://www.whonix.org/wiki/Connections_between_Gateway_and_Workstation https://www.whonix.org/wiki/Tor_Browser/Manual_Download https://www.whonix.org/wiki/Ports https://www.whonix.org/wiki/Redirect_Whonix-Workstation_Ports_or_Unix_Domain_Socket_Files_to_Whonix-Gateway https://www.whonix.org/wiki/FTP https://www.whonix.org/wiki/Systemd https://www.whonix.org/wiki/Dev/Build_Documentation/VM https://www.whonix.org/wiki/Dev/Build_Documentation/Upgrading_Derivative_Deb_Packages_from_Source_Code https://www.whonix.org/wiki/Dev/Build_Documentation/security-misc https://www.whonix.org/wiki/Dev/Build_Documentation/generic-package https://www.whonix.org/wiki/Template:Build_Documentation_Build_Package https://www.whonix.org/wiki/Dev/Windows_Installer https://www.whonix.org/wiki/Dev/Windows_Starter === 8/1/2023 === Swapped with the weekend === 29/12/2022 === Fixed/Reviewed links and/or Improved text: https://www.whonix.org/wiki/Manually_Create_Whonix_VM_Settings https://www.whonix.org/wiki/Dev/Build_Documentation https://www.whonix.org/wiki/Manually_Creating_Whonix https://www.whonix.org/wiki/Boot_Clock_Randomization https://www.whonix.org/wiki/Protocol-Leak-Protection_and_Fingerprinting-Protection https://www.whonix.org/wiki/Security_Roadmap https://www.whonix.org/wiki/Other_Desktop_Environments https://www.whonix.org/wiki/Whonix-Gateway_Firewall https://www.whonix.org/wiki/Whonix-Workstation_Firewall https://www.whonix.org/wiki/Multiple_Qubes-Whonix_Templates https://www.whonix.org/wiki/Multiple_Whonix-Gateway https://www.whonix.org/wiki/Multiple_Whonix-Workstation https://www.whonix.org/wiki/Other_Operating_Systems https://www.whonix.org/wiki/Other_Gateways === 28/12/2022 === Fixed/Reviewed links and/or Improved text: https://www.whonix.org/wiki/VMware https://www.whonix.org/wiki/Dev/Build_Documentation/Physical_Isolation https://www.whonix.org/wiki/Dev/Leak_Tests https://www.whonix.org/wiki/VM_Fingerprinting https://www.whonix.org/wiki/VPN-Firewall https://www.whonix.org/wiki/Alternative_DNS_Resolver https://www.whonix.org/wiki/Hide_Tor_from_your_Internet_Service_Provider https://www.whonix.org/wiki/Host_a_Bridge_or_Tor_Relay https://www.whonix.org/wiki/Speculative_Tor_Attacks https://www.whonix.org/wiki/Torify_Host_Operating_System https://www.whonix.org/wiki/PPTP https://www.whonix.org/wiki/Tunnel_UDP_over_Tor https://www.whonix.org/wiki/Vanguards === 27/12/2022 === Fixed/Reviewed links and/or Improved text: https://www.whonix.org/wiki/File_Transfer https://www.whonix.org/wiki/Anbox https://www.whonix.org/wiki/GNUnet https://www.whonix.org/wiki/Chromium https://www.whonix.org/wiki/Chrome https://www.whonix.org/wiki/PyLRU https://www.whonix.org/wiki/Access_Local_Network_or_Host_or_Clearnet_Internet_from_VM https://www.whonix.org/wiki/QEMU https://www.whonix.org/wiki/Dev/Virtualization_Platform === 26/12/2022 === Fixed/Reviewed links and/or Improved text: https://www.whonix.org/wiki/Policy_of_Website_and_Chat https://www.whonix.org/wiki/Imprint https://www.whonix.org/wiki/Privacy_Policy https://www.whonix.org/wiki/Cookie_Policy https://www.whonix.org/wiki/Terms_of_Service https://www.whonix.org/wiki/E-Sign_Consent https://www.whonix.org/wiki/Whonix:Copyrights https://www.whonix.org/wiki/Trademark_Policy https://www.whonix.org/wiki/Forcing_.onion_on_Project https://www.whonix.org/wiki/API https://www.whonix.org/wiki/Security_Reviews_and_Feedback https://www.whonix.org/wiki/Art_Gallery https://www.whonix.org/wiki/Census https://www.whonix.org/wiki/Media_Mentions https://www.whonix.org/wiki/Packages_for_Debian_Hosts https://www.whonix.org/wiki/What_we_do === 24/12/2022 === Fixed/Reviewed links and/or Improved text: https://www.whonix.org/wiki/BackupScript https://www.whonix.org/wiki/Browser_Tests https://www.whonix.org/wiki/Introduction https://www.whonix.org/wiki/Advanced_Documentation https://www.whonix.org/wiki/Offline_Documentation https://www.whonix.org/wiki/VFAQ https://www.whonix.org/wiki/Declined https://www.whonix.org/wiki/Stream_Isolation https://www.whonix.org/wiki/Stream_Isolation/Disable_Easy https://www.whonix.org/wiki/Stream_Isolation/Easy https://www.whonix.org/wiki/ExoneraTor https://www.whonix.org/wiki/Why_is_Tor_slow === 22/12/2022 === Fixed/Reviewed links and/or Improved text: https://www.whonix.org/wiki/Contributors https://www.whonix.org/wiki/Credits https://www.whonix.org/wiki/History https://www.whonix.org/wiki/Reasons_for_Freedom_Software https://www.whonix.org/wiki/Contact https://www.whonix.org/wiki/Contribute https://www.whonix.org/wiki/Donate https://www.whonix.org/wiki/Investors https://www.whonix.org/wiki/Official_Online_Profiles https://www.whonix.org/wiki/Support https://www.whonix.org/wiki/Please_Use_Search_Engines_And_See_Documentation_First === 21/12/2022 === Fixed/Reviewed links and/or Improved text: https://www.whonix.org/wiki/Dev/Build_Documentation/Physical_Isolation https://www.whonix.org/wiki/Signing_Key https://www.whonix.org/wiki/Verify_the_virtual_machine_images https://www.whonix.org/wiki/Verify_the_images_using_Linux https://www.whonix.org/wiki/Verify_the_images_using_Linux https://www.whonix.org/wiki/Verify_the_virtual_machine_images_using_other_operating_systems https://www.whonix.org/wiki/Qubes/Why_use_Qubes_over_other_Virtualizers https://www.whonix.org/wiki/Qubes/Install https://www.whonix.org/wiki/Qubes/Reinstall https://www.whonix.org/wiki/Qubes/Uninstall https://www.whonix.org/wiki/Qubes/Update https://www.whonix.org/wiki/Qubes/Troubleshooting https://www.whonix.org/wiki/Multiple_Whonix-Workstation https://www.whonix.org/wiki/Qubes/AppArmor https://www.whonix.org/wiki/Qubes/Tor_Browser https://www.whonix.org/wiki/Qubes/Create_Gateway_ProxyVMs https://www.whonix.org/wiki/Qubes/UpdatesProxy https://www.whonix.org/wiki/Multiple_Qubes-Whonix_Templates https://www.whonix.org/wiki/Multiple_Whonix-Gateway === 20/12/2022 === Fixed/Reviewed links and/or Improved text: https://www.whonix.org/wiki/Tunnels/Introduction https://www.whonix.org/wiki/Chaining_Anonymizing_Gateways https://www.whonix.org/wiki/Tunnels/Examples https://www.whonix.org/wiki/Lantern https://www.whonix.org/wiki/Whonix_versus_VPNs https://www.whonix.org/wiki/Whonix_versus_Proxies https://www.whonix.org/wiki/Tunnels/Connecting_to_Tor_before_a_VPN https://www.whonix.org/wiki/Tunnels/Connecting_to_Tor_before_a_proxy https://www.whonix.org/wiki/Tunnels/Connecting_to_Tor_before_SSH https://www.whonix.org/wiki/Tunnels/Connecting_to_a_proxy_before_Tor https://www.whonix.org/wiki/Tunnels/Connecting_to_SSH_before_Tor https://www.whonix.org/wiki/Tunnels/Connecting_to_a_VPN_before_Tor === 19/12/2022 === Fixed/Reviewed links and/or Improved text: https://www.whonix.org/wiki/Tor_Controller https://www.whonix.org/wiki/Corridor https://www.whonix.org/wiki/Hosting_Location_Hidden_Services https://www.whonix.org/wiki/Onion_Services https://www.whonix.org/wiki/Onion_Services_Guides https://www.whonix.org/wiki/Logging_in_to_captive_portals https://www.whonix.org/wiki/Sdwdate - Tested Whonix OS installation on ubuntu/mint. === 18/12/2022 === Swapped Off === 17/12/2022 === Fixed/Reviewed links and/or Improved text: https://www.whonix.org/wiki/OnionShare https://www.whonix.org/wiki/Remote_Administration https://www.whonix.org/wiki/Rss https://www.whonix.org/wiki/YaCy https://www.whonix.org/wiki/Other_Anonymizing_Networks https://www.whonix.org/wiki/Freenet https://www.whonix.org/wiki/JonDonym https://www.whonix.org/wiki/Chat#RetroShare https://www.whonix.org/wiki/ZeroNet === 15/12/2022 === Sick Leave === 14/12/2022 === Fixed/Reviewed links and/or Improved text: https://www.whonix.org/wiki/Money https://www.whonix.org/wiki/Bisq https://www.whonix.org/wiki/Bitcoin https://www.whonix.org/wiki/Bitcoin_Core https://www.whonix.org/wiki/Electrum https://www.whonix.org/wiki/ElectrumX https://www.whonix.org/wiki/Ethereum https://www.whonix.org/wiki/Monero https://www.whonix.org/wiki/Monero_Wallet_Isolation https://www.whonix.org/wiki/File_Sharing === 13/12/2022 === Fixed/Reviewed links and/or Improved text: https://www.whonix.org/wiki/Nymservers https://www.whonix.org/wiki/Remailer https://www.whonix.org/wiki/Chat https://www.whonix.org/wiki/HexChat https://www.whonix.org/wiki/Signal https://www.whonix.org/wiki/Telegram https://www.whonix.org/wiki/VoIP https://www.whonix.org/wiki/Wickr https://www.whonix.org/wiki/One_Time_Pad === 12/12/2022 === Fixed/Reviewed links and/or Improved text: https://www.whonix.org/wiki/Tor_Browser/Advanced_Users https://www.whonix.org/wiki/Install_Tor_Browser_Outside_of_Whonix https://www.whonix.org/wiki/Verify_Tor_Browser_in_Windows https://www.whonix.org/wiki/YouTube https://www.whonix.org/wiki/yt-dlp https://www.whonix.org/wiki/E-Mail https://www.whonix.org/wiki/Encrypted_Email_with_Thunderbird https://www.whonix.org/wiki/BitMessage === 11/12/2022 === Swapped with weekend === 9/12/2022 === Fixed/Reviewed links and/or Improved text: https://www.whonix.org/wiki/Tor_Browser - Tested whonix linux installation in debian, ubuntu, mint === 8/12/2022 === Fixed/Reviewed links and/or Improved text: https://www.whonix.org/wiki/Tor_Browser (partially) === 7/12/2022 === Fixed/Reviewed links and/or Improved text: https://www.whonix.org/wiki/RAM https://www.whonix.org/wiki/Reporting_Bugs https://www.whonix.org/wiki/Known_Issues https://www.whonix.org/wiki/Disaster_Recovery https://www.whonix.org/wiki/Essential_Tests https://www.whonix.org/wiki/Troubleshooting https://www.whonix.org/wiki/Surfing_Posting_Blogging === 6/12/2022 === Fixed/Reviewed links and/or Improved text: https://www.whonix.org/wiki/Qubes/Disposables https://www.whonix.org/wiki/Tor https://www.whonix.org/wiki/Tor_Entry_Guards https://www.whonix.org/wiki/Transporting_UDP_Tunnels_over_Tor https://www.whonix.org/wiki/Tor-ctrl-observer https://www.whonix.org/wiki/Whonix-Gateway_Security_Hardening https://www.whonix.org/wiki/Multiple_Whonix-Gateway https://www.whonix.org/wiki/Whonix-Workstation_Security_Hardening https://www.whonix.org/wiki/Multiple_Whonix-Workstation https://www.whonix.org/wiki/Hostnames https://www.whonix.org/wiki/Host_Operating_System_Selection https://www.whonix.org/wiki/MAC_Address === 5/12/2022 === swapped with weekend === 1/12/2022 === Fixed/Reviewed links and/or Improved text: https://www.whonix.org/wiki/Time_Attacks https://www.whonix.org/wiki/Whonix-Gateway_Security https://www.whonix.org/wiki/Whonix-Workstation_Security https://www.whonix.org/wiki/Warning https://www.whonix.org/wiki/Advanced_Security_Guide_Introduction https://www.whonix.org/wiki/Advanced_Deanonymization_Attacks https://www.whonix.org/wiki/Chaining_Anonymizing_Gateways https://www.whonix.org/wiki/Network_Time_Synchronization === 30/11/2022 === Fixed/Reviewed links and/or Improved text: https://www.whonix.org/wiki/Basic_Security_Guide_Introduction https://www.whonix.org/wiki/Essential_Host_Security https://www.whonix.org/wiki/Metadata https://www.whonix.org/wiki/Onionizing_Repositories https://www.whonix.org/wiki/Release_Upgrade https://www.whonix.org/wiki/Install_Software https://www.whonix.org/wiki/USB_Installation https://www.whonix.org/wiki/System_Hardening_Checklist === 29/11/2022 === Fixed/Reviewed links and/or Improved text: https://www.whonix.org/wiki/The_World_Wide_Web_And_Your_Privacy https://www.whonix.org/wiki/Surveillance_Capabilities https://www.whonix.org/wiki/Anonymity https://www.whonix.org/wiki/Tips_on_Remaining_Anonymous https://www.whonix.org/wiki/VM_Fingerprinting https://github.com/Kicksecure/repository-dist -> https://github.com/Kicksecure/repository-dist === 28/11/2022 === Fixed/Reviewed links and/or Improved text: https://www.whonix.org/wiki/Data_Collection_Techniques https://forums.whonix.org/t/long-wiki-edits-thread/3477/2264 https://forums.whonix.org/t/long-wiki-edits-thread/3477/2266 === 27/11/2022 === swapped with weekend === 25/11/2022 === Fixed/Reviewed links and/or Improved text: https://www.whonix.org/wiki/Post_Install_Advice https://www.whonix.org/wiki/KVM#Start https://www.whonix.org/wiki/Qubes https://www.whonix.org/wiki/VirtualBox https://www.whonix.org/wiki/Project-APT-Repository === 24/11/2022 === Fixed/Reviewed links and/or Improved text: https://www.whonix.org/wiki/Language https://www.whonix.org/wiki/Common_CLI_Commands https://www.whonix.org/wiki/Anon_Connection_Wizard https://www.whonix.org/wiki/Bridges https://www.whonix.org/wiki/Network_Obstacle https://www.whonix.org/wiki/Stay_Tuned https://www.whonix.org/wiki/Desktop - Reading about page speedtests and manual tests - Broken links used for buttons for social media === 23/11/2022 === - Created kicksecure and whonix new mastodon accounts on fosstodon - Migrated kicksecure mastodon.technology and whonix.social to fosstodon - Bug in creating kicksecure diaspora account due to email issue - Fixed/added whonix and kicksecure social media profile page - Tested new kicksecure/whonix upgrades: https://forums.kicksecure.com/t/adding-new-packages-will-be-installed-with-its-recommends/156 - Reported kicksecure firefox welcome page issue - Speed issue with tb related to new banner: https://forums.whonix.org/t/donation-banner-reduced-page-loading-with-tb/16014 - Create accounts to odysee and rumble and link them to youtube === 22/11/2022 === Flood, Swapped with weekend === 21/11/2022 === Fixed/Reviewed links and/or Improved text: https://www.whonix.org/wiki/Stable_Release https://www.whonix.org/wiki/Old_Stable_and_Earlier_Releases https://www.whonix.org/wiki/Testers_Release https://www.whonix.org/wiki/System_Requirements Mastodon replaced (later added) with diaspora for whonix footer note === 20/11/2022 === Fixing and discovering new workable Voip apps Improvements discussion e.g qubes instructions separation Outsource APx talk Flatpak fix followup Searching for new mastodon host kicksecure === 19/11/2022 === Fixed/Reviewed links and/or Improved text: https://www.whonix.org/wiki/Stable_Release (Partially, then noindex, maybe nowiki for references if needed) https://www.whonix.org/wiki/Old_Stable_and_Earlier_Releases (noindex, maybe nowiki for references if needed) Replied to forums - KVM spice issue === 18/11/2022 === Fixed/Reviewed links and/or Improved text: https://www.whonix.org/wiki/Stable_Release (Partial) Fixed and improved sdwdate onion mirrors: https://github.com/Kicksecure/sdwdate/pull/45 === 17/11/2022 === Fixed/Reviewed links and/or Improved text: https://www.whonix.org/wiki/Whonix_against_Real_Attacks https://www.whonix.org/wiki/Screenshots https://www.whonix.org/wiki/Tor_Myths_and_Misconceptions https://www.whonix.org/wiki/Why_does_Whonix_use_Tor https://www.whonix.org/wiki/Download https://www.whonix.org/wiki/FAQ https://www.whonix.org/wiki/First_Time_User === 16/11/2022 === Fixed links in: https://www.whonix.org/wiki/Features https://www.whonix.org/wiki/Whonix-Gateway https://www.whonix.org/wiki/Whonix-Workstation https://www.whonix.org/wiki/Comparison_of_different_variants https://www.whonix.org/wiki/Trust === 15/11/2022 === Fixed links in: https://www.whonix.org/wiki/Fingerprint https://www.whonix.org/wiki/About * Searched for flatpak issue solver * Scanned kicksecure for broken links === 7/11/2022 === Fixed links in: https://www.whonix.org/wiki/Comparison_with_Others === 6/11/2022 === * Sorted out anbox in whonix and kicksecure * Added thunderbird successful email delivery method with screenshots * Upgraded JMP registration to latest steps * Discovering whonix/kicksecure mastodon technology deprecation * shifted users of whonix technology mastodon account to whonix social === 3/11/2022 === * Testing waydroid on whonix = doesnt work as it need wayland * Checked missing kicksecure meta-packages: (compared to whonix packages) https://forums.kicksecure.com/t/add-remove-extra-packages/135/4 * Tested kicksecure-xfce-host installation on debian testing: https://forums.kicksecure.com/t/kicksecure-xfce-host-not-installable-in-debian-12-removed-dependency/152 * Checked adding new git commits === 2/11/2022 === * Finished fixing links in https://www.kicksecure.com/wiki/Dev/Build_Documentation * Reporting broken links at homepage: https://forums.kicksecure.com/t/remove-replace-broken-links-at-kicksecure-com/150 * Finished adding illustrated images https://forums.whonix.org/t/missing-libre-illustrative-images/3912/283 * Issue with new forum theme and mobile (text in blue not shown) === 1/11/2022 === * Adjusting I2P to make it work in whonix ws: https://www.whonix.org/w/index.php?title=Progress_Reports&stable=0 https://forums.whonix.org/t/i2p-integration/4981/359 https://forums.whonix.org/t/i2p-client-inside-whonix-workstation-issues/15890/8 * Discovering it wont work in Qubes-Templates (I2P upstream issue) * Finished Kicksecure wiki links fixes. * Discovering JMP need to have updates. * Checking videos needs. * Due to technical difficulties couldn't finish the rest of the working hours (shifted to weekend). === 31/10/2022 === Off Sick Leave === 30/10/2022 === Off Sick Leave === 27/10/2022 === * Tested kicksecure installation on debian stable and testing and discovered: - https://forums.kicksecure.com/t/sdwdate-failed-to-start-in-debian-12-bookworm-next-release/134 - https://forums.kicksecure.com/t/systemcheck-wont-load-work-on-debian-12-next-release/130 - https://forums.kicksecure.com/t/add-remove-extra-packages/135 - https://forums.kicksecure.com/t/not-having-a-default-browser-and-pressing-on-web-browoser-icon-in-xfce-will-give-annoying-bug/128 - https://forums.kicksecure.com/t/add-pyqt5-dev-tool-dependency-to-kicksecure-dependencies/129 - https://forums.kicksecure.com/t/changing-kicksecure-repository-to-tester-will-add-tor-by-default-to-the-repo/127 - https://forums.kicksecure.com/t/disable-unnecessary-startup-processes-e-g-evolution-calendar/126 - https://forums.whonix.org/t/thunderbird-skipping-apparmor-profile-usr-bin-thunderbird/15883 - Uploaded the renewed Whonix Stream Isolation image === 26/10/2022 === Fixed all links available in this section: https://www.kicksecure.com/wiki/Design#General_Developer_Pages === 25/10/2022 === * Discovering the issue of unable to connect to hidden services with I2P TB modifications https://forums.whonix.org/t/i2p-integration/4981/347 * Added more hardening patches to i2p.router https://github.com/Whonix/anon-apps-config/pull/7 * Discovered sdwdate mirror issue so i removed it and added another one ** https://github.com/Kicksecure/sdwdate/pull/43 ** https://github.com/Kicksecure/sdwdate/pull/44 * Fixed wiki links: ** https://www.kicksecure.com/wiki/Security_Roadmap ** https://www.kicksecure.com/wiki/Dev/Permanent_Takedown_Attack_Defender ** https://www.kicksecure.com/wiki/Dev/project-news ** https://www.kicksecure.com/wiki/Dev/remount-secure === 24/10/2022 === * Fixed wiki links: ** https://www.kicksecure.com/wiki/Dev/Versioning_Format_Conventions ** https://www.kicksecure.com/wiki/Dev/coding_style ** https://www.kicksecure.com/wiki/Dev/RAM_Wipe ** https://www.kicksecure.com/wiki/Dev/nonfree * Tested cloning kicksecure source code in whonix appvm using git * Heavy I2P wiki improvement, and router.config preconfigurations within whonix, tested connection. === 23/10/2022 === * bureaucracy * Fixed wiki links: ** https://www.kicksecure.com/wiki/Dev/Stateless ** https://www.kicksecure.com/wiki/Dev/Automatic_Updates ** https://www.kicksecure.com/wiki/Dev/APT ** https://www.kicksecure.com/wiki/Dev/About_Debian_Packaging * Followed up with security-misc inside firmware. === 22/10/2022 === * bureaucracy * POWER ticket support in salsa debian https://salsa.debian.org/fasttrack-team/support/-/issues/38 * Investigating flatpak with hardened whonix issue * Creating account/ticket to support router firmware hardening === 20/10/2022 === * Bureaucracy * Testing whonix latest image with vbox 1.6.40 * Testing whonix latest image with vbox 7.0.2 === 19/10/2022 === * Bureaucracy * URL fixes https://www.kicksecure.com/wiki/Verified_Boot * Qubes ticket https://github.com/QubesOS/qubes-issues/issues/7830 === 18/10/2022 === * Bureaucracy * Uploaded the rest of whonix features * Remove FB from sdwdate mirrors (from my PR), Add sdwdate mirrors to forums * Investigating memory usage with TB-Alpha freeze * Testing flatpak whitelist with hardened whonix === 17/10/2022 === * Added more mirrors to sdwdate * Investigated and reported TB-Alpha freeze to TPO * Tested Whonix latest release over vbox * Bumped whonix/kicksecure release in the wiki to latest release * Fixing qubes-shutter issue * Bureaucracy === 16/10/2022 === Swapped with weekend = Footnotes = {{Footer}}