From 97b914b9cd58c7ac58db54ef1d6d4904c0a5bc04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9ry=20Debongnie?= Date: Sat, 26 Oct 2019 09:17:14 +0200 Subject: [PATCH] [IMP] playground: log url for current owl commit closes #405 --- tools/playground/app.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/playground/app.js b/tools/playground/app.js index 2333aa4f..1e48fed6 100644 --- a/tools/playground/app.js +++ b/tools/playground/app.js @@ -429,6 +429,8 @@ App.components = { TabbedEditor }; //------------------------------------------------------------------------------ async function start() { document.title = `${document.title} (v${owl.__info__.version})`; + const commit = `https://github.com/odoo/owl/commit/${owl.__info__.hash}`; + console.info(`This application is using Owl built with the following commit:`, commit); const [templates] = await Promise.all([ owl.utils.loadFile("templates.xml"), owl.utils.whenReady()