Skip to content

Commit

Permalink
Merge pull request RocketChat#241 from assistify/port/0.61.1
Browse files Browse the repository at this point in the history
Merge Rocket.Chat 0.61.1
  • Loading branch information
mrsimpson authored Feb 19, 2018
2 parents 16dc982 + c94a5db commit 88975b8
Show file tree
Hide file tree
Showing 20 changed files with 99 additions and 48 deletions.
2 changes: 1 addition & 1 deletion .docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM rocketchat/base:8

ENV RC_VERSION 0.61.0
ENV RC_VERSION 0.61.1

MAINTAINER buildmaster@rocket.chat

Expand Down
2 changes: 1 addition & 1 deletion .sandstorm/sandstorm-pkgdef.capnp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const pkgdef :Spk.PackageDefinition = (

appVersion = 62, # Increment this for every release.

appMarketingVersion = (defaultText = "0.61.0"),
appMarketingVersion = (defaultText = "0.61.1"),
# Human-readable representation of appVersion. Should match the way you
# identify versions of your app in documentation and marketing.

Expand Down
2 changes: 1 addition & 1 deletion .travis/snap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ elif [[ $TRAVIS_TAG ]]; then
RC_VERSION=$TRAVIS_TAG
else
CHANNEL=edge
RC_VERSION=0.61.0
RC_VERSION=0.61.1
fi

echo "Preparing to trigger a snap release for $CHANNEL channel"
Expand Down
17 changes: 17 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
<a name="0.61.1"></a>
## 0.61.1 (2018-02-14)


### Bug Fixes

- [#9714](https://github.com/RocketChat/Rocket.Chat/pull/9714) Close Livechat conversation by visitor not working in version 0.61.0
- [#9639](https://github.com/RocketChat/Rocket.Chat/pull/9639) Desktop notification not showing when avatar came from external storage service
- [#9640](https://github.com/RocketChat/Rocket.Chat/pull/9640) Facebook integration in livechat not working on version 0.61.0
- [#9067](https://github.com/RocketChat/Rocket.Chat/pull/9067) Formal pronouns and some small mistakes in German texts
- [#9716](https://github.com/RocketChat/Rocket.Chat/pull/9716) GitLab OAuth does not work when GitLab’s URL ends with slash
- [#9720](https://github.com/RocketChat/Rocket.Chat/pull/9720) Messages can't be quoted sometimes
- [#9626](https://github.com/RocketChat/Rocket.Chat/pull/9626) Missing string 'There_are_no_applications' on the OAuth Apps Page
- [#9623](https://github.com/RocketChat/Rocket.Chat/pull/9623) Weird rendering of emojis at sidebar when `last message` is activated



<a name="0.61.0"></a>
# 0.61.0 (2018-01-27)

Expand Down
57 changes: 43 additions & 14 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Rocket.Chat",
"description": "The Ultimate Open Source WebChat Platform",
"version": "0.61.0-0.5.2",
"version": "0.61.1-0.6.0-SNAPSHOT",
"author": {
"name": "Rocket.Chat",
"url": "https://rocket.chat/"
Expand Down Expand Up @@ -180,4 +180,4 @@
"xmldom": "0.1.27",
"yaqrcode": "0.2.1"
}
}
}
2 changes: 1 addition & 1 deletion packages/chatpal-search
2 changes: 2 additions & 0 deletions packages/rocketchat-emoji-emojione/client/sprites.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
}

.emojione.big {
display: inline-block !important;

width: 44px;
height: 44px;
}
Expand Down
4 changes: 2 additions & 2 deletions packages/rocketchat-gitlab/common.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ const Gitlab = new CustomOAuth('gitlab', config);
if (Meteor.isServer) {
Meteor.startup(function() {
RocketChat.settings.get('API_Gitlab_URL', function(key, value) {
config.serverURL = value;
config.serverURL = value.trim().replace(/\/*$/, '');
Gitlab.configure(config);
});
});
} else {
Meteor.startup(function() {
Tracker.autorun(function() {
if (RocketChat.settings.get('API_Gitlab_URL')) {
config.serverURL = RocketChat.settings.get('API_Gitlab_URL');
config.serverURL = RocketChat.settings.get('API_Gitlab_URL').trim().replace(/\/*$/, '');
Gitlab.configure(config);
}
});
Expand Down
9 changes: 5 additions & 4 deletions packages/rocketchat-i18n/i18n/de.i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"Accounts_DefaultUsernamePrefixSuggestion": "Vorschlag für Präfix des Benutzernamens ",
"Accounts_denyUnverifiedEmail": "Nicht verifizierte E-Mail-Adressen ablehnen",
"Accounts_EmailVerification": "E-Mail-Verifizierung",
"Accounts_EmailVerification_Description": "Um diese Funktion nutzen zu können, stell bitte sicher, dass Deine SMTP-Einstellungen korrekt sind.",
"Accounts_EmailVerification_Description": "Um diese Funktion nutzen zu können, stellen Sie bitte sicher, dass Ihre SMTP-Einstellungen korrekt sind.",
"Accounts_Enrollment_Email": "Registrierungsmail",
"Accounts_Enrollment_Email_Default": "<h2> Willkommen zu <h1>[Site_Name]</h1></h2><p>Besuche [Site_URL] und probiere noch heute die beste Open-Source-Chat-Lösung aus.</p>",
"Accounts_Enrollment_Email_Description": "Du kannst folgende Platzhalter verwenden: <br/><ul><li> [name], [fname], [lname] für den vollständigen Namen, Vornamen oder Nachnamen des Benutzers. </li><li> [email] für die E-Mail-Adresse des Benutzers. </li><li> [Site_Name] und [Site_URL] für den Anwendungsnamen und die URL. </li></ul>",
Expand Down Expand Up @@ -1173,7 +1173,7 @@
"Message_AllowStarring": "Erlaube es, Nachrichten als Favoriten zu markieren",
"Message_AllowUnrecognizedSlashCommand": "Unerkannte Slash-Kommandos erlauben",
"Message_AlwaysSearchRegExp": "Beim Suchen immer reguläre Ausdrücke verwenden",
"Message_AlwaysSearchRegExp_Description": "Wir empfehlen diese Option, wenn ihre Sprache in der <a target=\"_blank\" href=\"https://docs.mongodb.org/manual/reference/text-search-languages/#text-search-languages\">MongoDB-Textsuche</a> nicht unterstützt wird.",
"Message_AlwaysSearchRegExp_Description": "Wir empfehlen diese Option, wenn Ihre Sprache in der <a target=\"_blank\" href=\"https://docs.mongodb.org/manual/reference/text-search-languages/#text-search-languages\">MongoDB-Textsuche</a> nicht unterstützt wird.",
"Message_Attachments": "Nachrichten-Anhänge",
"Message_Attachments_GroupAttach": "Schaltflächen für Anhänge gruppieren",
"Message_Attachments_GroupAttachDescription": "Dies sorgt dafür, dass die Schaltflächen in einem erweiterbaren Menü untergebracht werden. So wird weniger Bildschirmplatz benötigt.",
Expand Down Expand Up @@ -1793,6 +1793,7 @@
"theme-custom-css": "Benutzerdefiniertes CSS",
"theme-font-body-font-family": "Schrift-Familie für den Textkörper",
"There_are_no_agents_added_to_this_department_yet": "Es wurden bisher keine Agenten zu dieser Abteilung hinzugefügt",
"There_are_no_applications": "Bisher wurden keine oAuth Anwendungen hinzugefügt.",
"There_are_no_integrations": "Es sind keine Integrationen vorhanden",
"There_are_no_users_in_this_role": "Es sind dieser Rolle keine Benutzer zugeordnet",
"This_conversation_is_already_closed": "Die Unterhaltung wurde bereits beendet",
Expand Down Expand Up @@ -2058,8 +2059,8 @@
"Your_entry_has_been_deleted": "Dein Eintrag wurde gelöscht",
"Your_file_has_been_deleted": "Ihre Datei wurde erfolgreich gelöscht",
"Your_mail_was_sent_to_s": "Ihre E-Mail wurde an %s gesendet",
"your_message": "ihre Nachricht",
"your_message_optional": "ihre optionale Nachricht",
"your_message": "Ihre Nachricht",
"your_message_optional": "Ihre optionale Nachricht",
"Your_password_is_wrong": "Falsches Passwort",
"Your_push_was_sent_to_s_devices": "Eine Push-Nachricht wurde an %s Geräte gesendet."
}
Loading

0 comments on commit 88975b8

Please sign in to comment.