Skip to content

Commit

Permalink
Add image and principles to readme
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasPickering committed Dec 22, 2023
1 parent 262358c commit 00245dd
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/data
/target
/.vscode
.DS_Store

# Generated by `oranda generate ci`
public/
public/
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright 2022 Lucas Pickering
Copyright 2023 Lucas Pickering

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@
# Slumber

![Test CI](https://github.com/github/docs/actions/workflows/test.yml/badge.svg)
![crates.io](https://img.shields.io/crates/v/slumber.svg)

- [Home Page](https://slumber.lucaspickering.me)
- [Installation](https://slumber.lucaspickering.me/artifacts/)
- [Docs](https://slumber.lucaspickering.me/book/)
- [Changelog](https://slumber.lucaspickering.me/changelog/)

Slumber is a TUI (terminal user interface) HTTP client. Define, execute, and share configurable HTTP requests.
![Slumber example](./images/banner.png)

Slumber is a TUI (terminal user interface) HTTP client. Define, execute, and share configurable HTTP requests. Slumber is built on some basic principles:

- It will remain free to use forever
- You own your data: all configuration and data is stored locally and can be checked into version control
- It will never be [enshittified](https://en.wikipedia.org/wiki/Enshittification)

## Examples

Expand Down
Binary file added images/banner.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/tui/view/component/primary.rs
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ impl<'a> Draw<PrimaryViewProps<'a>> for PrimaryView {
let [request_area, response_area] = layout(
right_area,
Direction::Vertical,
[Constraint::Percentage(50), Constraint::Percentage(50)],
[Constraint::Ratio(1, 3), Constraint::Ratio(2, 3)],
);

// Primary panes
Expand Down

0 comments on commit 00245dd

Please sign in to comment.