Skip to content

Commit

Permalink
Preparing for v0.09 release
Browse files Browse the repository at this point in the history
  • Loading branch information
hkdb committed Jun 8, 2024
1 parent b103773 commit bb87547
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 36 deletions.
45 changes: 11 additions & 34 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,17 @@ If this repo was useful to you, feel free to buy us some coffee! :)

### VERSIONS

#### v0.09

- Fixed brew and flatpak restore - Thanks to @RichardFevrier
- Fixed default enabled values to avoid errors on first launch - Thanks to @RichardFevrier
- Output history in alphabetical order by default and allow users to use the -raw flag to output history in the order packages were installed
- Fixed -y behavior for flatpak

- Development Feature: Added pre-commit linter - Thanks to @RicherFevrier
- Development Feature: Auto-compile binaries on release in preparation for better distribution/installation solution - Thanks to @RicherFevrier


#### v0.08

- Fixed FreeBSD handling of go, pip, and cargo
Expand Down Expand Up @@ -230,40 +241,6 @@ echo "BREW = n" >> ~/.config/app/settings.conf
- First Alpha Release


### CHANGE

- 06062024 - Added raw flag for history sort handling
- 06062024 - Manual resolve conflict
- 06062024 - Fixed default enable values
- 05272024 - Amended, not ammended :P
- 05272024 - Ammended version in main.go
- 05272024 - Preparing to release v0.08
- 05262024 - Added update and cleaned up pacman and yay
- 05262024 - Bumping dev version for @RichardFevrier's pull request
- 05232024 - Fixed FreeBSD handling of go, pip, and cargo
- 05162024 - Prepared v0.07 release
- 05162024 - Added update for fedora, added update before upgrade all for fedora and freebsd, and tweaked install script
- 05162024 - Fixed fedora install, clean-up settings handling, and added FreeBSD support
- 04022024 - Added LinuxMint support
- 02202024 - Fixed flatpak and apt list
- 02102024 - Update README for v0.05 release
- 02092024 - Fixed appimage .desktop bug
- 02012024 - Updated help
- 02012024 - Updated README for v0.04 release
- 02012024 - Fixed dist-upgrade
- 02012024 - Allow for debian packages with .
- 01312024 - Fixed url check for short package names
- 01172024 - Updated Install instructions
- 01172024 - Minor fixes & added go, pip, and cargo
- 01102024 - Added brew, mac support, & fixed settings
- 01042024 - Summary edit
- 01042024 - Updated summary of README
- 01042024 - Updated background of README
- 01032024 - Added upgrade examples in README
- 01032024 - Updated README
- 01022024 - Fixed flatpak remove
- 12312023 - Initial commit


### DISCLAIMER

Expand Down
2 changes: 1 addition & 1 deletion cli/flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ var classic = flag.Bool("classic", false,
var tag = flag.String("tag", "",
"Tag (version) for cargo\n usage: app -m cargo -tag <version> install <git url>\n example: app -m cargo -tag 0.2.0 install https://github.com/donovanglover/hyprnome\n")
var raw = flag.Bool("raw", false,
"Raw history output instead of alphabetically sorted output...\n usage: app -raw history\n example: app -raw history")
"Raw history output instead of alphabetically sorted output\n usage: app -raw history\n example: app -raw history\n")


func ParseFlags() env.Flags {
Expand Down
8 changes: 8 additions & 0 deletions docs/EXAMPLES.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,14 @@ app -m pip upgrade
app -m cargo upgrade
```

If you are using app to automate update/upgrade, you can use the -y flag as long as you are not using pip. For example, if you are using apt and flatpak:

```
app -y upgrade all
```
However, be aware of the risks of just blindly upgrading systems.


If you use 3rd party repos for apt, dnf, or flatpak, no worries. They will be automatically restored from the restore command prior to package installation if you add them the following way:

#### EXAMPLE 1 ~ Official Graphics Driver PPA for Ubuntu
Expand Down
5 changes: 5 additions & 0 deletions docs/USAGE.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,11 @@ OPTIONS:
- cargo
- appimage
- all
-raw
Raw history output instead of alphabetically sorted output...
usage: app -raw history
example: app -raw history
-tag string
Tag (version) for cargo
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (

func main() {

utils.LogLaunchBanner("v0.08.02")
utils.LogLaunchBanner("v0.09")

// Detect environment
cli.GetEnv()
Expand Down

0 comments on commit bb87547

Please sign in to comment.