Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Simple web UI, Automatic builds and stuff #8

Open
wants to merge 46 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
a1127ee
Adding full stack VueJS UI for structured development. Created a dumm…
mrinc Aug 15, 2021
7e76b7a
Added graphing to webUI. cleanups and added more log data to work with
mrinc Aug 15, 2021
d55533e
Added theming
mrinc Aug 15, 2021
75df55f
Finished themes
mrinc Aug 18, 2021
52989cb
Starting github ci
mrinc Aug 18, 2021
62d24a5
Updating ci build for a single node version, and chaining cmds
mrinc Aug 18, 2021
b5ac646
Automating build for node-red ui. Cleanups and build updates.
mrinc Aug 18, 2021
f8f3301
Node-red specific release
mrinc Aug 18, 2021
978f6fb
Fixing case for RED from Red
mrinc Aug 18, 2021
9da58f5
Build updates for path
mrinc Aug 18, 2021
76510c6
Single release, multiple files
mrinc Aug 18, 2021
edab552
Updating readme to include that the user must cd into the project dir…
mrinc Aug 18, 2021
d6bbbda
Package updates for build bugs
mrinc Aug 18, 2021
beb97e5
Readme fix
mrinc Aug 18, 2021
620c266
Adding easier bypass url method
mrinc Aug 19, 2021
82125f0
Build fixes with replace causing issues, nodejs touchups
mrinc Aug 19, 2021
6df33b5
fixing some path issues and js build issues
mrinc Aug 19, 2021
35235a0
Fixing WS issues, cleanup. Storing found server in cookie for quicker…
mrinc Aug 19, 2021
36b214d
bugfixes and UI changes for aaron
mrinc Aug 28, 2021
3574f25
Adding routing engine and tools
mrinc Aug 28, 2021
963c41e
add pak for desktop
mrinc Aug 28, 2021
d074d09
licenses and authors
mrinc Aug 28, 2021
78d0820
Merge branch 'main' into feature/desktop-client
mrinc Aug 28, 2021
4f0493d
Major build improvements and desktop app with build
mrinc Aug 28, 2021
8119cc8
Added release versioning.
mrinc Aug 28, 2021
bf14e0b
release versioning updates
mrinc Aug 28, 2021
2d1fe1c
version month fixes. output var fixes
mrinc Aug 28, 2021
a85b699
missed one 's'
mrinc Aug 28, 2021
f548572
Speed improvements on initial connection. Touchups on server definiti…
mrinc Aug 29, 2021
88b196e
Added page selector
mrinc Feb 28, 2022
cf04f83
NPM Update. Added pages file. Changed default nodered-web-ui content …
mrinc Feb 28, 2022
f469ea4
Merge remote-tracking branch 'superhouse/main'
mrinc Feb 28, 2022
1c8e156
Using local storage instead of cookies ... since they are going away
mrinc Feb 28, 2022
2f39084
Removed cookies package. Added a safety net for weird firefox behavio…
mrinc Feb 28, 2022
a47396c
Updated versions. Initial dev-build system.
mrinc Feb 28, 2022
1018b13
Updated build proc
mrinc Feb 28, 2022
00daf99
Removing standard build for now from dev build
mrinc Feb 28, 2022
3afc708
Refactored the UI
MakerDockio Feb 28, 2022
503d458
Merge branch 'new_ui_updates'
mrinc Mar 3, 2022
95868f5
Adding credits ref
mrinc Mar 3, 2022
883bfb7
Adding ability for dummy server to relay TO MQTT as well for testing
mrinc Mar 3, 2022
510b7bc
Added missing async...
mrinc Mar 3, 2022
487e224
Build changes in prep for multi-plat-build. Dev build can build deskt…
mrinc Mar 3, 2022
c8da66a
Merged feature/CIDevelopmentForMultiPlatformBuilds
mrinc Mar 27, 2022
341d13e
author change
mrinc Mar 27, 2022
e232877
added releases URL to readme
mrinc Mar 27, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
version month fixes. output var fixes
  • Loading branch information
mrinc committed Aug 28, 2021
commit 2d1fe1c2499dc7551b5ef15b662c288ff31e22dd
5 changes: 5 additions & 0 deletions .github/workflows/client-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ jobs:
matrix:
node-version: [14.x]

outputs:
RELVERSION: ${{ steps.build-and-release.outputs.RELVERSION }}

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
Expand All @@ -24,6 +27,8 @@ jobs:
- name: Run Release
id: build-and-release
run: bash ./Clients/build/release.sh

- run: echo ${{ steps.build-and-release.outputs.RELVERSION }}

- name: Post GitHub Release
uses: "marvinpinto/action-automatic-releases@latest"
Expand Down
2 changes: 1 addition & 1 deletion Clients/build/now-version.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module.exports = function(version) {
let major = versionKeys[0];
let minor = versionKeys[1];
let now = new Date();
let month = `${now.getMonth()}`;
let month = `${now.getMonth()+1}`;
if (month.length == 1)
month = `0${month}`
let day = `${now.getDate()}`;
Expand Down
4 changes: 2 additions & 2 deletions Clients/build/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,5 @@ tar -czvf "$RELD/SimpleWeb-Desktop-rpm-x64-$DAV.tar.gz" ./out/make/rpm/x64/*.*;
cd $CWD;
cd ./Clients/build;
RELVERSION="$(node cli-version.js)";
echo "RELVERSION=$RELVERSION"
echo "::set-output name=RELVERSION::$RELVERSION"
echo "RELVERSION=$RELVERSION";
echo "::set-output name=RELVERSION::$RELVERSION";