Skip to content

Commit

Permalink
add: updates to changelog for v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pineapplegiant committed Jun 27, 2021
1 parent 0d39f45 commit 467d85e
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 22 deletions.
42 changes: 35 additions & 7 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,44 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
- Light, medium contrast variant themes.
- Support for user config for bold and italic text.
- Full TreeSitter support.
- Lua version of color scheme for neovim.
- Better diff view colors.


## [0.1.0, Unreleased] - 2020-06-TBD

## [0.1.0] - 2020-06-20

### Added
- This CHANGELOG file to hopefully serve as an evolving example of a
standardized open source project CHANGELOG.
- CNAME file to enable GitHub Pages custom domain
- README now contains answers to common questions about CHANGELOGs
- Good examples and basic guidelines, including proper date formatting.
- Counter-examples: "What makes unicorns cry?"
- New organization: [Spaceduck Theme](https://github.com/spaceduck-theme)
to track all ports.
- Hot new violet color: #5c6dcc

### Changed
- Changed color names for more semantic consistency.
Ie: Went from 'purple1', 'purple2' to 'purple', 'dark purple', etc.
- Color corrected most colors to focus on 16bit color harmony.
(a huge departure from consistency with the 256 version):
- Red: #e33400 -> #f25244
- Orange: #e39400 -> #f2b45c
- Yellow: #f2ce00 -> #f2e15c
- Purple: #7a5ccc -> #946cd9
- Cyan: #00a3cc -> #59C2FF
- Magenta: #ce6f8f -> #cc7893
- DarkPurple: #686f9a -> #535f97
- Selection: #1b1c36 -> #30365F


### Removed
- No longer using estilo as a dependency to manage colors, instead using viml dictionary like other modern color schemes.


### Fixed
- Brighter comment color. Yes you can see actually see them now. #30365F -> #535f97

<!--[Unreleased]: https://github.com/olivierlacan/keep-a-changelog/compare/v1.0.0...HEAD-->
<!--[0.0.1]: https://github.com/olivierlacan/keep-a-changelog/releases/tag/v0.0.1-->
<!--[Unreleased]: https://github.com/pineapplegiant/spaceduck/compare/v1.0.0...HEAD-->
15 changes: 0 additions & 15 deletions colors/spaceduck.vim
Original file line number Diff line number Diff line change
Expand Up @@ -29,19 +29,6 @@ let g:colors_name="spaceduck"
" Testing...
" Treesitter cleanup

" TODO: Add to changelog {{
"lavender is now light purple
"purple2 is now purple
"darkpurple is now selection
"darkpurple2 is now darkpurple
"turquoise is now violet
"light_blue got removed
"deep_space is now background
"cream is now fg
"comment is using darkpurple
"oldcomment is using newColor? Violet?
" }}

" PALETTE: {{{
let s:palette = {
\ 'red': ['#f25244', '203'],
Expand All @@ -53,9 +40,7 @@ let s:palette = {
\ 'darkpurple': ['#535f97', '236'],
\ 'cyan': ['#59c2ff', '75'],
\ 'magenta': ['#cc7893', '174'],
\
\ 'violet': ['#5c6dcc', '62'],
\ 'lightorange': ['#f29d61', '215'],
\
\ 'background': ['#0f111b', '233'],
\ 'foreground': ['#ecf0c1', '255'],
Expand Down

3 comments on commit 467d85e

@euglevi
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The theme is becoming even nicer than before! One issue tough: you removed light orange from the palette but it is still there in the Spaceduck color variables.

@pineapplegiant
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oof what a fail. Good catch 😅 Hoping to get everything ironed out tonight

@pineapplegiant
Copy link
Owner Author

@pineapplegiant pineapplegiant commented on 467d85e Jun 27, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just threw a quick commit there. Should be ok now sorry about that @euglevi

Please sign in to comment.