summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* build: Use AC_CACHE_SAVEEmmanuele Bassi2013-05-01
| | | | | | | | The AC_CACHE_SAVE macro saves the state of the configure script, so that it can be restore from a known state without having to re-run all the checks. This should speed up the build. [endlessm/eos-sdk#52]
* Merge pull request #42 from endlessm/issues/42P. F. Chimento2013-04-30
|\ | | | | Issues/42
| * Fix two-windows application testP. F. Chimento2013-04-30
| | | | | | | | Figured it out while testing [#42]
| * Crash on eos_window_new (NULL)P. F. Chimento2013-04-30
|/ | | | | | | Creating a window that is not tied to an application should be a serious programming error. [#42]
* Merge pull request #22 from endlessm#12P. F. Chimento2013-04-29
|\ | | | | | | Issues/12 EosWindow based on eos-weather/window.py
| * Testing and documentation improvements for EosWindowP. F. Chimento2013-04-25
| | | | | | | | [#12]
| * EosWindow is fullscreenP. F. Chimento2013-04-25
| | | | | | | | | | | | | | | | EosWindow maximizes itself on creation. This code does not enforce maximization or forbid the window from resizing, since that is the window manager's job. [#12]
| * Define G_LOG_DOMAINP. F. Chimento2013-04-24
| | | | | | | | | | | | | | | | | | Improvement to the build system: this allows you to turn on debug messages from the SDK by running G_MESSAGES_DEBUG=EndlessSDK ./myprogram Use G_MESSAGES_DEBUG=all to turn on messages from other libraries too.
* | Merge pull request #37 from endlessm/issues/35P. F. Chimento2013-04-25
|\ \ | |/ |/| Added commit-msg script for issue tracking which autogen installs.
| * Added commit-msg script for issues tracking which autogen installs.Matt Watson2013-04-25
|/ | | | [endlessm/eos-sdk#35]
* Merge pull request #24 from endlessm/issues/23P. F. Chimento2013-04-24
|\ | | | | Issues/23
| * Rename C source and header filesP. F. Chimento2013-04-24
|/ | | | | | For consistency with GTK, blah.[ch] should be named eosblah.[ch]. [#23]
* Merge pull request #15 from endlessm/issues/4P. F. Chimento2013-04-24
|\ | | | | Application class
| * Test fixture for testing an application windowP. F. Chimento2013-04-24
| | | | | | | | | | | | | | | | | | Test harness improvement: ADD_APP_WINDOW_TEST(test_path, test_func) creates an EosApplication and connects test_func() to the "startup" handler of the application, then runs it. Commented out /application/two-windows test, because it's apparently not deterministic.
| * Application classP. F. Chimento2013-04-24
| | | | | | | | | | | | | | | | | | Add an EosApplication class. Functionality: - present main application window when activated - warn if more than one application window is added Also add a stub EosWindow class that overrides GtkWindow's "application" property to be a construct-only property. [#4]
* | Merge pull request #27 from endlessm/issues/26P. F. Chimento2013-04-24
|\ \ | | | | | | Issues/26
| * | Run tests verboselyP. F. Chimento2013-04-22
| | | | | | | | | | | | | | | | | | | | | Without the verbose flag, gtester just says "1 test passed" or "1 test failed", which is not very informative. [#26]
| * | Avoid warnings on Automake 1.12P. F. Chimento2013-04-22
| | | | | | | | | | | | | | | | | | | | | Use AM_PROG_AR, AM_PROG_CC_C_O, and -Wno-portability to avoid warnings on Automake 1.12 [#26]
| * | Build library before docsP. F. Chimento2013-04-22
|/ / | | | | | | | | | | | | Build system improvement. Otherwise building docs fails on a clean checkout. [#26]
* | Merge pull request #3 from ptomato/issues/1-build-systemP. F. Chimento2013-04-17
|\| | | | | Build system
| * Document build process in README.mdPhilip Chimento2013-04-17
| | | | | | | | [#1]
| * Enable GObject introspectionPhilip Chimento2013-04-17
| | | | | | | | | | | | | | After running 'make install', run test/smoke-tests/introspection.js (and its Python counterpart) to test whether the GIR has been installed correctly. [#1]
| * Autogenerate documentation with Gtk-docPhilip Chimento2013-04-17
| | | | | | | | | | | | | | | | Run './configure --enable-gtk-doc' to turn on building documentation, or use --disable-gtk-doc to disable it (for faster builds.) It builds as part of the regular 'make' invocation, though you can use 'make docs' to build only the documentation. [#1]
| * Add test frameworkPhilip Chimento2013-04-17
| | | | | | | | | | | | | | There are automated tests which run when you do 'make check', and also smoke tests which demonstrate one piece of functionality, which can be used as a sort of sanity check or demo. [#1]
| * Internationalize the shared libraryP. F. Chimento2013-04-17
| | | | | | | | | | | | Add infrastructure for translating the single string in the shared library. [#1]
| * Skeleton build system to build a shared libraryPhilip Chimento2013-04-17
|/ | | | | | Builds a dummy shared library that exports one symbol for testing, eos_hello_sample_function(). [#1]
* Initial commitKyle2012-12-13