From ee9bd35266652412aa741c407a3d40d16474b344 Mon Sep 17 00:00:00 2001 From: fab672000 Date: Sat, 1 Dec 2018 17:25:21 -0600 Subject: Fix building on mac OSX (using ./configure unix makefiles) still shows not ignored binaries. Note that fltk block, checkers and sudoku games do have special content inside the .app folder, so ensure that these are not globally ignored while cleaning up the other test apps binary content that should be ignored. --- .gitignore | 82 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 82 insertions(+) diff --git a/.gitignore b/.gitignore index 5864f137e..8449bc37f 100644 --- a/.gitignore +++ b/.gitignore @@ -241,6 +241,9 @@ /test/fltk*.exp /test/fltk*.dll +################################## +# Mac OS X binary files filtering: +################################## # /test/blocks.app/Contents/MacOS/ /test/blocks.app/Contents/MacOS/blocks @@ -249,3 +252,82 @@ # /test/sudoku.app/Contents/MacOS/ /test/sudoku.app/Contents/MacOS/sudoku + +fluid/*.app/Contents/MacOS +test/*.app/Contents/MacOS + +test/adjuster.app +test/iconize.app +test/fast_slow.app +test/message.app +test/icon.app +test/line_style.app +test/symbols.app +test/file_chooser.app +test/native-filechooser.app +test/browser.app +test/curve.app +test/fonts.app +test/fullscreen.app +test/doublebuffer.app +test/glpuzzle.app +test/shape.app +test/forms.app +test/keyboard.app +test/ask.app +test/color_chooser.app +test/mandelbrot.app +test/offscreen.app +test/resize.app +test/animated.app +test/subwindow.app +test/inactive.app +test/navigation.app +test/tabs.app/Contents +test/label.app +test/rotated_text.app +test/tiled_image.app +test/hello.app +test/tile.app +test/twowin.app +test/windowfocus.app +test/button.app +test/input.app +test/arc.app +test/pixmap.app +test/tree.app +test/tabs.app +test/buttons.app +test/cube.app +test/output.app +test/overlay.app +test/table.app +test/list_visuals.app +test/device.app +test/demo.app +test/minimum.app +test/unittests.app +test/colbrowser.app +test/preferences.app/Contents +test/radio.app +test/threads.app +test/pixmap_browser.app +test/boxtype.app +test/CubeView.app +test/utf8.app +test/pack.app +test/cairo_test.app +test/preferences.app +test/scroll.app +test/fractals.app +test/bitmap.app +test/input_choice.app +test/clock.app +test/help_dialog.app +test/menubar.app +test/valuators.app +test/image.app +test/gl_overlay.app +test/editor.app +test/cursor.app +test/resizebox.app -- cgit v1.2.3 From 0ce9101c7b2db8bd055157cd9bc1faff5831e2ed Mon Sep 17 00:00:00 2001 From: Albrecht Schlosser Date: Mon, 3 Dec 2018 18:54:07 +0100 Subject: Remove the statement that this is a mirror. This repository is our main repo since the move to a new server on Dec 01, 2018. --- README.md | 32 +------------------------------- 1 file changed, 1 insertion(+), 31 deletions(-) diff --git a/README.md b/README.md index 9fb89c519..797a7adfe 100644 --- a/README.md +++ b/README.md @@ -1,36 +1,6 @@ # README - Fast Light Tool Kit (FLTK) Version 1.4.0 -## VERY IMPORTANT TECHNICAL NOTICE - -** This FLTK repository is still a mirror of our Subversion repository. ** - - Technically this means: - - * we may replace it with another one if this appears to be necessary - * we don't accept pull requests (yet) for this repository - - -### Technical background - - Our main source code repository is currently (as of Sep 18, 2018) our - subversion repository at http://www.fltk.org/software.php#SVN . - - We are in the transition to convert the subversion repository to Git. - Until this is done we have established Git mirrors of our Subversion - repository at these two sites: - - * https://github.com/fltk/fltk - * https://gitlab.com/fltk/fltk - - You may use these Git repositories for testing purposes, but please - don't rely on their structure (branches) and particularly not on the - commit (and file/blob) hashes (SHA1's). - - Committing to these Git repositories is not possible since they are - mirrors of the original Subversion repository. - - This will hopefully be changed soon... - +** This FLTK repository is now our official source code repository. ** ## WHAT IS FLTK? -- cgit v1.2.3 From 4ded3c2099a3ca9ec8419fabf39d4a49d74efc20 Mon Sep 17 00:00:00 2001 From: fab672000 Date: Mon, 3 Dec 2018 15:19:25 -0600 Subject: Added as well the .DS_Store pattern as recommended by Manolo. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 8449bc37f..80544a61d 100644 --- a/.gitignore +++ b/.gitignore @@ -255,6 +255,7 @@ fluid/*.app/Contents/MacOS test/*.app/Contents/MacOS +**/.DS_Store test/adjuster.app test/iconize.app -- cgit v1.2.3