Skip to content

Commit 8d80e5d

Browse files
Merge pull request #14 from CosmicPredator/develop
👷 Fix CI/CD
2 parents c2301f2 + 065995f commit 8d80e5d

File tree

2 files changed

+33
-3
lines changed

2 files changed

+33
-3
lines changed

installer_scripts/chibi_setup.iss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
33

44
#define MyAppName "Chibi"
5-
#define MyAppVersion "1.0.1"
5+
#define MyAppVersion GetEnv("V_TAG")
66
#define MyAppPublisher "Cosmic Predator"
77
#define MyAppURL "https://chibi-cli.pages.dev/"
88
#define MyAppExeName "chibi.exe"
@@ -12,7 +12,7 @@
1212
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
1313
AppId={{376146BA-D0F2-4F07-A294-C309EB07121A}
1414
AppName={#MyAppName}
15-
;AppVersion={#MyAppVersion}
15+
AppVersion={#MyAppVersion}
1616
AppVerName={#MyAppName}
1717
AppPublisher={#MyAppPublisher}
1818
AppPublisherURL={#MyAppURL}
@@ -32,7 +32,7 @@ DefaultGroupName={#MyAppName}
3232
DisableProgramGroupPage=yes
3333
; Uncomment the following line to run in non administrative install mode (install for current user only.)
3434
PrivilegesRequired=lowest
35-
OutputBaseFilename=chibi_installer
35+
OutputBaseFilename=chibi_{#MyAppVersion}_installer
3636
Compression=lzma
3737
SolidCompression=yes
3838
WizardStyle=modern

installer_scripts/snapcraft.yaml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: chibi
2+
base: core24
3+
summary: A lightweight anime & manga tracker CLI app powered by AniList
4+
description: |
5+
Chibi for AniList - A lightweight anime & manga tracker CLI app powered by AniList.
6+
Features,
7+
1. Easily manage your anime and manga lists without even opening your browser.
8+
2. Lightweight and easy on your keyboard.
9+
3. Colorful and structured outputs.
10+
4. Supports most terminals and shells.
11+
5. Changes are synced directly with AniList. No local saving BS.
12+
6. Faster by design.
13+
adopt-info: my-part
14+
15+
grade: stable
16+
confinement: strict
17+
18+
parts:
19+
my-part:
20+
plugin: dump
21+
source: .
22+
source-type: local
23+
organize:
24+
"build/chibi": "usr/local/bin/chibi"
25+
26+
apps:
27+
chibi:
28+
command: usr/local/bin/chibi
29+
plugs:
30+
- network

0 commit comments

Comments
 (0)