summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Merge pull request #4156 from endlessm/T12815Matt Watson2016-09-13
|\ | | | | T12815
| * endless-search-box: fix selected text stylingMartin Abente Lahaye2016-09-13
|/ | | | | | | GtkEntry now uses a "selection" subnode for styling text that is selected. Use this subnode instead. https://phabricator.endlessm.com/T12815
* Merge pull request #4155 from endlessm/T13015Emmanuele Bassi2016-09-12
|\ | | | | Make metrics dependency optional
| * Make metrics dependency optionalPhilip Chimento2016-08-22
| | | | | | | | | | | | | | We should allow external contributors to build eos-sdk without the eos-metrics dependency. https://phabricator.endlessm.com/T13015
* | Merge pull request #4154 from endlessm/wip/lgpl-v2P. F. Chimento2016-08-14
|\ \ | |/ |/| Relicense as LGPLv2.1
| * Relicense as LGPLv2.1Cosimo Cecchi2016-08-14
|/
* Merge pull request #4153 from endlessm/T12435Emmanuele Bassi2016-07-21
|\ | | | | eosattribution: Allow showing a thumb_uri in the credits
| * Update the error message on missing resource URIEmmanuele Bassi2016-07-21
| | | | | | | | Reinstate the element number in the critical error message.
| * eosattribution: Allow showing a thumb_uri in the creditsJasper St. Pierre2016-07-14
|/ | | | | | | | | | This is the replacement for resource_path, and is a generic way of showing an image to provide attribution information for. This will be used to pull in ekn:// URIs for the credits dialog in subscriptions apps. https://phabricator.endlessm.com/T12435
* New translations from TransifexJenkins2016-07-11
|
* Merge pull request #4151 from endlessm/T12233Rory MacQueen2016-07-11
|\ | | | | Unmaximize metric
| * Record metric for unmaximized windowsPhilip Chimento2016-07-06
| | | | | | | | | | | | | | | | | | | | | | | | When an EosWindow remains unmaximized for over 10 seconds, we record a metric. The 10 seconds is to filter out presses of the unmaximize button by accident, and because there is some weirdness in the window manager around launching apps maximized. This is for determining how important it is to implement various kinds of responsive design in GTK. https://phabricator.endlessm.com/T12233
| * Run tests with mock metrics event recorderPhilip Chimento2016-07-06
|/ | | | | | | | | Since we're about to add a metrics event on unmaximize of the window, we need to make sure it's not actually sent. In the absence of https://phabricator.endlessm.com/T8253, the best way to do this is to set up a mock metrics event recorder using dbusmock. https://phabricator.endlessm.com/T12233
* New translations from TransifexJenkins2016-07-04
|
* Merge pull request #4149 from endlessm/T12150P. F. Chimento2016-07-01
|\ | | | | https://phabricator.endlessm.com/T12150
| * Include $(buildir)/endless directory in per-executable/library _CPPFLAGSJuan Pablo Ugarte2016-07-01
|/ | | | | | since global AM_CPPFLAGS is ignored in those cases. https://phabricator.endlessm.com/T12150
* Merge pull request #4148 from endlessm/T12150Juan Pablo Ugarte2016-06-28
|\ | | | | T12150
| * Use G_GSIZE_FORMAT instead of %d to fix build in 64bits systemsJuan Pablo Ugarte2016-06-28
| | | | | | | | https://phabricator.endlessm.com/T12150
| * Make sure target directory exists before compiling credits.gresourceJuan Pablo Ugarte2016-06-28
| | | | | | | | https://phabricator.endlessm.com/T12150
| * Added -I$(builddir)/endless to AM_CPPFLAGS for out of tree builds to workJuan Pablo Ugarte2016-06-28
| | | | | | | | https://phabricator.endlessm.com/T12150
| * Prepend srcdir to configure invocation for out of tree builds to workJuan Pablo Ugarte2016-06-28
|/ | | | https://phabricator.endlessm.com/T12150
* New translations from TransifexJenkins2016-06-27
|
* Merge pull request #4147 from endlessm/T11897Emmanuele Bassi2016-06-10
|\ | | | | coverage: Remove pointless attempt to place generated works into public domain
| * coverage: Remove pointless attempt to place generated works into public domainSam Spilsbury2016-06-02
| | | | | | | | | | | | | | | | | | The copyright in works generated by eos-coverage.m4 would works of joint authorship, so the copyright would vest in both Endless and the user of the script. Licensing our portion of the generated file as MIT would basically serve user's purpose and doesn't have any enforceability issues. https://phabricator.endlessm.com/T11897
* | Merge pull request #4146 from endlessm/T10602P. F. Chimento2016-06-03
|\ \ | |/ |/| | | | | coverage: Ignore file deletion failures https://phabricator.endlessm.com/T10602
| * coverage: Ignore file deletion failuresSam Spilsbury2016-06-02
|/ | | | https://phabricator.endlessm.com/T10602
* Merge pull request #4145 from endlessm/T11778P. F. Chimento2016-05-31
|\ | | | | | | | | topbar_nav_button: use standard upstream icons https://phabricator.endlessm.com/T11778
| * topbar_nav_button: use standard upstream iconsCosimo Cecchi2016-05-27
|/ | | | | | | | Instead of our own, which are nearly identical. Also, remove our RTL special case for icon names, since recent GTK does it for us automatically. https://phabricator.endlessm.com/T11778
* Merge pull request #4144 from endlessm/T11336P. F. Chimento2016-05-09
|\ | | | | | | | | customcontainer: keep children in order they were added https://phabricator.endlessm.com/T11336
| * customcontainer: keep children in order they were addedMatt Watson2016-05-06
|/ | | | | We were flipping the order, not sure why we did this. https://phabricator.endlessm.com/T11336
* Merge pull request #4143 from endlessm/T11395Mario Sanchez Prada2016-05-04
|\ | | | | Connect to window-object-cleared earlier
| * Connect to window-object-cleared earlierPhilip Chimento2016-05-03
|/ | | | | | | | | | | | | | | | If we connect to window-object-cleared only after we own the DBus name, then we risk a race condition where a page is created and its window object is already cleared by the time we connect to the signal, meaning that the signal never fires for that page. However, that on its own would introduce a different race condition, where the JS code would call gettext() before the DBus connection is obtained. Since JSCore doesn't allow you to create JS functions that complete asynchronously, we do the simple but not-very-good thing: if gettext() or ngettext() are called before there is a DBus connection, we spin the main loop until the connection is acquired. https://phabricator.endlessm.com/T11395
* Revert "Add fallback symlink for Chinese"Roddy Shuler2016-05-03
| | | | This reverts commit d0a3eb37b8903187299eb233c580bd7e0deda5aa.
* Merge pull request #4140 from endlessm/T11388Cosimo Cecchi2016-04-27
|\ | | | | Remove parallel version of WebHelper compatible with WebKit2-3.0
| * Remove parallel version of WebHelper compatible with WebKit2-3.0Mario Sanchez Prada2016-04-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We are no longer shipping the Webkit2-3.0 API on Endless and Virtual School has already been migrated to the newer WebKit2-4.0 API after having fixed all the regressions there and so it makes no sense to keep this any longer. Besides, after the WebKitGTK+ upgrade from 2.4.9 to 2.4.11 debian does no longer ship the WebKit2GTK+-3.0 packages (and there's no point on us bringing them back) so, actually, we can not keep this anyway, so let's remove it. This commit basically reverts 8c837e660853abd03c97a98815f73146eb57c010, but considering all the changes integrated ever since (not a "clean" revert). https://phabricator.endlessm.com/T11388
* | Merge pull request #4137 from endlessm/T11000Roddy Shuler2016-04-22
|\ \ | | | | | | T11000
| * | configure: require gtk 3.20Matt Watson2016-04-22
| | | | | | | | | | | | https://phabricator.endlessm.com/T11000
| * | css: remove old scrollbar theme workaroundMatt Watson2016-04-21
| | | | | | | | | | | | | | | Not any min scrollbar size is removed in our theme reset. https://phabricator.endlessm.com/T11000
| * | window: bump font scaling defaults by 4/3Matt Watson2016-04-21
| | | | | | | | | | | | | | | | | | Pixel font-sizes in css now show up 75% smaller. These properties are gints so we will round when necessary. https://phabricator.endlessm.com/T11000
| * | css: fix topbar search caret colorMatt Watson2016-04-21
| | | | | | | | | | | | https://phabricator.endlessm.com/T11000
| * | css: bump pixel font sizesMatt Watson2016-04-21
| | | | | | | | | | | | | | | | | | | | | Pixel font sizes were incorrectly getting rendered as points previously. This is now fixed, but means our pixel font will render 75% smaller. https://phabricator.endlessm.com/T11000
| * | css: don't reset window decorationMatt Watson2016-04-21
| | | | | | | | | | | | | | | | | | | | | | | | Window blur and resize corners and a whole lot have moved to the window decoration theme in 3.20. It would be a tricky job to replicate this inside of eos-sdk's theme so for now let's just leave the decorations the same as Adwaita. https://phabricator.endlessm.com/T11000
| * | css: fix context menu stylingMatt Watson2016-04-21
| | | | | | | | | | | | https://phabricator.endlessm.com/T11000
| * | css: fix topbar search image placementMatt Watson2016-04-21
| | | | | | | | | | | | | | | | | | Search image is now a node, and it won't place itself well without some css changes. https://phabricator.endlessm.com/T11000
| * | css: s/insensitve/disabled/Matt Watson2016-04-21
| | | | | | | | | | | | | | | Another minor change and fixed warning. https://phabricator.endlessm.com/T11000
| * | css: s/icon-shadow/-gtk-icon-shadow/Matt Watson2016-04-21
| | | | | | | | | | | | | | | New name for the property. Fixes a warning. https://phabricator.endlessm.com/T11000
| * | css: fix selectorsMatt Watson2016-04-21
| | | | | | | | | | | | | | | | | | The way to specify gtk widgets has changed with the switch to css nodes https://phabricator.endlessm.com/T11000
| * | window: set css nameMatt Watson2016-04-21
|/ / | | | | | | https://phabricator.endlessm.com/T11000
* / topbar: redo credit button show/hideMatt Watson2016-04-21
|/ | | | | | | | | | We had a stack and listened to enter leave to trigger a transition, but that broke when GtkStack ditched its main GdkWindow with the upgrade to 3.20. Switch to doing this all with a regular button in css, cause that's simpler https://phabricator.endlessm.com/T11000
* Merge pull request #4138 from endlessm/T11370Cosimo Cecchi2016-04-20
|\ | | | | window: fix font scaling