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: shotgunsoftware/tk-multi-workfiles2
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: nfa-vfxim/tk-multi-workfiles2
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Can’t automatically merge. Don’t worry, you can still create the pull request.
  • 13 commits
  • 5 files changed
  • 4 contributors

Commits on Aug 15, 2021

  1. Copy the full SHA
    e69ceaf View commit details

Commits on Oct 12, 2021

  1. Copy the full SHA
    a5028c4 View commit details

Commits on Dec 7, 2021

  1. Copy the full SHA
    1bc30ba View commit details

Commits on Feb 1, 2024

  1. Fix random crash bug

    mervinvb committed Feb 1, 2024
    Copy the full SHA
    bee375c View commit details
  2. Merge pull request #2 from nfa-vfxim/bugfix/issue-1/nuke-crashes-whil…

    …e-saving-a-file-on-specific-seemingly-random-shots
    MaximumFX authored Feb 1, 2024
    Copy the full SHA
    2b05ea0 View commit details

Commits on Apr 10, 2024

  1. Add update readme workflow

    MaximumFX authored Apr 10, 2024
    Copy the full SHA
    111bd8e View commit details
  2. Merge pull request #3 from nfa-vfxim/dev

    Add update readme workflow
    mervinvb authored Apr 10, 2024
    Copy the full SHA
    2c4401c View commit details
  3. Copy the full SHA
    7a24076 View commit details
  4. Merge pull request #4 from nfa-vfxim/dev

    Upgrade tk-readme-generator version
    MaximumFX authored Apr 10, 2024
    Copy the full SHA
    bf38e0c View commit details
  5. Copy the full SHA
    31254c4 View commit details
  6. Merge pull request #5 from nfa-vfxim/dev

    Upgrade tk-readme-generator version
    MaximumFX authored Apr 10, 2024
    Copy the full SHA
    db494b8 View commit details
  7. Update README.md

    actions-user committed Apr 10, 2024
    Copy the full SHA
    b42eef4 View commit details
  8. Merge pull request #6 from nfa-vfxim/dev

    Update README.md
    MaximumFX authored Apr 10, 2024
    Copy the full SHA
    a1fdf7f View commit details
Showing with 116 additions and 29 deletions.
  1. +21 −0 .github/workflows/update-readme.yml
  2. +3 −0 .gitignore
  3. +81 −21 README.md
  4. +10 −7 hooks/scene_operation_tk-nuke.py
  5. +1 −1 info.yml
21 changes: 21 additions & 0 deletions .github/workflows/update-readme.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Update README.md

on:
workflow_dispatch:
push:
branches:
- dev
paths:
- "info.yml"

permissions:
contents: write

jobs:
run:
name: Generating README.md
runs-on: ubuntu-latest
steps:
- uses: MaximumFX/tk-readme-generator@v1.0.2
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -34,3 +34,6 @@ nosetests.xml
.mr.developer.cfg
.project
.pydevproject

# Project settings
.idea/
Loading