Add changelog for new changes.

This commit is contained in:
Gregory John Casamento 2020-04-13 18:34:46 -04:00
parent 1479a4fa88
commit c5d56a6f87
5 changed files with 31 additions and 4 deletions

View file

@ -1,3 +1,30 @@
2020-04-13 Gregory John Casamento <greg.casamento@gmail.com>
* Headers/AppKit/AppKitErrors.h
* Headers/AppKit/AppKit.h
* Headers/AppKit/NSFontAssetRequest.h
* Headers/AppKit/NSMediaLibraryBrowserController.h
* Headers/AppKit/NSScrubber.h
* Headers/AppKit/NSScrubberItemView.h
* Headers/AppKit/NSScrubberLayout.h
* Headers/AppKit/NSSharingServicePickerToolbarItem.h
* Headers/AppKit/NSUserInterfaceCompression.h
* Headers/AppKit/NSUserInterfaceItemSearching.h
* Headers/AppKit/NSWindowRestoration.h
* MISSING: Remove mention of these classes.
* Source/GNUmakefile
* Source/NSFontAssetRequest.m
* Source/NSMediaLibraryBrowserController.m
* Source/NSScrubberItemView.m
* Source/NSScrubberLayout.m
* Source/NSScrubber.m
* Source/NSSharingServicePickerToolbarItem.m: Add code to allow
compilation using these classes. These are Mac specific so they
can't be implemented on any other platform due to HW or
service limitations. At some point these might be able to be
implemented, but, for now, they are here to allow apps which
use them to compile.
2020-04-05 Ivan Vucica <ivan@vucica.net>
* ANNOUNCE:

View file

@ -27,7 +27,7 @@
#import <Foundation/NSObject.h>
#if OS_API_VERSION(MAC_OS_X_VERSION_10_0, GS_API_LATEST)
#if OS_API_VERSION(MAC_OS_X_VERSION_10_9, GS_API_LATEST)
#if defined(__cplusplus)
extern "C" {

View file

@ -25,7 +25,7 @@
#ifndef _NSScrubber_h_GNUSTEP_GUI_INCLUDE
#define _NSScrubber_h_GNUSTEP_GUI_INCLUDE
#import <AppKit/NSView.h>
#import "AppKit/NSView.h"
#if OS_API_VERSION(MAC_OS_X_VERSION_10_12, GS_API_LATEST)

View file

@ -25,7 +25,7 @@
#ifndef _NSScrubberItemView_h_GNUSTEP_GUI_INCLUDE
#define _NSScrubberItemView_h_GNUSTEP_GUI_INCLUDE
#import <AppKit/NSView.h>
#import "AppKit/NSView.h"
#if OS_API_VERSION(MAC_OS_X_VERSION_10_12, GS_API_LATEST)

View file

@ -25,7 +25,7 @@
#ifndef _NSScrubberLayout_h_GNUSTEP_GUI_INCLUDE
#define _NSScrubberLayout_h_GNUSTEP_GUI_INCLUDE
#import <Foundation/NSObject.h>
#import "Foundation/NSObject.h"
#if OS_API_VERSION(MAC_OS_X_VERSION_10_12, GS_API_LATEST)