This repository has been archived by the owner on Mar 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release v0.35: Premium accounts **Enhancements:** - Add support for premium accounts & make private projects a premium feature. Free users can only create public projects, while premium users can choose between public and private when creating the project. - Improve the notification icon by replacing the old world icon with a bell icon. This should help more clearly identify it as a notification icon. ([#318](https://github.com/OpenlyOne/openly/issues/318)) - Improve placement of profile actions: Demote the edit profile button from floating action button to flat button. Add a button to create a new project as the primary action on the profile page. This should help solve the confusion of users who think they can create a project by clicking the button that actually takes them to the edit profile page ([#292](https://github.com/OpenlyOne/openly/issues/292)) **Fixes:** - Do not show file diffs when plain text between two document version is the same ([#240](https://github.com/OpenlyOne/openly/issues/240))
- Loading branch information
Showing
44 changed files
with
1,062 additions
and
253 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
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
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
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,17 @@ | ||
.content-change | ||
|
||
/ If all fragments are retained, do not show a (useless) diff. Show message | ||
/ instead. | ||
- if content_change.fragments.all?(&:retain?) | ||
span.fragment | ||
| Text will not change | ||
span.help-icon-wrapper.gray-text.text-lighten-1 title='The text content of this file will not change. The file shows up as modified because other elements - such as styles or images - will be modified.' | ||
svg.help-icon style="width:24px;height:24px;" viewBox="0 0 24 24" | ||
path fill="currentColor" d="M13,9H11V7H13M13,17H11V11H13M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z" | ||
|
||
|
||
/ Okay, we have an actual diff. Let's display it. | ||
- else | ||
= render partial: 'revisions/content_change_fragment', | ||
collection: content_change.fragments, | ||
locals: { truncate_content: true } |
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.