mirror of
https://github.com/sebastiandine/Card-Collection-Manager-2.git
synced 2026-08-28 23:01:09 +00:00
Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1346db06a6 | |||
| 01e9436a42 | |||
| 2f967a1626 | |||
| f03167a531 | |||
| 7be5f51376 | |||
| 0ce9b09979 | |||
| 9793a13646 | |||
| d6dd72bfb3 |
@@ -83,7 +83,7 @@ jobs:
|
||||
asset_name: card-collection-manager-2_${{ needs.create-release.outputs.version }}_x64_en-US.msi
|
||||
asset_content_type: application/x-msi
|
||||
|
||||
- name: upload release asset (Linux/Debian)
|
||||
- name: upload release asset (Linux/.deb)
|
||||
if: matrix.platform == 'ubuntu-20.04'
|
||||
uses: actions/upload-release-asset@v1
|
||||
env:
|
||||
@@ -94,7 +94,7 @@ jobs:
|
||||
asset_name: card-collection-manager-2_${{ needs.create-release.outputs.version }}_amd64.deb
|
||||
asset_content_type: application/x-debian-package
|
||||
|
||||
- name: upload release asset (Linux/AppImage)
|
||||
- name: upload release asset (Linux/.AppImage)
|
||||
if: matrix.platform == 'ubuntu-20.04'
|
||||
uses: actions/upload-release-asset@v1
|
||||
env:
|
||||
@@ -105,13 +105,25 @@ jobs:
|
||||
asset_name: card-collection-manager-2_${{ needs.create-release.outputs.version }}_amd64.AppImage
|
||||
asset_content_type: application/x-executable
|
||||
|
||||
- name: upload release asset (MacOS)
|
||||
- name: upload release asset (MacOS/.dmg)
|
||||
if: matrix.platform == 'macos-latest'
|
||||
uses: actions/upload-release-asset@v1
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
upload_url: ${{ needs.create-release.outputs.release_upload_url }}
|
||||
asset_path: card-collection-manager-2/src-tauri/target/release/bundle/dmg/card-collection-manager-2_${{ needs.create-release.outputs.version }}_x64.dmg
|
||||
asset_name: card-collection-manager-2_${{ needs.create-release.outputs.version }}_x64.dmg
|
||||
asset_path: card-collection-manager-2/src-tauri/target/release/bundle/dmg/card-collection-manager-2_${{ needs.create-release.outputs.version }}_aarch64.dmg
|
||||
asset_name: card-collection-manager-2_${{ needs.create-release.outputs.version }}_aarch64.dmg
|
||||
asset_content_type: application/x-apple-diskimage
|
||||
|
||||
#- name: upload release asset (MacOS/.app)
|
||||
# if: matrix.platform == 'macos-latest'
|
||||
# uses: actions/upload-release-asset@v1
|
||||
# env:
|
||||
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
# with:
|
||||
# upload_url: ${{ needs.create-release.outputs.release_upload_url }}
|
||||
# asset_path: card-collection-manager-2/src-tauri/target/release/bundle/macos/card-collection-manager-2.app
|
||||
# asset_name: card-collection-manager-2_${{ needs.create-release.outputs.version }}.app
|
||||
# asset_content_type: application/x-mach-binary
|
||||
|
||||
|
||||
@@ -1,4 +1,11 @@
|
||||
# Card Collection Manager 2
|
||||
|
||||
[](https://github.com/sebastiandine/Card-Collection-Manager-3)
|
||||
|
||||
> [!WARNING]
|
||||
> This project (**CCM2**) is deprecated and no longer actively developed.
|
||||
> Development continues in **CCM3**: https://github.com/sebastiandine/Card-Collection-Manager-3
|
||||
|
||||

|
||||

|
||||
|
||||
@@ -19,6 +26,16 @@ After performing these steps, the next time you open CCM2, you will see your col
|
||||
|
||||
|
||||
## How to build/ contribute
|
||||
|
||||
### Creating a new version
|
||||
To create a new version that is properly picked up by the pipeline to create a new release, adjust the version in the following files:
|
||||
```
|
||||
version
|
||||
card-collection-manager-2/package.json
|
||||
card-collection-manager-2/src-tauri/tauri.conf.json
|
||||
card-collection-manager-2/src-tauri/Cargo.toml
|
||||
```
|
||||
|
||||
### Contribute
|
||||
The project includes configuration for [VSCode development containers](https://code.visualstudio.com/docs/remote/containers) which should be the preffered environment to develop new features of the app. The container automatically sets up a whole Tauri development environment including Typescript & Rust plugins for VSCode.
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "card-collection-manager-2",
|
||||
"private": true,
|
||||
"version": "1.0.2",
|
||||
"version": "1.0.4",
|
||||
"scripts": {
|
||||
"dev": "next dev -p 1420",
|
||||
"build": "next build && next export -o dist",
|
||||
|
||||
+1
-1
@@ -203,7 +203,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "card-collection-manager-2"
|
||||
version = "1.0.0"
|
||||
version = "1.0.3"
|
||||
dependencies = [
|
||||
"base64",
|
||||
"image",
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
[package]
|
||||
name = "card-collection-manager-2"
|
||||
version = "1.0.2"
|
||||
version = "1.0.4"
|
||||
description = "A Tauri App"
|
||||
authors = ["you"]
|
||||
authors = ["Sebastian Dine"]
|
||||
license = ""
|
||||
repository = ""
|
||||
edition = "2021"
|
||||
|
||||
@@ -14,7 +14,12 @@ pub fn format_text_for_fs(text: &String) -> String {
|
||||
.replace(":", "-")
|
||||
.replace("&", "And")
|
||||
.replace("|", "Or")
|
||||
.replace("á", "a")
|
||||
.replace("é", "e")
|
||||
.replace("í", "i")
|
||||
.replace("ó", "o")
|
||||
.replace("ú", "u")
|
||||
.replace("û", "u")
|
||||
}
|
||||
|
||||
/// Parse an index from the end of a filename. This function supports indices with
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
},
|
||||
"package": {
|
||||
"productName": "card-collection-manager-2",
|
||||
"version": "1.0.2"
|
||||
"version": "1.0.4"
|
||||
},
|
||||
"tauri": {
|
||||
"allowlist": {
|
||||
|
||||
Reference in New Issue
Block a user