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

Fix zone retrieval #34

Closed
wants to merge 29 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
bd1bc3b
Update
aanon4 Apr 21, 2023
fff9980
Initial pass at reorganization
hickey Jun 10, 2023
36f653c
Added beginnings of package building code
hickey Jun 11, 2023
2b89fec
Now making directories during package build
hickey Jun 11, 2023
2b0837d
Minor fixes to populate-meshchat-api-fs.sh
hickey Jun 11, 2023
2942a10
Fixed testing tag for version number
hickey Jun 11, 2023
ca71a11
Updated GitHub workflow
hickey Jun 11, 2023
bc6c2d9
Fixed incorrect param order for tar in ipk-build.sh
hickey Jun 11, 2023
f08963d
Storing generated package as an artifact
hickey Jun 11, 2023
b35c623
Refactored build API workflow
hickey Jun 11, 2023
f043be9
Added build MeshChat package job
hickey Jun 11, 2023
1b8a0ac
Removed build file as no longer needed
hickey Jun 11, 2023
326a81c
Updating version info in meshchatconfig.lua
hickey Jun 11, 2023
05fadd6
More reorganization of files
hickey Jun 12, 2023
68e0ed6
Fixed installation of cgi-bin after reorg
hickey Jun 12, 2023
356b395
Fixed the installation of web files
hickey Jun 12, 2023
f0ed580
Added branch name and commit ref to testing builds
hickey Jun 19, 2023
dd37426
Moved MeshChat source to top level
hickey Jul 17, 2023
fb14b17
Merge pull request #1 from hickey/reorg
hickey Sep 21, 2023
7d7f87a
feat: Set send channel when channel filter changed
hickey Jun 13, 2023
47702e9
docs: Updated README with history of MeshChat
hickey Sep 21, 2023
929b9d6
chore: Added Bug Report issue template
hickey Sep 21, 2023
cd9f90f
chore: Added feature request issue template
hickey Sep 21, 2023
4e36cc0
build: Updates to better name packages
hickey Sep 29, 2023
e384052
Update Bug Report.yml
hickey Nov 4, 2023
8453c6b
fix: set epoch in send_message API even if not specified
hickey Dec 9, 2023
0d884e4
feat: add message class abstracting message handling (#23)
hickey Dec 22, 2023
a7060ed
add more fields to bug issue template
hickey Jan 3, 2024
dfdc746
Fix zone retrieval
aanon4 Feb 2, 2024
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
Moved MeshChat source to top level
Signed-off-by: Gerard Hickey <[email protected]>
  • Loading branch information
hickey committed Jul 17, 2023
commit dd374260d2c83325747d2f6cc49b49e4ae96e943
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion package/populate-meshchat-api-fs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ sed -i "s%\$GITHUB_SERVER_URL%$GITHUB_SERVER_URL%" $IPK_DIR/CONTROL/control
sed -i "s%\$GITHUB_REPOSITORY%$GITHUB_REPOSITORY%" $IPK_DIR/CONTROL/control

# Populate the filesystem image for the package
install -D api/meshchat $IPK_DIR/www/cgi-bin/meshchat
install -D api/meshchat -m 755 $IPK_DIR/www/cgi-bin/meshchat

8 changes: 5 additions & 3 deletions package/populate-meshchat-fs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ sed -i "s%\$GITHUB_REPOSITORY%$GITHUB_REPOSITORY%" $IPK_DIR/CONTROL/control
install -d $IPK_DIR/www/meshchat
install www/* $IPK_DIR/www/meshchat
install -d $IPK_DIR/www/cgi-bin
install www/cgi-bin/* $IPK_DIR/www/cgi-bin
install -D support/meshchatsync-init.d $IPK_DIR/etc/init.d/meshchatsync
install -D support/meshchatsync $IPK_DIR/usr/local/bin/meshchatsync
install -m 755 meshchat $IPK_DIR/www/cgi-bin
install -m 644 meshchatlib.lua $IPK_DIR/www/cgi-bin
install -m 644 meshchatconfig.lua $IPK_DIR/www/cgi-bin
install -D support/meshchatsync-init.d -m 755 $IPK_DIR/etc/init.d/meshchatsync
install -D support/meshchatsync -m 755 $IPK_DIR/usr/local/bin/meshchatsync