Skip to content

Commit

Permalink
Merge release-alpha24
Browse files Browse the repository at this point in the history
Release 2.0.0-alpha.24
  • Loading branch information
axelpale authored Jan 17, 2025
2 parents 62a5644 + 3b49898 commit d65bd79
Show file tree
Hide file tree
Showing 296 changed files with 5,468 additions and 3,182 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/tapspace-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Tapspace.js CI
run-name: tapspace test run by ${{ github.actor }}

on: [push]

jobs:
tapspace-headless:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [20, 22]

steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# Bundle builds
/dist/*
!/dist/.gitkeep
/test/dist/*
!/test/dist/.gitkeep

# Logs
logs
Expand Down
6 changes: 4 additions & 2 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
.travis.yml
/.github

/dist/.gitkeep
/docs
/test
/features

.DS_Store
.editorconfig
.gitignore

.DS_Store
package-lock.json
15 changes: 0 additions & 15 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
MIT License
Copyright (c) 2023 Akseli Palén
Copyright (c) 2025 Akseli Palén

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# ![tapspace.js](docs/tapspace-banner-2023.png?raw=true)

[![NPM Version](https://img.shields.io/npm/v/tapspace/alpha?color=7FCD0F)](https://www.npmjs.com/package/tapspace)
[![Build Status](https://img.shields.io/travis/com/taataa/tapspace)](https://travis-ci.com/github/taataa/tapspace)
[![Build Status](https://img.shields.io/github/actions/workflow/status/taataa/tapspace/tapspace-ci.yml)](https://github.com/taataa/tapspace/actions/workflows/tapspace-ci.yml)

We believe **zoomable user interfaces** to be the best way for humans to explore and manipulate two-dimensional content. Therefore we built **Tapspace.js**, a **JavaScript** library dedicated for building such **dynamic front-ends**. It provides an **infinite, scalable, and rotatable space** for you to represent **HTML content** and for your users to play with. Tapspace.js uses **pure CSS3 and DOM** instead of Canvas or WebGL and therefore is able to handle any HTML content you throw at it, including iframes and SVG, and also Canvas- and WebGL-rendered elements. And of course, we provide a clean, documented API for you to **build your best**.

Expand Down
Loading

0 comments on commit d65bd79

Please sign in to comment.