Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: mokasin/apw
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: rxrc/apw
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 4 commits
  • 4 files changed
  • 1 contributor

Commits on Nov 13, 2020

  1. Publish to npm

    razor-x committed Nov 13, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    pureskillgg-bot PureSkil.gg Bot
    Copy the full SHA
    896786d View commit details
  2. 1.0.0

    razor-x committed Nov 13, 2020
    Copy the full SHA
    af69e7d View commit details

Commits on Nov 16, 2020

  1. Update .gitignore

    razor-x committed Nov 16, 2020
    Copy the full SHA
    4b57ee7 View commit details
  2. 1.0.1

    razor-x committed Nov 16, 2020
    Copy the full SHA
    2df0be1 View commit details
Showing with 184 additions and 0 deletions.
  1. +20 −0 .github/workflows/publish.yml
  2. +136 −0 .gitignore
  3. +2 −0 README.md
  4. +26 −0 package.json
20 changes: 20 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: release

on:
push:
tags:
- 'v*'

jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '14.x'
registry-url: 'https://registry.npmjs.org'
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
136 changes: 136 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,136 @@
# Parts of this file were adapted from
# GitHub’s collection of .gitignore file templates
# which are Copyright (c) 2020 GitHub, Inc.
# and released under the MIT License.
# For more details, visit the project page:
# https://github.com/github/gitignore

# Build directories
package

# Tern
.tern-project
.tern-port

# npm config
.npmrc

# Yarn lockfile (only npm supported)
yarn.lock

# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# Snowpack dependency directory (https://snowpack.dev/)
web_modules/

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env
.env.test

# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache

# Next.js build output
.next
out

# Nuxt.js build / generate output
.nuxt
dist

# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and not Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output
.vuepress/dist

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

# TernJS port file
.tern-port

# Stores VSCode versions used for testing VSCode extensions
.vscode-test

# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
_Forked from [mokasin/apw](https://github.com/mokasin/apw)_

Be aware that…
-----------
…this project is not developed any longer, nor do I use awesome. It still
26 changes: 26 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"name": "@rxrc/apw",
"version": "1.0.1",
"description": "Awesome Pulseaudio Widget",
"homepage": "https://github.com/rxrc/apw",
"bugs": "https://github.com/rxrc/apw/issues",
"repository": "rxrc/apw",
"author": {
"name": "mokasin",
"email": "mokasin@users.noreply.github.com"
},
"contributors": [
{
"name": "Evan Sosenko",
"email": "razorx@evansosenko.com"
}
],
"files": [
"pulseaudio.lua",
"widget.lua"
],
"scripts": {
"test": "true",
"postversion": "git push && git push --tags"
}
}