Skip to content

Commit

Permalink
VERSION 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
danieleteti committed May 2, 2018
1 parent 583c1a3 commit c392e8b
Show file tree
Hide file tree
Showing 457 changed files with 39 additions and 11 deletions.
2 changes: 1 addition & 1 deletion LOGGERPRO-BUILD-TIMESTAMP.TXT
Original file line number Diff line number Diff line change
@@ -1 +1 @@
13/06/2017 17.33.58
02/05/2018 12:40:17
12 changes: 9 additions & 3 deletions LoggerPro.FileAppender.pas
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ TLoggerProFileAppender = class(TLoggerProAppenderBase)
FLogFormat: string;
FFileAppenderOptions: TFileAppenderOptions;
FLogsFolder: string;
FEncoding: TEncoding;
function CreateWriter(const aFileName: string): TStreamWriter;
procedure AddWriter(const aLogItem: TLogItem; var lWriter: TStreamWriter;
var lLogFileName: string);
Expand Down Expand Up @@ -81,7 +82,7 @@ TLoggerProFileAppender = class(TLoggerProAppenderBase)
: Integer = DEFAULT_MAX_BACKUP_FILE_COUNT;
aMaxFileSizeInKiloByte: Integer = DEFAULT_MAX_FILE_SIZE_KB;
aLogsFolder: string = ''; aFileAppenderOptions: TFileAppenderOptions = [];
aLogFormat: string = DEFAULT_LOG_FORMAT); reintroduce;
aLogFormat: string = DEFAULT_LOG_FORMAT; aEncoding: TEncoding = nil); reintroduce;
procedure Setup; override;
procedure TearDown; override;
procedure WriteLog(const aLogItem: TLogItem); overload; override;
Expand Down Expand Up @@ -230,14 +231,19 @@ procedure TLoggerProFileAppender.AddWriter(const aLogItem: TLogItem;

constructor TLoggerProFileAppender.Create(aMaxBackupFileCount: Integer;
aMaxFileSizeInKiloByte: Integer; aLogsFolder: string;
aFileAppenderOptions: TFileAppenderOptions; aLogFormat: string);
aFileAppenderOptions: TFileAppenderOptions; aLogFormat: string;
aEncoding: TEncoding);
begin
inherited Create;
FLogsFolder := aLogsFolder;
FMaxBackupFileCount := aMaxBackupFileCount;
FMaxFileSizeInKiloByte := aMaxFileSizeInKiloByte;
FLogFormat := aLogFormat;
FFileAppenderOptions := aFileAppenderOptions;
if Assigned(aEncoding) then
FEncoding := aEncoding
else
FEncoding := TEncoding.DEFAULT;
end;

function TLoggerProFileAppender.CreateWriter(const aFileName: string)
Expand All @@ -262,7 +268,7 @@ function TLoggerProFileAppender.CreateWriter(const aFileName: string)
lFileStream := TFileStream.Create(aFileName, lFileAccessMode);
try
lFileStream.Seek(0, TSeekOrigin.soEnd);
Result := TStreamWriter.Create(lFileStream, TEncoding.Default, 32);
Result := TStreamWriter.Create(lFileStream, FEncoding, 32);
Result.AutoFlush := True;
Result.OwnStream;
break;
Expand Down
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,13 +98,15 @@ The framework contains the following built-in log appenders
- Console (`TLoggerProConsoleAppender`)
- OutputDebugString (`TLoggerProOutputDebugStringAppender`)
- VCL Memo (`TVCLMemoLogAppender`)
- Redis Appender with LogsViewer(to aggregate logs from different instances on a single Redis instance)
- Email Logger (to send email as log, very useful for fatal errors)

Next appenders in the development pipeline
- Redis Appender (to aggregate logs from different instances on a single Redis instance)
- Email Logger (to send email as log, very useful for fatal errors)
- RESTful Appender (to send logs to a rest endpoint using a specific request format, so that you can implement log server in DelphiMVCFramework, PHP, Java, Python, Node etc)
- Twitter Appender (to send logs to a Twitter Account)
- Database appender (to send logs to a database table using FireDAC components)

The log writer and all the appenders are asycnhronous.
The log writers and all the appenders are asycnhronous.

