Skip to content

Commit

Permalink
switch to tangible and adapted to sunrise colors and font
Browse files Browse the repository at this point in the history
  • Loading branch information
oetiker committed Jun 10, 2022
1 parent 7bd6787 commit 2c5a9ff
Show file tree
Hide file tree
Showing 25 changed files with 10,680 additions and 5,864 deletions.
5 changes: 5 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
0.9.0 2022-06-10 13:56:43 +0200 Tobias Oetiker <tobi@oetiker.ch>

- switch to tangible theme
-adapt tangible for new sunrise corporate colors and font

0.8.4 2021-10-27 10:56:53 +0200 Tobias Oetiker <tobi@oetiker.ch>

- timeout 300s
Expand Down
2 changes: 1 addition & 1 deletion COPYRIGHT
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
extopus - the monitoring aggregator
a web app to integrate results from a wide array of monitoring applications

Copyright (c) 2021-2021 Tobias Oetiker and the other people listed in the
Copyright (c) 2022-2022 Tobias Oetiker and the other people listed in the
AUTHORS file.

All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.8.4
0.9.0
51 changes: 3 additions & 48 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -60,26 +60,6 @@ else
AC_MSG_ERROR(could not find perl)
fi

ac_node_version="10"

if test -x "$NODE"; then
AC_MSG_CHECKING(make sure we have at least node ${ac_node_version})
case `$NODE --version` in
v10*)
AC_MSG_RESULT(ok v10)
;;
v12*)
AC_MSG_RESULT(ok v12)
;;
v14*)
AC_MSG_RESULT(ok v14)
;;
*)
AC_MSG_RESULT(no);
NODE=old-node
esac
fi

AM_CONDITIONAL(BUILD_QOOXDOO_APP,[test -x $NODE])

AC_PATH_PROG(OPENSSL, openssl, no)
Expand Down Expand Up @@ -151,15 +131,6 @@ else
AC_MSG_RESULT([install Prefix is fine])
fi

AC_ARG_VAR(CALLBACKERY_QX, [Alternate CallBackery/qooxdoo folder location])
if test "$CALLBACKERY_QX" = ""; then
script_path=`dirname "$0"`
script_path=`cd $script_path;pwd`
# Absolute path this script is in, thus /home/user/bin
CALLBACKERY_QX="$script_path"/thirdparty/lib/perl5/CallBackery/qooxdoo
fi
AC_SUBST(CALLBACKERY_QX)

AC_ARG_VAR(PERL5LIB, [Colon separated list of perl library directories])
AC_SUBST(PERL5LIB)

Expand All @@ -183,30 +154,14 @@ cat <<NOTES

** WARNING ***********************************************

To run the qooxdoo compiler, node v10/v12/v14 is required.
Use nvm to setup your local, up to date copy of node.
Go to https://github.com/nvm-sh/nvm for futher information
To run the qooxdoo compiler, node is required.
Use asdf to setup your local, up to date copy of node.
Go to https://github.com/asdf-vm for futher information

NOTES
fi


if test "$mod_ok" = "0"; then
cat <<NOTES

** SOME PERL MODULES ARE MISSING ******************************

If you know where perl can find the missing modules, set
the PERL5LIB environment variable accordingly. Otherwise
just proceed and the missing modules will be installed
automatically.

To force the system to download missing perl modules, you can
do a `touch PERL_MODULES` before running `$GMAKE`
NOTES

fi

cat <<NOTES

** CONFIGURE DONE **********************************************
Expand Down
5 changes: 2 additions & 3 deletions frontend/Manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,9 @@
"resource": "source/resource",
"translation": "source/translation"
},
"$schema": "https://qooxdoo.org/schema/Manifest-1-0-0.json",
"$schema": "https://qooxdoo.org/schema/Manifest-2-0-0.json",
"requires": {
"@qooxdoo/compiler": "^1.0.3",
"@qooxdoo/framework": "^6.0.2",
"@qooxdoo/framework": "^7.1.0",
"oetiker/CanvasCell": "^1.0.4",
"oetiker/QxD3": "^0.4.1"
}
Expand Down
16 changes: 8 additions & 8 deletions frontend/compile.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
},
"babelOptions": {
"targets": {
"chrome": "80",
"firefox": "74",
"edge": "18",
"safari": "13"
"chrome": "90",
"firefox": "88",
"edge": "90",
"safari": "14"
}
}
},
Expand All @@ -21,10 +21,10 @@
"outputPath": "compiled/build",
"babelOptions": {
"targets": {
"chrome": "80",
"firefox": "74",
"edge": "18",
"safari": "13"
"chrome": "90",
"firefox": "88",
"edge": "90",
"safari": "14"
}
}
}
Expand Down
Loading

0 comments on commit 2c5a9ff

Please sign in to comment.