neofetch/CHANGELOG.md

135 lines
5.6 KiB
Markdown
Raw Normal View History

2016-12-08 14:22:20 +00:00
## Contributors
2016-12-10 12:57:54 +00:00
- **[@konimex](https://github.com/konimex)**
2016-12-12 23:20:58 +00:00
- **[@iandrewt](https://github.com/iandrewt)**
- **[@jorgegonzalez](https://github.com/jorgegonzalez)**
2016-12-18 17:28:58 +00:00
- **[@z33ky](https://github.com/z33ky)**
2016-12-12 12:56:14 +00:00
2016-12-10 06:14:51 +00:00
## IRC
2016-12-12 03:25:22 +00:00
Neofetch now has an irc channel at `#neofetch` on Freenode. If you have any questions, issues or ideas feel free to join the irc channel and I'll be happy to assist you. I know that we've already got the gitter chat but hopefully this makes things easier for those without a github account. :)
2016-12-10 06:14:51 +00:00
2016-12-12 12:54:48 +00:00
[![Freenode](https://img.shields.io/badge/%23neofetch-%20on%20Freenode-brightgreen.svg)](http://irc.lc/freenode/neofetch)
2016-12-10 06:14:51 +00:00
2016-12-10 08:23:59 +00:00
2016-12-09 04:10:16 +00:00
## General
- Travis now runs [shellcheck](https://github.com/koalaman/shellcheck) on every commit and pull request.
- We've had to exclude around 10 lint errors, see this wiki page for why we did this:
- https://github.com/dylanaraps/neofetch/wiki/Shellcheck-Exclusions
2016-12-09 04:41:23 +00:00
- Optimize usage of get_de(), get_wm() and get_term().
- We were calling these multiple times, we now check to see if they were run previously.
2016-12-12 07:28:41 +00:00
- Optimize info caching, only check for cache files in scripts that use caching.
2016-12-12 12:57:28 +00:00
- Cleanup `main()`.
2016-12-14 08:25:58 +00:00
- Renamed `old_flags()` --> `old_options()`.
2016-12-14 22:35:14 +00:00
- The manpage is now generated using `help2man`. `help2man` parses the output of `--help` and `--version` to create a manpage. This ensures that our manpage stays 1:1 with the script documentation. We actually found a lot of outdated info in the old manpage thanks to this.
- A new flag was added called `--gen-man` which generates a neofetch manpage in your current directory.
2016-12-15 06:57:29 +00:00
- Delete most of `info()` and instead call `prin()`.
- This removes a lot of duplicate code between `info()` and `prin()`.
2016-12-16 02:35:39 +00:00
- Remove `printf` subshells and instead use `printf -v` to declare the variables.
2016-12-18 02:19:50 +00:00
- Set fixed `$PATH` in the beginning of the script.
2016-12-19 04:15:03 +00:00
- Fixed artifacts when using line-breaks in TTYs.
2016-12-10 06:14:51 +00:00
2016-12-10 08:23:59 +00:00
## Info
2016-12-18 02:19:50 +00:00
**OS** <br \>
- Added support for GNU/kFreeBSD.
- Merged all GNU Hurd instances to Linux since they work exactly the same way.
2016-12-15 09:56:30 +00:00
**Shell**<br \>
- [Fish] Fixed memory leak caused by Fish.
2016-12-15 11:41:05 +00:00
- Added support for `xonsh`.
- Fixed version output on `ksh`.
- Rewrote the function to remove duplicate code. All shells now use `$SHELL --version` to get the version info, with the exception of `mksh` which doesn't have a `--version` flag.
2016-12-15 09:56:30 +00:00
2016-12-15 12:05:59 +00:00
**Uptime**<br \>
- Moved duplicate code to a function.
- Changed `$uptime_shorthand` to `on` by default.
2016-12-13 01:07:31 +00:00
**Desktop Environment**<br \>
- Fixed issues where MATE wouldn't be detected properly.
- Added fallback to `$DESKTOP_SESSION`, `$MATE_DESKTOP_SESSION_ID` and `$GNOME_DESKTOP_SESSION_ID`.
2016-12-14 08:25:58 +00:00
**CPU**<br \>
- [Linux] Don't simplify `cpufreq` speed option names for no reason.
2016-12-15 11:51:02 +00:00
- [Linux] Fixed issues with CPU name detection for architectures other than x86/amd64/ARM.
2016-12-14 08:25:58 +00:00
- [NetBSD] Remove case statement in favor of 1 line test.
- Remove case sensitive substitutions.
- We match everything case insensitively so they were pointless.
- Simplify check for low CPU speeds.
2016-12-15 13:10:29 +00:00
**CPU Usage**<br \>
- Added Haiku cores command.
- Updated Linux and macOS commands to the match the commands in the `get_cpu()` function.
2016-12-16 08:55:42 +00:00
**~~Birthday~~ Install Date**<br \>
2016-12-16 08:55:28 +00:00
- Renamed `get_birthday()` -- > `get_install_date()`
2016-12-18 17:28:58 +00:00
- Removed all `date` usage from `get_install_date()`.
2016-12-16 08:55:28 +00:00
- Added a new function called `convert_time()` which takes the time stamped `ls` output and converts it to a pretty format. The function only uses bash so its much faster than calling `date`. This makes things simple and keeps the output consistent across all Operating Systems. Example: `2016-12-06 16:58:58.000000000` --> `Tue 06 Dec 2016 4:58 PM`
2016-12-10 08:23:59 +00:00
**Disk**<br \>
2016-12-16 23:49:07 +00:00
- Rewrote function from scratch.
- The function is `40` lines smaller than before and works on all \[1\] versions of `df` we tested on \[2\].
- We only show the `root (/)` partition now.
2016-12-19 04:03:26 +00:00
- Showing a total of all disks only worked on GNU `df` and we had to hardcode different commands for Distros and Operating Systems that used a different `df`.
2016-12-18 02:19:50 +00:00
- We're using the same `df` flags across all Operating Systems now.
2016-12-16 23:49:07 +00:00
- No more ugly case statements or per distro hardcoding of `df` flags.
- Removed all percentage calculation since `df` already provides us with the percentage.
2016-12-10 08:23:59 +00:00
- Warn the user if `df` isn't installed.
- Fixed broken output if `df` wasn't installed but the function was enabled.
2016-12-18 02:19:50 +00:00
2016-12-19 04:03:26 +00:00
\[1\] The function doesn't work on Haiku since their `df` is wildly non-standard. (The output format and flags are 100% different from all of the other `df` versions floating around.)
2016-12-16 23:49:07 +00:00
\[2\] Tested on `GNU`, `Busybox`, `BSD`, `Solaris` and `macOS` `df` versions.
2016-12-10 08:23:59 +00:00
2016-12-12 07:28:41 +00:00
**Song**<br \>
2016-12-15 13:12:57 +00:00
- [cmus] Simplify block and fix `artistsort` bug.
- Removed `state` detection.
- Removed duplicate `dbus-send` commands.
2016-12-18 17:28:58 +00:00
- Added support for xmms2. **[@z33ky](https://github.com/z33ky)**
2016-12-12 07:28:41 +00:00
2016-12-12 23:20:58 +00:00
**Battery**<br \>
2016-12-12 23:21:12 +00:00
- [MacOS] Fixed issue where battery always appears as charging. **[@jorgegonzalez](https://github.com/jorgegonzalez)**
2016-12-12 23:20:58 +00:00
2016-12-15 22:42:27 +00:00
**Local IP**<br \>
2016-12-18 02:19:50 +00:00
- [BSD and Solaris] Merged the detection to Linux.
2016-12-15 22:42:27 +00:00
- [Windows] Support multiple interfaces.
2016-12-10 12:57:54 +00:00
**Color Blocks**<br \>
- Use start++ instead of adding it manually after case. **[@konimex](https://github.com/konimex)**
2016-12-19 04:15:03 +00:00
- Fixed bug where color blocks wouldn't respect width in TTYs.
2016-12-10 08:23:59 +00:00
2016-12-12 12:56:14 +00:00
2016-12-08 14:22:20 +00:00
## Images
- [iTerm2] Fixed blank images.
2016-12-09 05:20:44 +00:00
2016-12-10 08:23:59 +00:00
2016-12-09 05:20:44 +00:00
## Ascii
2016-12-13 08:27:43 +00:00
- Added Ubuntu-Studio. **[@konimex](https://github.com/konimex)**
2016-12-09 05:20:44 +00:00
- Fixed bug causing macOS ascii art to be used on other Operating Systems.
2016-12-10 09:12:46 +00:00
- Display warning about 'ascii' being the new default mode.
2016-12-12 12:55:56 +00:00
2016-12-12 12:56:14 +00:00
2016-12-12 12:55:56 +00:00
## Screenshot
- Use arrays for `$scrot_program`
2016-12-16 02:25:58 +00:00
2016-12-16 02:26:08 +00:00
2016-12-16 02:25:58 +00:00
## Args
- Fixed bug where `neofetch --config` sourced the user config twice.
- Cleaned up config arg handling.