**Check the samples to see how to use each appender or even combine different appenders.**

Expand Down
4 changes: 2 additions & 2 deletions VERSION.TXT
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
VERSION 1.1.2
BUILD DATETIME 2017-06-13T17:33:58.934388
VERSION 1.2.0
BUILD DATETIME 2018-05-02T12:40:16.984208
4 changes: 2 additions & 2 deletions dodo.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def task_build():
"echo %%date%% %%time:~0,8%% > LOGGERPRO-BUILD-TIMESTAMP.TXT",
buildProjects,
build_unit_tests,
"unittests\\Win32\\Release\\UnitTests.exe -exit:Continue"],
"unittests\\Win32\\PLAINDUNITX\\UnitTests.exe -exit:Continue"],
'params':[{'name':'version',
'short':'v',
'long':'version',
Expand All @@ -103,7 +103,7 @@ def task_unittests():
return {
'actions': [
build_unit_tests,
"unittests\\Win32\\Release\\UnitTests.exe -exit:Continue"
"unittests\\Win32\\PLAINDUNITX\\UnitTests.exe -exit:Continue"
],
'params':[{'name':'version',
'short':'v',
Expand Down
Binary file modified samples/02_file_appender/file_appender.res
Binary file not shown.
Binary file modified samples/03_console_appender/console_appender.res
Binary file not shown.
Binary file not shown.
Binary file modified samples/10_multiple_appenders/multiple_appenders.res
Binary file not shown.
Binary file not shown.
Binary file added samples/common/ICONS/GIF/32/arrow_down.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added samples/common/ICONS/GIF/32/arrow_left-down.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added samples/common/ICONS/GIF/32/arrow_left-up.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added samples/common/ICONS/GIF/32/arrow_left.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added samples/common/ICONS/GIF/32/arrow_right-down.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added samples/common/ICONS/GIF/32/arrow_right-up.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added samples/common/ICONS/GIF/32/arrow_right.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added samples/common/ICONS/GIF/32/arrow_up.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added samples/common/ICONS/GIF/32/attention.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added samples/common/ICONS/GIF/32/backward.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added samples/common/ICONS/GIF/32/bag.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added samples/common/ICONS/GIF/32/base.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added samples/common/ICONS/GIF/32/bonus.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added samples/common/ICONS/GIF/32/bug.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added samples/common/ICONS/GIF/32/calculator.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added samples/common/ICONS/GIF/32/calendar.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added samples/common/ICONS/GIF/32/cd_dvd.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added samples/common/ICONS/GIF/32/check-64.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added samples/common/ICONS/GIF/32/check.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added samples/common/ICONS/GIF/32/check_2.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added samples/common/ICONS/GIF/32/close_delete.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added samples/common/ICONS/GIF/32/close_delete_2.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added samples/common/ICONS/GIF/32/closed.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added samples/common/ICONS/GIF/32/comment.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added samples/common/ICONS/GIF/32/computer.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added samples/common/ICONS/GIF/32/computer_monitor.gif
Binary file added samples/common/ICONS/GIF/32/copy.gif
Binary file added samples/common/ICONS/GIF/32/credit_card.gif
Binary file added samples/common/ICONS/GIF/32/credit_card_back.gif
Binary file added samples/common/ICONS/GIF/32/cut.gif
Binary file added samples/common/ICONS/GIF/32/delete_2.gif
Binary file added samples/common/ICONS/GIF/32/document_file.gif
Binary file added samples/common/ICONS/GIF/32/email.gif
Binary file added samples/common/ICONS/GIF/32/eraser.gif
Binary file added samples/common/ICONS/GIF/32/favorite_love.gif
Binary file added samples/common/ICONS/GIF/32/flag_mark_blue.gif
Binary file added samples/common/ICONS/GIF/32/flag_mark_gray.gif
Binary file added samples/common/ICONS/GIF/32/flag_mark_green.gif
Binary file added samples/common/ICONS/GIF/32/flag_mark_red.gif
Binary file added samples/common/ICONS/GIF/32/flag_mark_violet.gif
Binary file added samples/common/ICONS/GIF/32/flag_mark_yellow.gif
Binary file added samples/common/ICONS/GIF/32/folder.gif
Binary file added samples/common/ICONS/GIF/32/forward.gif
Binary file added samples/common/ICONS/GIF/32/friends_group.gif
Binary file added samples/common/ICONS/GIF/32/help.gif
Binary file added samples/common/ICONS/GIF/32/help_ring-buoy.gif
Binary file added samples/common/ICONS/GIF/32/home.gif
Binary file added samples/common/ICONS/GIF/32/information.gif
Binary file added samples/common/ICONS/GIF/32/ipod.gif
Binary file added samples/common/ICONS/GIF/32/key_login.gif
Binary file added samples/common/ICONS/GIF/32/lamp_active.gif
Binary file added samples/common/ICONS/GIF/32/lamp_inactive.gif
Binary file added samples/common/ICONS/GIF/32/lock.gif
Binary file added samples/common/ICONS/GIF/32/minus.gif
Binary file added samples/common/ICONS/GIF/32/minus_2.gif
Binary file added samples/common/ICONS/GIF/32/mobile_phone.gif
Binary file added samples/common/ICONS/GIF/32/network.gif
Binary file added samples/common/ICONS/GIF/32/network_close.gif
Binary file added samples/common/ICONS/GIF/32/new_email.gif
Binary file added samples/common/ICONS/GIF/32/next.gif
Binary file added samples/common/ICONS/GIF/32/opened.gif
Binary file added samples/common/ICONS/GIF/32/options.gif
Binary file added samples/common/ICONS/GIF/32/options_2.gif
Binary file added samples/common/ICONS/GIF/32/paste.gif
Binary file added samples/common/ICONS/GIF/32/pause.gif
Binary file added samples/common/ICONS/GIF/32/pencil_edit.gif
Binary file added samples/common/ICONS/GIF/32/pie-chart_diagram.gif
Binary file added samples/common/ICONS/GIF/32/pie-chart_graph.gif
Binary file added samples/common/ICONS/GIF/32/play.gif
Binary file added samples/common/ICONS/GIF/32/plus.gif
Binary file added samples/common/ICONS/GIF/32/plus_2.gif
Binary file added samples/common/ICONS/GIF/32/previous.gif
Binary file added samples/common/ICONS/GIF/32/printer.gif
Binary file added samples/common/ICONS/GIF/32/radio-button_off.gif
Binary file added samples/common/ICONS/GIF/32/radio-button_on.gif
Binary file added samples/common/ICONS/GIF/32/record.gif
Binary file added samples/common/ICONS/GIF/32/refresh.gif
Binary file added samples/common/ICONS/GIF/32/rss.gif
Binary file added samples/common/ICONS/GIF/32/save_as.gif
Binary file added samples/common/ICONS/GIF/32/search_lense.gif
Binary file added samples/common/ICONS/GIF/32/shield_protect_on.gif
Binary file added samples/common/ICONS/GIF/32/shopping_cart.gif
Binary file added samples/common/ICONS/GIF/32/smartphone_2.gif
Binary file added samples/common/ICONS/GIF/32/smartphone_iphone.gif
Binary file added samples/common/ICONS/GIF/32/sound_music-off.gif
Binary file added samples/common/ICONS/GIF/32/sound_music-on.gif
Binary file added samples/common/ICONS/GIF/32/star.gif
Binary file added samples/common/ICONS/GIF/32/star_2.gif
Binary file added samples/common/ICONS/GIF/32/star_3.gif
Binary file added samples/common/ICONS/GIF/32/stop.gif
Binary file added samples/common/ICONS/GIF/32/stop_2.gif
Binary file added samples/common/ICONS/GIF/32/tag_blue.gif
Binary file added samples/common/ICONS/GIF/32/tag_gray.gif
Binary file added samples/common/ICONS/GIF/32/tag_green.gif
Binary file added samples/common/ICONS/GIF/32/tag_orange.gif
Binary file added samples/common/ICONS/GIF/32/tag_red.gif
Binary file added samples/common/ICONS/GIF/32/tag_violet.gif
Binary file added samples/common/ICONS/GIF/32/tag_white.gif
Binary file added samples/common/ICONS/GIF/32/tag_yellow.gif
Binary file added samples/common/ICONS/GIF/32/time_clock.gif
Binary file added samples/common/ICONS/GIF/32/trash_box.gif
Binary file added samples/common/ICONS/GIF/32/trash_box_2.gif
Binary file added samples/common/ICONS/GIF/32/unlock.gif
Binary file added samples/common/ICONS/GIF/32/user_friend.gif
Binary file added samples/common/ICONS/GIF/32/user_woman.gif
Binary file added samples/common/ICONS/GIF/32/vote_no.gif
Binary file added samples/common/ICONS/GIF/32/vote_yes.gif
Binary file added samples/common/ICONS/GIF/32/wizard.gif
Binary file added samples/common/ICONS/ICNS/arrow_down.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/arrow_left-down.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/arrow_left-up.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/arrow_left.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/arrow_right-down.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/arrow_right-up.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/arrow_right.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/arrow_up.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/attention.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/backward.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/bag.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/base.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/bonus.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/bug.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/calculator.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/calendar.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/cd_dvd.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/check-64.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/check.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/check_2.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/close_delete.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/close_delete_2.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/closed.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/comment.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/computer.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/computer_monitor.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/copy.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/credit_card.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/credit_card_back.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/cut.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/delete_2.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/document_file.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/email.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/eraser.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/favorite_love.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/flag_mark_blue.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/flag_mark_gray.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/flag_mark_green.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/flag_mark_red.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/flag_mark_violet.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/flag_mark_yellow.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/folder.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/forward.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/friends_group.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/help.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/help_ring-buoy.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/home.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/information.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/ipod.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/key_login.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/lamp_active.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/lamp_inactive.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/lock.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/minus.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/minus_2.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/mobile_phone.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/network.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/network_close.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/new_email.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/next.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/opened.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/options.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/options_2.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/paste.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/pause.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/pencil_edit.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/pie-chart_diagram.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/pie-chart_graph.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/play.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/plus.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/plus_2.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/previous.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/printer.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/radio-button_off.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/radio-button_on.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/record.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/refresh.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/rss.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/save_as.icns
Binary file not shown.
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/search_lense.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/shield_protect_off.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/shield_protect_on.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/shopping_cart.icns
Binary file not shown.
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/smartphone_2.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/smartphone_iphone.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/sound_music-off.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/sound_music-on.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/star.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/star_2.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/star_3.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/stop.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/stop_2.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/tag_blue.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/tag_gray.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/tag_green.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/tag_orange.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/tag_red.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/tag_violet.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/tag_white.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/tag_yellow.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/time_clock.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/trash_box.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/trash_box_2.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/unlock.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/user_friend.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/user_woman.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/vote_no.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/vote_yes.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICNS/wizard.icns
Binary file not shown.
Binary file added samples/common/ICONS/ICO/arrow_down.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/arrow_left-down.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/arrow_left-up.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/arrow_left.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/arrow_right-down.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/arrow_right-up.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/arrow_right.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/arrow_up.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/attention.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/backward.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/bag.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/base.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/bonus.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/bug.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/calculator.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/calendar.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/cd_dvd.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/check-64.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/check.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/check_2.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/close_delete.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/close_delete_2.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/closed.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/comment.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/computer.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/computer_monitor.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/copy.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/credit_card.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/credit_card_back.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/cut.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/delete_2.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/document_file.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/email.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/eraser.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/favorite_love.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/flag_mark_blue.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/flag_mark_gray.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/flag_mark_green.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/flag_mark_red.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/flag_mark_violet.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/flag_mark_yellow.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/folder.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/forward.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/friends_group.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/help.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/help_ring-buoy.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/home.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/information.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/ipod.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/key_login.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/lamp_active.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/lamp_inactive.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/lock.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/minus.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/minus_2.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/mobile_phone.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/network.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/network_close.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/new_email.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/next.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/opened.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/options.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/options_2.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/paste.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/pause.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/pencil_edit.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/pie-chart_diagram.ico
Binary file not shown.
Binary file added samples/common/ICONS/ICO/pie-chart_graph.ico
Binary file not shown.
Loading

0 comments on commit c392e8b

Please sign in to comment.