Skip to content

Commit f3b73a2

Browse files
Merge pull request #112 from ArthurLobopro/feat-limit-line-size
Symbol Breadcrumb
2 parents 8881781 + 25bd47f commit f3b73a2

File tree

6 files changed

+10
-4
lines changed

6 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 1.27.0
2+
3+
Feat: Symbol Breadcrumb by [Kyrax324](https://github.com/Kyrax324)
4+
15
## 1.26.1
26

37
Feat: Max char width on One Time Config

l10n/bundle.l10n.pt-br.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@
5959
"Enables manual resizing of the `Snap Window`.": "Ativa o redimencionamento manual da `Snap Window`.",
6060
"Disabling this will also reset the `Snap Window` size.": "Desativar isso também irá resetar o tamanho da `Snap Window`.",
6161
"Show Watermark": "Mostrar marca d'água",
62+
"Watermark Position": "Posição da marca d'água",
6263
"The position of the watermark in the snapshot. Top positions are only available when `Target` is `container`": "A posição da marca d'água na captura de tela. Posições superiores só são disponíveis quando `Alvo` é `container`",
6364
"Max char width": "Tamanho Máx. de Caracteres",
6465
"You must have one text selection!": "Você precisa ter algum texto selecionado!",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "easy-codesnap",
33
"displayName": "Easy CodeSnap",
44
"description": "Take beautiful screenshots of your code 📷",
5-
"version": "1.26.1",
5+
"version": "1.27.0",
66
"l10n": "./l10n",
77
"repository": {
88
"type": "git",

package.nls.pt-br.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"easy-codesnap.target": "Capturar a tela com ou sem o container",
1717
"easy-codesnap.shutterAction": "O comportamento do botão de captura",
1818
"easy-codesnap.enableResizing": "Habilita o redimensionamento do container",
19-
"easy-codesnap.enableSymbolBreadcrumb": "Habilita o breadcrumb de simbolos",
19+
"easy-codesnap.enableSymbolBreadcrumb": "Habilita o breadcrumb de símbolos",
2020
"easy-codesnap.roundingLevel": "Change container border radius level",
2121
"easy-codesnap.lockOnOpen": "Bloquear a tela de Snap ao editor ao abrir",
2222
"easy-codesnap.linkOnOpen": "Conectar a tela de Snap ao editor ao abrir",

webview/styles/original-style.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ body {
2222
font-feature-settings: var(--font-features);
2323
tab-size: var(--tab-size);
2424
user-select: none;
25+
26+
padding-bottom: 1rem;
2527
}
2628

2729
code {
@@ -152,7 +154,6 @@ div:has(#snippet-scroll) {
152154

153155
#save-container {
154156
margin-top: 1rem;
155-
margin-bottom: 1rem;
156157
text-align: center;
157158
}
158159

webview/styles/window-controls.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@
2828
margin-top: -8px;
2929
margin-right: -4px;
3030
justify-content: right;
31+
margin-bottom: 10px;
3132
}
3233

3334
#window-controls {
3435
gap: 16px;
35-
float: right;
3636
justify-self: right;
3737
order: 3;
3838

0 commit comments

Comments
 (0)