neofetch/Changelog.md

144 lines
5.2 KiB
Markdown
Raw Normal View History

2016-10-12 23:10:14 +01:00
## Contributors
- **[@konimex](https://github.com/konimex)**
2016-10-15 08:22:37 +01:00
- **[@iandrewt](https://github.com/iandrewt)**
2016-10-16 10:18:35 +01:00
- **[@coypoop](https://github.com/coypoop)**
2016-10-22 05:13:09 +01:00
- **[@ncmprhnsbl](https://github.com/ncmprhnsbl)**
2016-10-12 23:10:14 +01:00
<br \>
2016-10-15 08:26:25 +01:00
## General
2016-10-04 02:07:45 +01:00
2016-10-15 08:22:09 +01:00
- Added new function called `checkoldflags` which informs users about deprecated config options.
2016-10-15 14:47:27 +01:00
- Change all `OS X` references to `macOS`. **[@iandrewt](https://github.com/iandrewt)**
2016-10-16 14:08:15 +01:00
- Fix corrupted text when long lines are cut-off.
2016-10-21 11:46:29 +01:00
- Don't dynamically place prompt in `image=off` mode.
2016-10-04 22:16:51 +01:00
2016-10-13 23:29:21 +01:00
2016-10-15 23:39:54 +01:00
## Operating System
2016-10-16 05:02:59 +01:00
- Added support for Bitrig. **[@konimex](https://github.com/konimex)**
2016-10-15 23:39:54 +01:00
- Added support for Sparky Linux.
2016-10-22 05:20:32 +01:00
- Added support for Porteus. **[@ncmprhnsbl](https://github.com/ncmprhnsbl)**
2016-10-15 23:39:54 +01:00
2016-10-13 23:29:21 +01:00
## Packages
- Neofetch is now in Gentoo's official repos.
2016-10-12 23:10:14 +01:00
## Images
**Fixed rendering issues in URxvt when using an XFT font.**
2016-10-13 23:36:30 +01:00
![scrot](https://i.sli.mg/6qp9Cg.png)
2016-10-12 23:10:14 +01:00
2016-10-13 23:29:21 +01:00
This was first thought to be an issue between URxvt and W3m-img and I apologize for immediately closing bug reports and dismissing comments about this.
2016-10-12 23:10:14 +01:00
I spent yesterday trying to fix this issue and found out that launching neofetch with `--bold off`
reduced the rendering problems. I did more digging and found out that removing all text formatting fixes the issue entirely. I later found out that adding a single unformatted character before the formatted text fixed the issue while keeping the formatting the same.
I opened up this PR https://github.com/dylanaraps/neofetch/pull/358 which added options to enable a border between the image and the text to fix the issue. **[@konimex](https://github.com/konimex)** later commented informing me that we could just use a `zero-width space` to fix the issue and that we didn't need a new function/args/ugly border. doh
The final fix was as simple as adding a zero-width space before the info, here's the commit.
https://github.com/dylanaraps/neofetch/commit/3e9c3d648cb4c6f0d5fe5f0b96f9e29429af39d9
2016-10-21 14:54:09 +01:00
**Removed hard dependency on `\033[14t`**
Neofetch no longer requires a terminal emulator that supports `\033[14t` this means that neofetch now works in Konsole. Instead of using the escape sequence users now have three options for getting the terminal size in pixels.
- `xdotool`
- `xwininfo` + `xprop`
- `xwininfo` + `xdpyinfo`
Neofetch will detect whatever combination you have insalled and use these programs.
Note: `\033[14t` is still supported, if images already work for you then you don't have to install anything else.
- [w3m-img] Draw the image twice to fix rendering issues in Konsole.
- [w3m-img] Fix cursor position when using `yoffset`.
2016-10-21 15:16:22 +01:00
- [w3m-img] Add `-bg` support with the new option `--bg_color`.
- `neofetch --bg_color blue` will make the background behind the image blue.
2016-10-21 15:30:15 +01:00
- Note: The background color is only visible behind transparent parts of the image.
2016-10-21 14:54:09 +01:00
2016-10-13 23:29:21 +01:00
2016-10-04 22:16:51 +01:00
## Ascii
2016-10-15 04:18:50 +01:00
- Bold ascii art by default.
2016-10-16 00:52:47 +01:00
- Fixed incorrect prompt location when using `ascii_logo_size small`.
2016-10-13 23:29:21 +01:00
## Info
2016-10-15 08:22:09 +01:00
**Distro**<br \>
- Expanded `distro_shorthand` to macOS and Solaris. **[@konimex](https://github.com/konimex)**
2016-10-15 08:22:09 +01:00
- Removed `osx_buildversion` and `osx_codename` in favour of `distro_shorthand`. **[@konimex](https://github.com/konimex)**
2016-10-22 23:10:48 +01:00
**Desktop Environment**<br \>
- [Windows] Added support for showing DE.
- Windows 8 and above: `Modern UI/Metro`
- Windows 7 and below: `Aero`
2016-10-17 08:49:57 +01:00
**Window Manager**<br \>
- [Windows] Added support for custom WMs/Shells.
- Neofetch now detects `blackbox`, `bugn`, `Windawesome`, `emerge` and `litestep`.
- Uppercase first letter of `wm` output.
2016-10-17 09:23:27 +01:00
**Window Manager Theme**<br \>
- [Windows] Added support for Blackbox themes.
2016-10-15 13:58:33 +01:00
**CPU**<br \>
2016-10-22 23:50:05 +01:00
- Added `cpu_speed` which lets you hide/show the speed in the output.
2016-10-21 11:39:36 +01:00
- Expanded `cpu_cores` option by adding two new values, `logical` and `physical`.
- `logical`: Show all virtual cores (hyperthreaded).
- `physical`: Only show physical cores.
2016-10-22 23:50:05 +01:00
- [Linux] Added support for showing CPU temperature.
- Added new option called `cpu_temp`.
- Note: This is disabled by default and can be enabled by changing the value of `cpu_temp` in your config to `on`.
2016-10-15 14:47:09 +01:00
- [macOS] Print physical cores instead of hyper-threaded cores. **[@iandrewt](https://github.com/iandrewt)**
2016-10-21 13:49:16 +01:00
**Uptime**<br \>
- Rewrote uptime function to use seconds since boot instead of the `uptime` command.
2016-10-21 15:29:38 +01:00
- Every OS/Distro now has the pretty `uptime -p` output!
2016-10-21 13:49:16 +01:00
2016-10-15 14:47:09 +01:00
**Resolution**<br \>
- [macOS] Add @2x label for retina resolutions. **[@iandrewt](https://github.com/iandrewt)**
2016-10-15 13:58:33 +01:00
2016-10-16 10:18:35 +01:00
**Memory**<br \>
- [NetBSD] Fix memory output for sizes over 4GB. **[@coypoop](https://github.com/coypoop)**
2016-10-17 22:32:52 +01:00
**Shell**<br \>
- Hide shell path by default.
- Show shell version by default.
2016-10-13 23:29:21 +01:00
**Theme Font**<br \>
- [XFCE] Fixed incorrect font output.
2016-10-13 23:48:30 +01:00
**Color Blocks**<br \>
2016-10-16 00:52:12 +01:00
- Fixed `block_width` not working.
- Fixed `% s` appearing in color blocks when neofetch is run from `tty`
2016-10-16 00:52:47 +01:00
- Fixed `block_width` being off by one. A value of `2` made the blocks `3` wide instead of `2` wide.
2016-10-15 12:10:35 +01:00
**Terminal and Terminal Font**<br \>
- Uppercase first letter of `term` and `termfont` outputs.
2016-10-21 11:49:16 +01:00
- Don't print broken output of busybox's `ps`.
2016-10-17 22:23:38 +01:00
- Remove path from output.
2016-10-17 07:37:03 +01:00
**Song**<br \>
- [macOS] Fix iTunes automatically opening. **[@iandrewt](https://github.com/iandrewt)**
2016-10-22 05:13:09 +01:00
- Added support for Audacious. **[@ncmprhnsbl](https://github.com/ncmprhnsbl)**