-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #60 from oetiker/qx6
Make CallBackery work with qooxdoo 6 and the new compiler
- Loading branch information
Showing
19 changed files
with
262 additions
and
160 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
0.19.0 2019-10-17 16:51:43 +0200 Tobias Oetiker <[email protected]> | ||
|
||
- make callbackery work with qx6 and the new node based qooxdoo compiler | ||
get the gooddies by running the generator to creat a new app. | ||
|
||
0.18.2 2019-09-10 15:14:45 +0200 Tobias Oetiker <[email protected]> | ||
|
||
- added french translation | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 4 additions & 3 deletions
7
lib/Mojolicious/Command/Author/generate/callbackery_app/PERL_MODULES
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
[email protected] | ||
Mojo::[email protected] | ||
PPI | ||
% my $p = shift; | ||
% use CallBackery; | ||
CallBackery@<%= $CallBackery::VERSION %> | ||
Mojo::SQLite |
5 changes: 1 addition & 4 deletions
5
lib/Mojolicious/Command/Author/generate/callbackery_app/bin/source-mode.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,5 @@ | ||
% my $p = shift; | ||
#!/bin/sh | ||
export QX_SRC_MODE=1 | ||
# relative to the application home | ||
export QX_SRC_PATH=frontend/source | ||
export MOJO_MODE=development | ||
export MOJO_LOG_LEVEL=debug | ||
exec ./<%= $p->{name} %>.pl prefork --listen 'http://*:<%= int(rand()*5000+3024) %>' | ||
exec `dirname $0`/<%= $p->{name} %>.pl prefork --listen 'http://*:<%= int(rand()*5000+3024) %>' |
Oops, something went wrong.