diff --git a/shard.lock b/shard.lock index 3700a18f..25091e7d 100644 --- a/shard.lock +++ b/shard.lock @@ -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 @@ -22,15 +22,15 @@ 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 @@ -38,7 +38,7 @@ shards: 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 @@ -46,11 +46,11 @@ shards: 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 @@ -58,7 +58,7 @@ shards: 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 @@ -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 @@ -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 diff --git a/shard.yml b/shard.yml index f022c2bd..ed1e7e6d 100644 --- a/shard.yml +++ b/shard.yml @@ -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 diff --git a/src/css/app.scss b/src/css/app.scss index 55b07075..edfae285 100644 --- a/src/css/app.scss +++ b/src/css/app.scss @@ -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, @@ -77,7 +77,7 @@ h3 { transition: 0.1s ease-in-out all; } -@layer { +@layer components { .pl-sidebar { padding-left: 390px; } diff --git a/src/js/app.js b/src/js/app.js index 9485a47b..39f4eb6a 100644 --- a/src/js/app.js +++ b/src/js/app.js @@ -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 () { diff --git a/src/models/lucky_cli_version.cr b/src/models/lucky_cli_version.cr index 4eda3aef..52aab3b3 100644 --- a/src/models/lucky_cli_version.cr +++ b/src/models/lucky_cli_version.cr @@ -8,7 +8,7 @@ module LuckyCliVersion end def current_version : SemanticVersion - SemanticVersion.new(1, 0, 0) + SemanticVersion.new(1, 1, 0) end def min_compatible_crystal_version : SemanticVersion @@ -16,6 +16,6 @@ module LuckyCliVersion end def max_compatible_crystal_version : SemanticVersion - SemanticVersion.new(1, 8, 0) + SemanticVersion.new(1, 10, 1) end end