-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #311 from Catrobat/develop
Release v2.1.0
- Loading branch information
Showing
170 changed files
with
10,415 additions
and
3,782 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Changelog | ||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
|
||
## [2.1.0] | ||
### Added | ||
- Program Owner now visible on small devices too. | ||
- User Badge in the sidebar will be updated immediately after marking a notification as read. | ||
- Media Library assets now will be shown by name if no thumbnail is given. | ||
- Media Library assets(sounds) can now be played without download. | ||
- "Show Password" option added for login. | ||
- Production logs are now rotating. | ||
- Deployment script adapted for more privacy and more modularity. | ||
- On the profile page all programs are loaded at once, are ordered and all own programs will be displayed. | ||
- Headlines are now centered through out all designs. | ||
- Programs that are uploaded ar no longer set to private if languageVersion is higher than supported. | ||
### Changed | ||
- Recommended Program section will only be displayed if programs for this section exist. | ||
- Recommender System diversity enriched. | ||
- Complete change of Media-Library (new Ajax Loading, sorting) | ||
- Hardcoded translations switched to dynamic translations | ||
- Usernames are now consistently visible in program details. | ||
### Removed | ||
- Project documentation removed from repo and relocated to github wiki. | ||
### Fixed | ||
- Tooltip is now displayed once not twice. | ||
- Media-Library files are named correctly on download. (Filename not ID, works only in browser) | ||
- Notification badge in the sidebar will now be displayed correctly. | ||
- Clean logs command fixed. | ||
- Limiting text to display width. | ||
- DB Migration fixed to work correct. | ||
- Follow Icon gets positioned correctly again. | ||
- Color of text in search field is adjusted for "Luna & Cat" | ||
|
||
[Unreleased]: https://github.com/Catrobat/Catroweb-Symfony/compare/v2.1.0...HEAD | ||
[2.1.0]: https://github.com/olivierlacan/keep-a-changelog/releases/tag/v2.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,23 @@ | ||
@mixin transition($transition){ | ||
@mixin transition($transition) { | ||
-webkit-transition: $transition; | ||
-moz-transition: $transition; | ||
-o-transition: $transition; | ||
transition: $transition; | ||
} | ||
|
||
@mixin transform($string){ | ||
@mixin transform($string) { | ||
-webkit-transform: $string; | ||
-moz-transform: $string; | ||
-ms-transform: $string; | ||
-o-transform: $string; | ||
transform: $string; | ||
} | ||
|
||
@mixin force-word-break() { | ||
word-wrap: break-word; | ||
overflow-wrap: break-word; | ||
|
||
-webkit-hyphens: auto; | ||
-moz-hyphens: auto; | ||
hyphens: auto; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,6 +53,9 @@ $sidebar-width: 250px; | |
text-decoration: none; | ||
} | ||
|
||
.user-notification-badge { | ||
display: none; | ||
} | ||
} | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,6 +16,10 @@ h1 { | |
} | ||
} | ||
|
||
#recommended { | ||
display: none; | ||
} | ||
|
||
.visited-program { | ||
opacity: 0.6; | ||
a { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.