-
-
Notifications
You must be signed in to change notification settings - Fork 148
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feat/ollama.com
- Loading branch information
Showing
39 changed files
with
994 additions
and
1,515 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
"@std/fmt": "jsr:@std/fmt@^0.225.6", | ||
"@std/fs": "jsr:@std/fs@^1.0.1", | ||
"@std/path": "jsr:@std/path@^1.0.2", | ||
"@std/yaml": "jsr:@std/yaml@^1.0.2", | ||
"@std/yaml": "jsr:@std/yaml@^1.0.3", | ||
"ajv": "npm:[email protected]", | ||
"catppuccin-repo/": "https://raw.githubusercontent.com/catppuccin/catppuccin/d4f2666c2b04337f0a8632713de0889d9a7d332d/", | ||
"handlebars": "npm:[email protected]", | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,12 @@ | ||
{ | ||
deno, | ||
typos, | ||
mkShellNoCC, | ||
nodePackages, | ||
... | ||
}: | ||
mkShellNoCC { | ||
packages = [ | ||
deno | ||
typos | ||
nodePackages.prettier | ||
]; | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# /// script | ||
# requires-python = ">=3.11" | ||
# dependencies = [ | ||
# "boardinator==0.1.0", | ||
# "catppuccin==2.1.0", | ||
# ] | ||
# /// | ||
import os | ||
from catppuccin import PALETTE | ||
from boardinator.boardinator import replace_colors | ||
|
||
cwd = os.getcwd() | ||
|
||
for flavor in PALETTE: | ||
for color in flavor.colors: | ||
if not color.accent: | ||
continue | ||
color_dict = { | ||
# Light grayish yellow green | ||
(237, 238, 209): ( | ||
flavor.colors.base.rgb.r, | ||
flavor.colors.base.rgb.g, | ||
flavor.colors.base.rgb.b, | ||
), | ||
# Dark grayish yellow green | ||
(119, 153, 82): ( | ||
color.rgb.r, | ||
color.rgb.g, | ||
color.rgb.b, | ||
), | ||
} | ||
replace_colors( | ||
image_path=os.path.join(cwd, "assets/base/colorboard.png"), | ||
output_path=os.path.join( | ||
cwd, f"assets/{flavor.identifier}/{color.identifier}.png" | ||
), | ||
color_dict=color_dict, | ||
) |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.