Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6d3f8171e5 | ||
|
|
3f1c570e84 | ||
|
|
cd88ae264e | ||
|
|
b2abcae319 | ||
|
|
41a5c675bf | ||
|
|
ac9f896a22 | ||
|
|
36d57914b2 | ||
|
|
800ba5dd0d |
@@ -100,5 +100,6 @@ docker-registry-tags:
|
|||||||
before_script:
|
before_script:
|
||||||
- docker login -u gitlab-ci-token -p $CI_JOB_TOKEN registry.gitlab.com
|
- docker login -u gitlab-ci-token -p $CI_JOB_TOKEN registry.gitlab.com
|
||||||
script:
|
script:
|
||||||
|
- apk add git
|
||||||
- docker build --tag registry.gitlab.com/commento/commento-ce:$(git describe --tags) .
|
- docker build --tag registry.gitlab.com/commento/commento-ce:$(git describe --tags) .
|
||||||
- docker push registry.gitlab.com/commento/commento-ce:$(git describe --tags)
|
- docker push registry.gitlab.com/commento/commento-ce:$(git describe --tags)
|
||||||
|
|||||||
10
README.md
10
README.md
@@ -38,6 +38,16 @@ Commento is possible only because of its community. If this is your first contri
|
|||||||
|
|
||||||
Help will always be given to those who ask for it. We use IRC for chat to collaborate with other developers. You're invited to [hang out with us](https://irc.commento.io) in the `#commento-dev` channel on freenode if you want to contribute to Commento!
|
Help will always be given to those who ask for it. We use IRC for chat to collaborate with other developers. You're invited to [hang out with us](https://irc.commento.io) in the `#commento-dev` channel on freenode if you want to contribute to Commento!
|
||||||
|
|
||||||
|
### Sponsors
|
||||||
|
|
||||||
|
Commento CE development is sponsored by [Mozilla](https://mozilla.org) and [DigitalOcean](https://www.digitalocean.com/) independently.
|
||||||
|
|
||||||
|
<p align="center">
|
||||||
|
<a href="https://www.mozilla.org/en-US/"><img src="https://user-images.githubusercontent.com/7521600/32265838-d05b2d08-bf0a-11e7-92e1-2cb183eae616.png" title="Mozilla" height="40"></a>
|
||||||
|
|
||||||
|
<a href="https://www.digitalocean.com"><img src="https://user-images.githubusercontent.com/7521600/32265839-d093c7da-bf0a-11e7-8d99-96a940041d06.png" title="DigitalOcean" height="40"></a>
|
||||||
|
</p>
|
||||||
|
|
||||||
#### License
|
#### License
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
var edition = "ce"
|
var edition = "ce"
|
||||||
var version = "v1.1.1"
|
var version = "v1.2.0"
|
||||||
|
|||||||
7
db/20181007230906-store-version.sql
Normal file
7
db/20181007230906-store-version.sql
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
CREATE TABLE IF NOT EXISTS config (
|
||||||
|
version TEXT NOT NULL
|
||||||
|
);
|
||||||
|
|
||||||
|
INSERT INTO
|
||||||
|
config (version)
|
||||||
|
VALUES ('v1.1.3');
|
||||||
2
db/20181007231407-v1.1.4.sql
Normal file
2
db/20181007231407-v1.1.4.sql
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
UPDATE config
|
||||||
|
SET version = 'v1.2.0';
|
||||||
@@ -588,7 +588,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
cur.sort(function(a, b) {
|
cur.sort(function(a, b) {
|
||||||
return a.score - b.score;
|
return b.score - a.score;
|
||||||
});
|
});
|
||||||
|
|
||||||
var cards = create("div");
|
var cards = create("div");
|
||||||
|
|||||||
@@ -152,7 +152,7 @@ textarea {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.commento-create-button {
|
.commento-create-button {
|
||||||
width: 120px;
|
width: 150px;
|
||||||
background: $pink-9;
|
background: $pink-9;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user