Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
{
"recommendations": [
"charliermarsh.ruff",
"dbaeumer.vscode-eslint",
"editorconfig.editorconfig",
"esbenp.prettier-vscode",
"ExecutableBookProject.myst-highlight",
"github.vscode-github-actions",
"ms-python.python",
"ms-vscode-remote.remote-containers",
"redhat.vscode-yaml",
"editorconfig.editorconfig"
"stylelint.vscode-stylelint",
"plone.plone-vs-utilities"
]
}
}
19 changes: 17 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,29 @@
{
"eslint.workingDirectories": ["./frontend"],
"flake8.cwd": "${workspaceFolder}/backend",
"flake8.args": ["--config=pyproject.toml"],
"stylelint.enable": true,
"css.validate": false,
"less.validate": false,
"scss.validate": false,
"ruff.organizeImports": true,
"python.analysis.include": [
"backend/src/**/*",
"backend/scripts/**/*",
"backend/tests/**/*"
],
"python.terminal.activateEnvironment": true,
"python.testing.pytestArgs": [
"backend/tests"
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"[css][less][scss]": {
"editor.tabSize": 2,
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.stylelint": "explicit"
},
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[markdown]": {
"editor.formatOnSave": false
}
Expand Down
1 change: 1 addition & 0 deletions backend/news/+tech-event.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Atualiza collective.techevent para versão 1.0.0a22. @ericof
4 changes: 2 additions & 2 deletions backend/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ dependencies = [
"collective.volto.formsupport",
"pas.plugins.authomatic==2.0.0",
"collective.honeypot",
"collective.techevent==1.0.0a19",
"collective.techevent==1.0.0a21",
"plone.app.upgrade",
"plone.app.discussion",
]
Expand Down Expand Up @@ -105,7 +105,7 @@ constraint-dependencies = [
"collective.recipe.omelette==2.0.0",
"collective.recipe.template==2.2",
"collective.recipe.vscode==0.1.9",
"collective.techevent==1.0.0a19",
"collective.techevent==1.0.0a21",
"collective.xmltestreport==2.0.2",
"collective.z3cform.datagridfield==3.0.4",
"colorama==0.4.6",
Expand Down
10 changes: 5 additions & 5 deletions backend/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion frontend/mrs.developer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"package": "@plone/volto",
"url": "git@github.com:plone/volto.git",
"https": "https://github.com/plone/volto.git",
"tag": "18.23.0",
"tag": "19.0.0-alpha.5",
"filterBlobs": true
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Atualiza @plone-collective/volto-techevent para versão 1.0.0-alpha.22. @ericof
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Atualiza @kitconcept/volto-light-theme para versão 7.0.0-beta.5 @ericof
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Atualiza @plone/volto para versão 19.0.0-alpha.5. @ericof
4 changes: 2 additions & 2 deletions frontend/packages/volto-pythonbrasil-site/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@
"@plone/registry": "workspace:*",
"@eeacms/volto-matomo": "*",
"@eeacms/volto-statistic-block": "*",
"@plone-collective/volto-techevent": "1.0.0-alpha.19",
"@kitconcept/volto-light-theme": "7.0.0-alpha.22",
"@plone-collective/volto-techevent": "1.0.0-alpha.22",
"@kitconcept/volto-light-theme": "7.0.0-beta.5",
"@kitconcept/volto-social-blocks": "1.0.0-alpha.8",
"@mbarde/volto-image-crop-widget": "0.5.1",
"@plone-collective/volto-authomatic": "3.0.0-alpha.3",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,16 @@
min-height: 30rem * 0.75;
}
}
@media only screen and (min-width: $tablet-breakpoint) {
.tab-content {
grid-gap: 1rem 0.2rem !important;
.sessionTile {
.sessionInfo {
.sessionInfoItem.slotRoom {
display: none;
}
}
}
}
}
}
Loading
Loading