Skip to content

Commit 100af48

Browse files
authored
Merge pull request #1423 from informalsystems/gabriela/readme-updates
New Logo ✨
2 parents 2d142cb + 9be2fc7 commit 100af48

15 files changed

+29
-88
lines changed

README.md

+12-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
<div align="center">
22

33
<!-- Title -->
4-
<img src="./logos/quint-logo.png" alt="Quint Lang Logo" width="90"/>
5-
<h1>Quint Lang</h1>
4+
<picture>
5+
<source media="(prefers-color-scheme: dark)" srcset="./logos/quint-logo-light.png">
6+
<img alt="Quint Lang" src="./logos/quint-logo-dark.png" width=700>
7+
</picture>
68

79
<!-- Menu -->
810
<p>
@@ -28,11 +30,16 @@
2830
src="https://img.shields.io/npm/v/@informalsystems/quint"
2931
alt="npm (scoped)">
3032
</a>
33+
<a href="https://t.me/quint_lang">
34+
<img
35+
src="https://img.shields.io/badge/chat-telegram-blue"
36+
alt="telegram group">
37+
</a>
3138
</p>
3239
</div>
3340

3441

35-
## Overview
42+
# The Quint specification language
3643

3744
Quint is a modern specification language that is a particularly good fit for
3845
distributed systems, such as blockchain protocols, distributed databases, and
@@ -253,7 +260,7 @@ Cosmos in 2023.
253260

254261
## Community
255262

256-
- Join the chat in the [Quint zulip stream](https://informal-systems.zulipchat.com/#narrow/stream/378959-quint)
263+
- Join the chat in the [Telegram group](https://t.me/quint_lang) or in the [Zulip stream](https://informal-systems.zulipchat.com/#narrow/stream/378959-quint)
257264
- Join the [Quint discussions on GitHub](https://github.com/informalsystems/quint/discussions)
258265
- [Contribute your spell](./examples/spells/contribute-your-spell.md) to the collection of Quint spells
259266
- [Contribute](./CONTRIBUTING.md) to the development of Quint
@@ -280,7 +287,7 @@ become referenced artifacts.
280287
## Acknowledgments
281288

282289
Quint has been designed and developed by the [Apalache][] team: [Gabriela
283-
Moreira](https://github.com/bugarela), [Igor Konnov](https://konnov.github.io/),
290+
Moreira](https://bugarela.com), [Igor Konnov](https://konnov.github.io/),
284291
[Jure Kukovec](https://github.com/Kukovec), [Shon Feder](http://shonfeder.net),
285292
and [Thomas Pani](https://thpani.net/). :heart:
286293

logos/quint-logo-dark.png

16.9 KB
Loading

logos/quint-logo-dark.svg

+1
Loading

logos/quint-logo-light.png

15.8 KB
Loading

logos/quint-logo-light.svg

+1
Loading

logos/quint-logo.png

-207 KB
Binary file not shown.

logos/quint-logo.svg

-68
This file was deleted.

vscode/quint-vscode/CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### Added
1111
### Changed
12+
13+
- Updated the logo
14+
1215
### Deprecated
1316
### Removed
1417
### Fixed
15.4 KB
Loading
+1
Loading
14.7 KB
Loading
+1
Loading

vscode/quint-vscode/icons/logo.png

14.6 KB
Loading

vscode/quint-vscode/package.json

+10-15
Original file line numberDiff line numberDiff line change
@@ -2,38 +2,33 @@
22
"name": "quint-vscode",
33
"displayName": "Quint",
44
"description": "Language support for Quint specifications",
5-
"icon": "quint-logo-vscode.png",
5+
"icon": "./icons/logo.png",
66
"version": "0.14.0",
77
"publisher": "informal",
88
"engines": {
99
"vscode": "^1.52.0"
1010
},
11-
"categories": [
12-
"Programming Languages"
13-
],
11+
"categories": ["Programming Languages"],
1412
"bugs": {
1513
"url": "https://github.com/informalsystems/quint/issues"
1614
},
1715
"repository": {
1816
"type": "git",
1917
"url": "https://github.com/informalsystems/quint.git"
2018
},
21-
"activationEvents": [
22-
"onLanguage:quint"
23-
],
19+
"activationEvents": ["onLanguage:quint"],
2420
"main": "./client/out/extension",
2521
"contributes": {
2622
"languages": [
2723
{
2824
"id": "quint",
29-
"aliases": [
30-
"Quint",
31-
"quint"
32-
],
33-
"extensions": [
34-
".qnt"
35-
],
36-
"configuration": "./language-configuration.json"
25+
"aliases": ["Quint", "quint"],
26+
"extensions": [".qnt"],
27+
"configuration": "./language-configuration.json",
28+
"icon": {
29+
"light": "./icons/logo-dark.png",
30+
"dark": "./icons/logo-light.png"
31+
}
3732
}
3833
],
3934
"grammars": [
-3.21 KB
Binary file not shown.

0 commit comments

Comments
 (0)