forked from etternagame/etterna
-
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.
Merge pull request etternagame#700 from etternagame/develop
0.68.0 merge
- Loading branch information
Showing
722 changed files
with
155,210 additions
and
24,453 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Release Changelog | ||
|
||
|
||
## [0.68.0] - 2020-02-17 - New Color Editor & Borderless Fullscreen | ||
|
||
### Added | ||
- AAAAA Grade, Midgrades, and SSRNormPercent prioritization - [#698](../../../pull/698) | ||
- Borderless Fullscreen & better Display Options - [#697](../../../pull/697) | ||
- ScreenColorEdit has been rewritten to allow for very fine control - [#695](../../../pull/695) | ||
- X11 Delete Window handler - [#677](../../../pull/677) [75e7aa5](../../../commit/75e7aa5c13c9ecea1e7bbbc80012a36e68a9bd18) | ||
|
||
### Changed | ||
- C exceptions causing crashes should give a more informative crash reason - [#687](../../../pull/687) | ||
- Default Judgment Textures updated to be higher resolution - [#674](../../../pull/674) | ||
- Upgraded Libtomcrypt to 1.18.2 - [#673](../../../pull/673) | ||
|
||
### Fixed | ||
- Crashed due to stack overflow when logging giant strings - [#681](../../../pull/681) | ||
- Fallback Lua errors when leaving out certain things - [#684](../../../pull/684) | ||
- Icons in ScreenSelectMaster never see the GainFocusCommand - [4048c28](../../../commit/4048c284dd76c1f0167219caee85758df1ace891) | ||
- Pack Downloader buttons always returned the mirror even if not clicking mirror - [9c00f34](../../../commit/9c00f3415955a390edd4bfd20bbe92a8d7d4a441) | ||
- Playlist creation overlay used to stop music - [7c0ddb9](../../../commit/7c0ddb993a2cbfb72e0a6635e61ebe5b5547596e) | ||
- Resolved around 200 simple coverity defects - [#683](../../../pull/683) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
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,52 @@ | ||
# This is borrowed from FreeRDP. - Find XINERAMA Find the XINERAMA libraries | ||
# | ||
# This module defines the following variables: XINERAMA_FOUND - true if | ||
# XINERAMA_INCLUDE_DIR & XINERAMA_LIBRARY are found XINERAMA_LIBRARIES - Set | ||
# when XINERAMA_LIBRARY is found XINERAMA_INCLUDE_DIRS - Set when | ||
# XINERAMA_INCLUDE_DIR is found | ||
# | ||
# XINERAMA_INCLUDE_DIR - where to find Xinerama.h, etc. XINERAMA_LIBRARY - | ||
# the XINERAMA library | ||
# | ||
|
||
# ============================================================================= | ||
# Copyright 2011 O.S. Systems Software Ltda. Copyright 2011 Otavio Salvador | ||
# <otavio@ossystems.com.br> Copyright 2011 Marc-Andre Moreau | ||
# <marcandre.moreau@gmail.com> | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); you may not | ||
# use this file except in compliance with the License. You may obtain a copy of | ||
# the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
# License for the specific language governing permissions and limitations under | ||
# the License. | ||
# ============================================================================= | ||
|
||
find_path(XINERAMA_INCLUDE_DIR | ||
NAMES X11/extensions/Xinerama.h | ||
PATHS /opt/X11/include | ||
PATH_SUFFIXES X11/extensions | ||
DOC "The Xinerama include directory") | ||
|
||
find_library(XINERAMA_LIBRARY | ||
NAMES Xinerama | ||
PATHS /opt/X11/lib | ||
DOC "The Xinerama library") | ||
|
||
include(FindPackageHandleStandardArgs) | ||
find_package_handle_standard_args(Xinerama | ||
DEFAULT_MSG | ||
XINERAMA_LIBRARY | ||
XINERAMA_INCLUDE_DIR) | ||
|
||
if(XINERAMA_FOUND) | ||
set(XINERAMA_LIBRARIES ${XINERAMA_LIBRARY}) | ||
set(XINERAMA_INCLUDE_DIRS ${XINERAMA_INCLUDE_DIR}) | ||
endif() | ||
|
||
mark_as_advanced(XINERAMA_INCLUDE_DIR XINERAMA_LIBRARY) |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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.