Skip to content

Commit

Permalink
release 0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
oetiker committed Aug 29, 2023
1 parent 829e69f commit 867fce4
Show file tree
Hide file tree
Showing 10 changed files with 9,653 additions and 16,457 deletions.
4 changes: 4 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
0.12.0 2023-08-29 14:59:51 +0200 Tobias Oetiker <[email protected]>

- update to mobilde friendly callbackery 0.47.3

0.11.0 2023-03-31 16:19:57 +0200 Tobias Oetiker <[email protected]>

- reverese sort Reports
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.11.0
0.12.0
4 changes: 2 additions & 2 deletions cpanfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
requires 'CallBackery', '>= 0.45.0';
requires 'Mojolicious', '>= 9.31';
requires 'CallBackery', '>= 0.47.3';
requires 'Mojolicious', '>= 9.33';
requires 'Mojo::SQLite';
requires 'Mojolicious::Plugin::OpenAPI';
requires 'Crypt::ScryptKDF';
Expand Down
10 changes: 6 additions & 4 deletions frontend/Makefile.am
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
QX=qx
#/home/oetiker/scratch/qooxdoo/bin/build/qx

AUTOMAKE_OPTIONS=foreign

Expand All @@ -17,24 +19,24 @@ source: node_modules compiled/source/.built


source-watch: node_modules
CALLBACKERY_QX=$(CALLBACKERY_QX) $(NPX) qx compile --watch --feedback=false --erase
CALLBACKERY_QX=$(CALLBACKERY_QX) $(NPX) $(QX) compile --watch --feedback=false --erase

build: ../public/.built

clean: node_modules
$(NPX) qx clean
$(NPX) $(QX) clean

../public/.built: $(EXTRA_DIST) Makefile.in $(CBFILES)
$(MAKE) node_modules
CALLBACKERY_QX=$(CALLBACKERY_QX) $(NPX) qx compile --target=build --warn-as-error
CALLBACKERY_QX=$(CALLBACKERY_QX) $(NPX) $(QX) compile --target=build
mkdir -p ../public/$(QX_CLASS)
cp -p compiled/build/$(QX_CLASS)/*.js ../public/$(QX_CLASS)
cp -p compiled/build/index.html ../public
cp -ap compiled/build/resource ../public
touch $@

compiled/source/.built: $(EXTRA_DIST) Makefile.in $(CBFILES)
CALLBACKERY_QX=$(CALLBACKERY_QX) $(NPX) qx compile --warn-as-error
CALLBACKERY_QX=$(CALLBACKERY_QX) $(NPX) $(QX) compile --warn-as-error
touch $@

node_modules/.installed package-lock.json: package.json
Expand Down
3 changes: 2 additions & 1 deletion frontend/Manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"translation" : "source/translation"
},
"requires": {
"@qooxdoo/framework": "^7.0.0"
"@qooxdoo/framework": "^7.6.0",
"qooxdoo/deprecated.qx.io.remote": "^1.0.0"
}
}
1 change: 1 addition & 0 deletions frontend/compile.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ qx.Class.define("callbackery.compile.CompilerApi", {
let cbr = process.env.CALLBACKERY_QX;
if (cbr) {
["callbackery"].forEach(dir => {
console.log(`pushing ${cbr}/${dir}`);
config.libraries.push(cbr+"/"+dir);

});
Expand Down
Loading

0 comments on commit 867fce4

Please sign in to comment.