Skip to content

Releases: M4cs/winfetch

New Config Variable "network"

27 Aug 16:55
Compare
Choose a tag to compare

This adds the format option network to display your local IP.

image

Add Update and Custom Config Loading Command Line Args

26 May 20:32
Compare
Choose a tag to compare
  • Adds the -u argument to check for an update via GitHub
  • Adds the -c <config path> argument to load a config file from the non-default location.

Fixes ASCII runtime error when lines aren't long enough

26 May 17:54
Compare
Choose a tag to compare
  • Fixes a bug with smaller sized ASCII art so that it doesn't break formatting at runtime.

Example of Error:

panic: runtime error: index out of range [2] with length 2

goroutine 1 [running]:
main.main()
        C:/Users/Max/winfetch/main.go:176 +0x1304

New Default ASCII Art

24 May 13:17
Compare
Choose a tag to compare
  • Added cleaner ASCII art for the Windows Logo:

Old:
image

New
image

Add Formatting instead of booleans

22 May 23:59
Compare
Choose a tag to compare
  • You can now choose which format you want the info to display in. Everything is type strict. Please see the readme for all available modules to display! Modules Added: "user", "sep", "uptime", "mem", "cpu", "procs", "cpuCores", "cpuThreads", "disk", "wversion", "gpus", "bios", "baseboard"
  • New Config Value format
  • Fix ShowAscii
  • Example Config:
{
 "format": [
  "user",
  "sep",
  "uptime",
  "mem",
  "cpu",
  "cpuCores",
  "cpuThreads",
  "procs",
  "disk",
  "wversion",
  "gpus",
  "bios",
  "baseboard"
 ],
 "showAscii": true,
 "useDefaultColors": true,
 "useSmallAscii": false,
 "asciiColor": "Blue",
 "useCustomAscii": false,
 "customAsciiPath": "",
 "userColor": "Red",
 "sepColor": "Red",
 "titleColor": "Green",
 "infoColor": "White",
 "titles": {
  "memory": "Memory",
  "cpu": "CPU #",
  "cpuCores": "CPU Cores",
  "cpuThreads": "CPU Threads",
  "gpus": "GPU #",
  "diskSize": "Disk Size",
  "windowsVersion": "Windows Ver.",
  "bios": "BIOS",
  "baseboard": "Baseboard",
  "processCount": "Processes",
  "uptime": "Uptime"
 }
}

Add Process Count, CPUs, and Uptime

22 May 23:07
Compare
Choose a tag to compare
  • Adds ShowCPU, ShowUptime, and ShowProcessCount to config
  • Adds titles.cpu, titles.uptime, and titles.processCount to config

Add Small Windows Ascii and Custom Ascii Art Options to Config

22 May 21:47
Compare
Choose a tag to compare
  • useCustomAscii now available in config
  • customAsciiPath now available in config
  • useSmallAscii now available in config

New Color Configuration Allowing Custom Colors and Custom Titles

22 May 21:09
Compare
Choose a tag to compare

You may need to delete your configuration and re-run winfetch in order to get the new features working correctly!

Using xterm-256 colors now!

New Feature: Custom Colors

  • Adds new color options for: asciiColor, userColor, sepColor, titleColor, infoColor
  • Allows the following colors:
    image

New Feature: Custom Titles

  • Allows you to change titles for each module.

Winfetch Inital Release - 1.0.0

22 May 17:02
7acd731
Compare
Choose a tag to compare

First Stable Release for GitHub