Skip to content

Commit

Permalink
Fixing some rendering issues. Getting this running on Lucky 1.1.0 and…
Browse files Browse the repository at this point in the history
… updated versions (#1270)
  • Loading branch information
jwoertink authored Nov 1, 2023
1 parent 7431488 commit 1b3ff63
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 15 deletions.
24 changes: 14 additions & 10 deletions shard.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2.0
shards:
ameba:
git: https://github.com/crystal-ameba/ameba.git
version: 1.4.2
version: 1.5.0+git.commit.c9538220c6eee41dcd15a2d1c2ec87953721a3fc

awscr-s3:
git: https://github.com/taylorfinnell/awscr-s3.git
Expand All @@ -22,43 +22,43 @@ shards:

carbon:
git: https://github.com/luckyframework/carbon.git
version: 0.3.0
version: 0.4.1

carbon_sendgrid_adapter:
git: https://github.com/luckyframework/carbon_sendgrid_adapter.git
version: 0.3.0
version: 0.4.0

cmark:
git: https://github.com/amauryt/cr-cmark-gfm.git
version: 0.1.2+git.commit.a8fa0cf2da359444d110f2303f85bddf1158e417
version: 0.1.3+git.commit.a1dddcf35252c82b2fe55239ab198ad8239e8a33

cry:
git: https://github.com/luckyframework/cry.git
version: 0.4.3

crystar:
git: https://github.com/naqvis/crystar.git
version: 0.2.0+git.commit.56db8bb9dfbd5ed6d7908353405a5fae632a6561
version: 0.3.1

dexter:
git: https://github.com/luckyframework/dexter.git
version: 0.3.4

exception_page:
git: https://github.com/crystal-loot/exception_page.git
version: 0.3.0
version: 0.3.1

habitat:
git: https://github.com/luckyframework/habitat.git
version: 0.4.7
version: 0.4.8

lexbor:
git: https://github.com/kostya/lexbor.git
version: 3.0.4

lucky:
git: https://github.com/luckyframework/lucky.git
version: 1.0.0
version: 1.1.0

lucky_env:
git: https://github.com/luckyframework/lucky_env.git
Expand All @@ -74,7 +74,11 @@ shards:

lucky_task:
git: https://github.com/luckyframework/lucky_task.git
version: 0.1.1
version: 0.3.0

lucky_template:
git: https://github.com/luckyframework/lucky_template.git
version: 0.2.0

pulsar:
git: https://github.com/luckyframework/pulsar.git
Expand All @@ -98,7 +102,7 @@ shards:

webdrivers:
git: https://github.com/matthewmcgarvey/webdrivers.cr.git
version: 0.4.1
version: 0.4.3

wordsmith:
git: https://github.com/luckyframework/wordsmith.git
Expand Down
2 changes: 1 addition & 1 deletion shard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ crystal: ">= 1.6.0"
dependencies:
lucky:
github: luckyframework/lucky
version: ~> 1.0.0
version: ~> 1.1.0
carbon:
github: luckyframework/carbon
version: ~> 0.3
Expand Down
4 changes: 2 additions & 2 deletions src/css/app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ h3 {
background-image: linear-gradient(30deg, #00a7c1 0%, #25e0c1 100%);
}

@layer {
@layer components {
.bg-lucky-teal-blue-gradient {
background-image: linear-gradient(
30deg,
Expand Down Expand Up @@ -77,7 +77,7 @@ h3 {
transition: 0.1s ease-in-out all;
}

@layer {
@layer components {
.pl-sidebar {
padding-left: 390px;
}
Expand Down
3 changes: 3 additions & 0 deletions src/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ hljs.registerLanguage('yaml', yaml);
import diff from 'highlight.js/lib/languages/diff';
hljs.registerLanguage('diff', diff);

import plain from 'highlight.js/lib/languages/plaintext';
hljs.registerLanguage('plain', plain);

import docsearch from '@docsearch/js';

document.addEventListener("turbo:load", function () {
Expand Down
4 changes: 2 additions & 2 deletions src/models/lucky_cli_version.cr
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ module LuckyCliVersion
end

def current_version : SemanticVersion
SemanticVersion.new(1, 0, 0)
SemanticVersion.new(1, 1, 0)
end

def min_compatible_crystal_version : SemanticVersion
SemanticVersion.new(1, 6, 0)
end

def max_compatible_crystal_version : SemanticVersion
SemanticVersion.new(1, 8, 0)
SemanticVersion.new(1, 10, 1)
end
end

0 comments on commit 1b3ff63

Please sign in to comment.