Skip to content

Commit

Permalink
Merge pull request #16 from antharuu/alpha-9
Browse files Browse the repository at this point in the history
Alpha 9
  • Loading branch information
antharuu authored Oct 25, 2023
2 parents 7e44809 + f7ed2df commit 5844ec0
Show file tree
Hide file tree
Showing 64 changed files with 12,164 additions and 1,866 deletions.
7 changes: 6 additions & 1 deletion .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ module.exports = {
"simple-import-sort/exports": "error",
"simple-import-sort/imports": ["error", {
"groups": [["^\\u0000"], ["^@?\\w"], ["^/"], ["/stores/"], ["/utils/"], ["/routes/"], ["/types/"], ["/layouts/"], ["/components/"], ["^\\.\\.(?!/?$)", "^\\.\\./?$"], ["^\\./(?=.*/)(?!/?$)", "^\\.(?!/?$)", "^\\./?$"], ["^.+\\.s?css$"],]
}]
}],
"camelcase": ["error", {"properties": "never"}],
"no-unused-vars": ["error", { "argsIgnorePattern": "^_" }],
"vue/no-unused-components": ["error", { "ignoreWhenBindingPresent": true }],
"vue/no-unused-vars": ["error", { "ignorePattern": "^_" }],
"vue/no-v-html": ["error"],
}
}
19 changes: 19 additions & 0 deletions .github/workflows/qodana_code_quality.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Qodana
on:
workflow_dispatch:
pull_request:
push:
branches:
- alpha-8

jobs:
qodana:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: 'Qodana Scan'
uses: JetBrains/qodana-action@v2023.2
env:
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}
18 changes: 18 additions & 0 deletions .release-it.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"git": {
"tagName": "v${version}",
"requireCleanWorkingDir": false,
"commitMessage": "chore: release v${version}",
"tag": true,
"push": true,
"commit": true,
"publish": false
},
"npm": {
"publish": false
},
"github": {
"release": true
},
"prompt": false
}
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## Alpha 9

✨ Add the scene section.

✨ Scene creating and editing.

✨ Timeline bases, and actions adding _(raw code only for now)_.

🔧 Rework all the translation system.

📦 Dependencies have been updated.

🚀 Now using better semantic versioning and release-it.

## Alpha 8

✨ Can now launch the game and Ren'Py directly.
Expand All @@ -14,7 +28,6 @@

🎨 New theme selector.


## Alpha 7

🎉 First public release.
Expand Down
Loading

0 comments on commit 5844ec0

Please sign in to comment.